/* ================================================
   APEX STAFFING SOLUTIONS — THEME
   ================================================ */

/* TOKENS */
:root {
  --bg: #F7F8FA;
  --bg-2: #FFFFFF;
  --bg-3: #EEF0F5;
  --navy: #0F1F3D;
  --navy-mid: #1A3260;
  --gold: #E8A020;
  --gold-light: #F4C05A;
  --gold-glow: rgba(232,160,32,0.08);
  --text: #1A202C;
  --text-mid: #4A5568;
  --text-dim: #718096;
  --border: #E2E8F0;
  --border-dark: rgba(15,31,61,0.12);
  --success: #2D9C5A;
  --white: #FFFFFF;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--navy-mid); border-radius: 3px; }

/* ================================================
   NAVIGATION
   ================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 0 2rem;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-logo-icon {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--navy);
  font-weight: 900;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 0.45rem 1rem;
  border-radius: 4px;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* ================================================
   HERO
   ================================================ */
.hero {
  padding: 140px 2rem 80px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(232,160,32,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 80%, rgba(26,50,96,0.5) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,160,32,0.3), transparent);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.9;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-heading {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero-heading .gold { color: var(--gold); }
.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.2s;
  letter-spacing: 0.02em;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.85rem;
  padding: 0.7rem 1.5rem;
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,0.15);
  text-decoration: none;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat-item {}
.stat-val {
  font-family: var(--mono);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.35rem;
  letter-spacing: 0.04em;
}
.hero-left {}
.hero-right {}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.doc-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.doc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.doc-card-icon {
  width: 40px;
  height: 40px;
  background: var(--navy);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.doc-card-icon svg { width: 20px; height: 20px; }
.doc-card-body {}
.doc-card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.doc-card-meta {
  font-size: 0.72rem;
  color: var(--text-dim);
  font-family: var(--mono);
}
.doc-card-tag {
  font-size: 0.65rem;
  font-family: var(--mono);
  color: var(--gold);
  background: var(--gold-glow);
  border: 1px solid rgba(232,160,32,0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  margin-left: auto;
  align-self: flex-start;
  flex-shrink: 0;
}

/* ================================================
   SECTION SHARED
   ================================================ */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  opacity: 0.8;
  margin-bottom: 0.75rem;
}
.section-heading {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.section-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.65;
}
.section-header {
  margin-bottom: 3.5rem;
}

/* ================================================
   SECTORS
   ================================================ */
.sectors {
  padding: 5rem 2rem;
  background: var(--white);
}
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.sector-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.sector-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.sector-card:hover {
  border-color: rgba(232,160,32,0.3);
  box-shadow: 0 4px 20px rgba(15,31,61,0.06);
}
.sector-card:hover::before { transform: scaleX(1); }
.sector-icon {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.sector-icon svg { width: 22px; height: 22px; }
.sector-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.sector-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}
.sector-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  margin-top: 1rem;
}

/* ================================================
   HOW IT WORKS
   ================================================ */
.how {
  padding: 5rem 2rem;
  background: var(--bg);
}
.how-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.how-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.step-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.step-num-badge {
  width: 36px;
  height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.step-body h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
}
.step-body p {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.how-aside {
  background: var(--navy);
  border-radius: 10px;
  padding: 2rem;
  color: var(--white);
}
.how-aside h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.how-aside p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.how-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.how-metric:last-child { border-bottom: none; }
.h-m-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.h-m-val {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
}

/* ================================================
   DIFFERENTIATORS
   ================================================ */
.diff {
  padding: 5rem 2rem;
  background: var(--white);
}
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.diff-card {
  text-align: center;
  padding: 2rem 1.5rem;
}
.diff-icon {
  width: 52px;
  height: 52px;
  background: var(--gold-glow);
  border: 1px solid rgba(232,160,32,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.diff-icon svg { width: 24px; height: 24px; }
.diff-card h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.diff-card p {
  font-size: 0.8rem;
  color: var(--text-mid);
  line-height: 1.55;
}

/* ================================================
   CLOSING / CTA
   ================================================ */
.closing {
  padding: 7rem 2rem;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(232,160,32,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner { position: relative; max-width: 680px; margin: 0 auto; }
.closing-badge {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(232,160,32,0.1);
  border: 1px solid rgba(232,160,32,0.2);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.closing-heading {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
.footer-links {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
}
.footer-links a:hover { color: var(--gold); }

/* ================================================
   DOC PAGE SHARED
   ================================================ */
.doc-nav {
  background: var(--navy);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.doc-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.doc-nav-brand {
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
  text-decoration: none;
}
.doc-nav-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.75rem;
}
.doc-nav-title {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.doc-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.doc-nav a:hover { color: var(--gold); }
.doc-nav-back {
  margin-left: auto;
  font-size: 0.75rem;
  font-family: var(--mono);
  letter-spacing: 0.05em;
}
.doc-hero {
  background: var(--navy);
  padding: 4rem 2rem 3rem;
}
.doc-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.doc-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0.8;
}
.doc-title {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}
.doc-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--mono);
}
.doc-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}
.doc-content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.doc-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.75rem 0 0.75rem;
}
.doc-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.doc-content ul, .doc-content ol {
  margin: 0.75rem 0 1rem 1.25rem;
}
.doc-content li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 0.4rem;
}
.doc-content li strong { color: var(--navy); }
.doc-content blockquote {
  background: var(--bg);
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 6px 6px 0;
  font-size: 0.95rem;
  color: var(--navy);
  font-weight: 500;
}
.doc-content .callout {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 1.5rem;
  border-radius: 6px;
  margin: 1.5rem 0;
}
.doc-content .callout strong { color: var(--gold); }
.doc-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.85rem;
}
.doc-content th {
  background: var(--navy);
  color: var(--white);
  padding: 0.6rem 1rem;
  text-align: left;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}
.doc-content td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
}
.doc-content tr:nth-child(even) td { background: var(--bg); }
.doc-toc {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.doc-toc-title {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-dim);
  margin-bottom: 0.75rem;
}
.doc-toc ol {
  margin: 0;
  padding-left: 1.25rem;
}
.doc-toc li {
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
}
.doc-toc li a { color: var(--navy); text-decoration: none; font-weight: 500; }
.doc-toc li a:hover { color: var(--gold); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .sectors-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr 1fr; }
}
/* ================================================
   HERO — IMAGE BACKGROUND
   ================================================ */
.hero { padding: 0; min-height: 100vh; position: relative; overflow: hidden; display: flex; align-items: center; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,20,50,0.92) 0%, rgba(15,31,61,0.75) 50%, rgba(10,20,50,0.88) 100%);
  z-index: 1;
}
.hero-inner { position: relative; z-index: 2; width: 100%; max-width: 1200px; margin: 0 auto; padding: 140px 2rem 80px; }
.hero-content { max-width: 680px; }
.hero-tagline {
  font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.25em;
  color: var(--gold); margin-bottom: 1.25rem; opacity: 0.9;
}
.hero-headline {
  font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800;
  color: var(--white); line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.65);
  line-height: 1.75; max-width: 560px; margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.btn-outline-light {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: transparent; color: rgba(255,255,255,0.75);
  font-weight: 500; font-size: 0.9rem; padding: 0.7rem 1.5rem;
  border-radius: 4px; border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none; transition: all 0.2s; letter-spacing: 0.02em;
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.5); color: var(--white);
}
.btn-large { padding: 0.85rem 2rem; font-size: 0.95rem; }

/* ================================================
   SECTORS — CLEAN 5-CARD GRID
   ================================================ */
.sectors-clean-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.sector-clean-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 8px; padding: 1.5rem 1rem;
  text-align: center; transition: border-color 0.25s, box-shadow 0.25s;
}
.sector-clean-card:hover {
  border-color: rgba(232,160,32,0.35);
  box-shadow: 0 4px 16px rgba(15,31,61,0.07);
}
.sector-clean-icon {
  width: 48px; height: 48px; background: var(--navy);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
}
.sector-clean-icon svg { width: 22px; height: 22px; }
.sector-clean-card h3 {
  font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 0.4rem;
}
.sector-clean-card p {
  font-size: 0.78rem; color: var(--text-mid); line-height: 1.5;
}

/* ================================================
   FOR WORKERS
   ================================================ */
.workers { padding: 5rem 2rem; background: var(--white); }
.workers-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 4rem;
  align-items: center;
}
.workers-sub { margin-bottom: 2rem; }
.workers-benefits {
  list-style: none; margin: 0 0 2rem;
  display: flex; flex-direction: column; gap: 0.75rem;
}
.workers-benefits li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; color: var(--text-mid); font-weight: 500;
}
.check-icon { width: 18px; height: 18px; flex-shrink: 0; }
.workers-visual { display: flex; flex-direction: column; gap: 1rem; }
.workers-stat-card {
  background: var(--navy); border-radius: 8px; padding: 1.5rem 2rem;
  text-align: center; min-width: 140px;
}
.wstat-number {
  display: block; font-family: var(--mono); font-size: 1.5rem;
  font-weight: 700; color: var(--gold); line-height: 1;
}
.wstat-label {
  display: block; font-size: 0.72rem; color: rgba(255,255,255,0.5);
  letter-spacing: 0.1em; margin-top: 0.35rem;
}

/* ================================================
   FOR CLIENTS
   ================================================ */
.clients { padding: 5rem 2rem; background: var(--bg); }
.clients-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 5rem;
  align-items: start;
}
.clients-sub { margin-bottom: 1.5rem; }
.btn-clients-cta { display: inline-block; }
.process-steps { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; }
.process-step {
  display: flex; gap: 1.25rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.process-step:last-child { border-bottom: none; }
.process-num {
  width: 32px; height: 32px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
  color: var(--navy); flex-shrink: 0;
}
.process-body { display: flex; flex-direction: column; gap: 0.15rem; }
.process-body strong { font-size: 0.88rem; font-weight: 600; color: var(--navy); }
.process-body span { font-size: 0.78rem; color: var(--text-dim); }
.client-benefits {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem;
}
.client-benefit {
  display: flex; align-items: center; gap: 0.6rem;
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; padding: 0.75rem 1rem;
  font-size: 0.82rem; font-weight: 500; color: var(--text-mid);
}
.client-benefit svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ================================================
   WHY APEX
   ================================================ */
.why-apex { padding: 5rem 2rem; background: var(--white); }
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.why-card { text-align: center; padding: 2.5rem 1.5rem; }
.why-icon {
  width: 56px; height: 56px; background: var(--gold-glow);
  border: 1px solid rgba(232,160,32,0.25); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.75rem; }
.why-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; }

/* ================================================
   CONTACT
   ================================================ */
.contact { padding: 5rem 2rem; background: var(--bg); }
.contact-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.6fr; gap: 5rem;
  align-items: start;
}
.contact-desc { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; margin: 1rem 0 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1rem; }
.contact-detail {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: var(--text-mid); font-weight: 500;
}
.contact-detail svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group-full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.75rem; font-weight: 600; color: var(--text-mid);
  letter-spacing: 0.05em; text-transform: uppercase;
}
.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border); border-radius: 6px;
  padding: 0.65rem 0.9rem; font-size: 0.9rem;
  font-family: var(--sans); color: var(--text);
  background: var(--white); transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; }
.btn-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }

/* ================================================
   CLOSING CTA
   ================================================ */
.closing {
  padding: 6rem 2rem; background: var(--navy);
  text-align: center; position: relative; overflow: hidden;
}
.closing::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(232,160,32,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.closing-inner { position: relative; max-width: 680px; margin: 0 auto; }
.closing-eyebrow {
  font-family: var(--mono); font-size: 0.65rem;
  letter-spacing: 0.25em; color: var(--gold); opacity: 0.8; margin-bottom: 1rem;
}
.closing-heading {
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 800;
  color: var(--white); line-height: 1.2; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.closing-sub {
  font-size: 1rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 2.5rem;
}
.closing-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06); padding: 3rem 2rem; }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem;
}
.footer-left { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand { font-family: var(--mono); font-size: 0.85rem; font-weight: 700; color: var(--white); letter-spacing: 0.1em; }
.footer-desc { font-size: 0.78rem; color: rgba(255,255,255,0.4); max-width: 400px; line-height: 1.6; }
.footer-right { display: flex; flex-direction: column; align-items: flex-end; justify-content: flex-end; }
.footer-copy { font-size: 0.78rem; color: rgba(255,255,255,0.35); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1100px) {
  .sectors-clean-grid { grid-template-columns: repeat(3, 1fr); }
  .clients-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .workers-inner { grid-template-columns: 1fr; }
  .workers-visual { flex-direction: row; }
  .workers-stat-card { flex: 1; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .hero { min-height: auto; }
  .hero-inner { padding: 120px 1.5rem 60px; }
  .sectors-clean-grid { grid-template-columns: 1fr 1fr; }
  .workers-visual { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .client-benefits { grid-template-columns: 1fr; }
  .closing-actions { flex-direction: column; align-items: center; }
  .footer-inner { flex-direction: column; }
  .footer-right { align-items: flex-start; }
  .why-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
}