/* ============================================================
   Emonics Staffing — site.css  (major visual rebuild)
   Extends tokens.css + base.css — do NOT edit those files.
   ============================================================ */

/* ─── Extended design tokens ─── */
:root {
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 36px rgba(0,0,0,0.13), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.16), 0 8px 20px rgba(0,0,0,0.08);
  --navy-dark: #151e4a;
  --navy-light: #263574;
  --radius: 10px;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ─── Scroll animation base ─── */
.animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.animate.in-view {
  opacity: 1;
  transform: none;
}

/* ─── Hero entrance keyframes ─── */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroBgZoom {
  from { transform: scale(1.07); }
  to   { transform: scale(1); }
}

/* ============================================================
   WhatsApp / Button System
   ============================================================ */

.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--orange-deep);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  min-height: 46px;
  cursor: pointer;
  transition: filter 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  white-space: nowrap;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.wa-btn:hover {
  filter: brightness(0.88);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.wa-btn:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.wa-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: filter 200ms ease, box-shadow 200ms ease;
  flex-shrink: 0;
}
.wa-btn-icon:hover { filter: brightness(0.88); box-shadow: var(--shadow-md); }
.wa-btn-icon:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* Employer primary button (email) */
.btn-employer {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--navy);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  min-height: 46px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.btn-employer:hover {
  background: var(--orange-deep);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-employer:focus-visible { outline: 2px solid var(--orange); outline-offset: 3px; }

/* Ghost button — for use on dark backgrounds */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  min-height: 46px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: border-color 200ms ease, background 200ms ease;
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.10); }
.btn-ghost:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* Outline — for use on light backgrounds */
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 11px 24px;
  border-radius: var(--radius);
  min-height: 46px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 200ms ease, color 200ms ease;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

/* ============================================================
   Header
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 250ms ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 24px rgba(30,42,94,0.10);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 80px;
  gap: 20px;
}

.lockup { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }
.lockup-img { display: block; height: 64px; width: auto; max-width: 220px; }

.site-nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
}
.site-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  transition: color 150ms ease;
  white-space: nowrap;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transform: scaleX(0);
  transition: transform 200ms var(--ease-out);
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.site-nav a:hover { color: var(--orange); }
.site-nav a[aria-current="page"] { color: var(--navy); font-weight: 600; }

/* ============================================================
   HERO — full-bleed image with gradient overlay
   ============================================================ */

.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  will-change: transform;
  animation: heroBgZoom 9s ease-out both;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(30, 42, 94, 0.94) 0%,
    rgba(30, 42, 94, 0.87) 42%,
    rgba(196, 74, 42, 0.50) 100%
  );
}

.hero-body {
  position: relative;
  z-index: 2;
  padding: 100px 0 96px;
  max-width: var(--max-content);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.hero-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 20px;
  animation: heroFadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

.hero h1 {
  font-size: clamp(48px, 7.5vw, 96px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 700px;
  animation: heroFadeUp 0.75s ease both;
  animation-delay: 0.22s;
}

.hero-sub {
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.72;
  color: rgba(255,255,255,0.82);
  max-width: 560px;
  margin-bottom: 44px;
  animation: heroFadeUp 0.75s ease both;
  animation-delay: 0.38s;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  animation: heroFadeUp 0.75s ease both;
  animation-delay: 0.52s;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 15px 34px;
  border-radius: var(--radius);
  min-height: 52px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.btn-hero-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 8px 28px rgba(230,95,60,0.35);
  transform: translateY(-2px);
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
  font-size: 16px;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: var(--radius);
  min-height: 52px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.btn-hero-secondary:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.10);
  transform: translateY(-2px);
}

/* ============================================================
   Stats Band — animated count-up
   ============================================================ */

.stats-band {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 0;
}

.stat {
  text-align: center;
  padding: 0 16px;
  position: relative;
}

.stat + .stat::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  width: 1px;
  background: var(--border);
}

.stat-number {
  display: block;
  font-size: clamp(1.6rem, 3.2vw, 3rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}
.stat-number::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin: 14px auto 12px;
}

.stat-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
}

/* Text-only framing stats (no count-up) */
.stat-text {
  font-size: clamp(1.4rem, 2.6vw, 2.6rem);
  letter-spacing: -0.01em;
  font-weight: 800;
}

/* ============================================================
   Section helpers
   ============================================================ */

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 14px; }
.section-sub {
  font-size: 18px;
  color: var(--navy);
  opacity: 0.82;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-sub-light {
  font-size: 18px;
  color: rgba(255,255,255,0.72);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

.body-link {
  color: var(--orange-deep);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 150ms ease;
}
.body-link:hover { color: var(--orange); }

/* ============================================================
   Audience Fork — image panels with hover
   ============================================================ */

.audience-fork {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.fork-panel {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  cursor: pointer;
}

.fork-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 700ms var(--ease-out);
  will-change: transform;
}
.fork-panel:hover .fork-bg { transform: scale(1.06); }

.fork-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(30, 42, 94, 0.96) 0%,
    rgba(30, 42, 94, 0.65) 55%,
    rgba(30, 42, 94, 0.30) 100%
  );
  transition: background 400ms ease;
}
.fork-overlay-employer {
  background: linear-gradient(
    to top,
    rgba(21, 30, 74, 0.97) 0%,
    rgba(30, 42, 94, 0.72) 45%,
    rgba(196, 74, 42, 0.35) 100%
  );
}
.fork-panel:hover .fork-overlay {
  background: linear-gradient(
    to top,
    rgba(30, 42, 94, 0.98) 0%,
    rgba(30, 42, 94, 0.76) 55%,
    rgba(30, 42, 94, 0.44) 100%
  );
}

.fork-content {
  position: relative;
  z-index: 2;
  padding: 56px 52px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  transform: translateY(10px);
  transition: transform 400ms var(--ease-out);
}
.fork-panel:hover .fork-content { transform: none; }

.fork-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
}

.fork-panel h2 {
  color: var(--white);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0;
}

.fork-panel p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
  max-width: 400px;
  margin: 0;
}

.fork-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 6px;
  transition: gap 250ms ease;
}
.fork-panel:hover .fork-cta { gap: 14px; }

.fork-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,0.12);
  z-index: 3;
  pointer-events: none;
}

/* ============================================================
   Trust Strip — real cert badges
   ============================================================ */

.trust-strip {
  background: var(--offwhite);
  padding: 52px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-heading {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 32px;
}

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

.trust-badge {
  display: block;
  height: 76px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  transition: transform 250ms ease;
}
.trust-badge:hover {
  transform: scale(1.06);
}

/* ============================================================
   Sectors — navy bg, image cards with hover zoom
   ============================================================ */

.sectors {
  background: var(--navy);
  padding: 100px 0;
}
.sectors .section-header h2 { color: var(--white); }

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

.sector-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 300px;
  cursor: default;
}
.sector-card:focus-within { outline: 2px solid var(--orange); outline-offset: 3px; }

.sector-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 600ms var(--ease-out);
  will-change: transform;
}
.sector-card:hover .sector-bg { transform: scale(1.08); }

.sector-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(21, 30, 74, 0.97) 0%,
    rgba(30, 42, 94, 0.60) 55%,
    rgba(30, 42, 94, 0.28) 100%
  );
  transition: background 400ms ease;
}
.sector-card:hover .sector-overlay {
  background: linear-gradient(
    to top,
    rgba(21, 30, 74, 1) 0%,
    rgba(30, 42, 94, 0.78) 55%,
    rgba(30, 42, 94, 0.42) 100%
  );
}

.sector-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 26px;
  z-index: 2;
}

.sector-body h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 8px;
}

.sector-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0);
  opacity: 0;
  transform: translateY(8px);
  transition: color 350ms ease, opacity 350ms ease, transform 350ms ease;
}
.sector-card:hover .sector-desc {
  color: rgba(255,255,255,0.82);
  opacity: 1;
  transform: none;
}

.sector-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 8px;
}

/* ============================================================
   Why Emonics — offwhite bg
   ============================================================ */

.why-section {
  background: var(--offwhite);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.why-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.why-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.why-item h3 { color: var(--navy); font-size: 18px; }
.why-item p { font-size: 15px; line-height: 1.7; color: var(--muted); flex: 1; }

/* ============================================================
   Dual CTA Close — navy with coral accent
   ============================================================ */

.dual-cta {
  background: var(--navy-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.dual-cta::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -8%;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,95,60,0.14) 0%, transparent 68%);
  pointer-events: none;
}
.dual-cta::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(38,53,116,0.60) 0%, transparent 70%);
  pointer-events: none;
}

.dual-cta-heading {
  text-align: center;
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}
.dual-cta-sub {
  text-align: center;
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-col {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(6px);
  transition: background 250ms ease, border-color 250ms ease;
}
.cta-col:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.22);
}

.cta-col-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
}
.cta-col h3 { color: var(--white); font-size: 22px; font-weight: 700; }
.cta-col p { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,0.65); flex: 1; }

/* Candidate WA button on dark bg — use bright orange */
.cta-col .wa-btn { background: var(--orange); }
.cta-col .wa-btn:hover { background: var(--orange-deep); filter: none; }

/* Employer button on dark bg */
.cta-col .btn-employer-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  min-height: 46px;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  white-space: nowrap;
}
.cta-col .btn-employer-light:hover {
  background: var(--offwhite);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* ============================================================
   Page header — inner pages
   ============================================================ */

.page-header {
  position: relative;
  overflow: hidden;
  padding: 110px 0 90px;
  min-height: clamp(400px, 44vh, 520px);
  display: flex;
  align-items: center;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  will-change: transform;
}

.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    130deg,
    rgba(21, 30, 74, 0.93) 0%,
    rgba(30, 42, 94, 0.80) 50%,
    rgba(196, 74, 42, 0.40) 100%
  );
}

/* Plain gradient (no image) */
.page-header-plain {
  background: linear-gradient(160deg, var(--navy) 0%, #18234e 100%);
}

.page-header-body {
  position: relative;
  z-index: 2;
  width: 100%;
}

.page-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--orange);
  margin-bottom: 16px;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-lead {
  font-size: clamp(16px, 1.9vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,0.80);
  max-width: 580px;
}

/* ============================================================
   Process steps
   ============================================================ */

.process-section {
  background: var(--white);
  padding: 100px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.process-step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(230,95,60,0.3);
}

.process-step h3 { color: var(--navy); font-size: 19px; }
.process-step p { font-size: 15px; line-height: 1.7; color: var(--muted); }

/* ============================================================
   Capture / resume area
   ============================================================ */

.capture-section {
  background: var(--offwhite);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}

.capture-inner {
  max-width: 700px;
  margin: 0 auto;
}
.capture-inner h2 { margin-bottom: 20px; }

.capture-options {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 36px;
}

.capture-note {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 24px;
  border-left: 3px solid var(--border);
  padding-left: 16px;
}

/* ============================================================
   Prose list
   ============================================================ */

.prose-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.prose-list li {
  padding-left: 22px;
  position: relative;
  font-size: 17px;
  line-height: 1.6;
}
.prose-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
}

/* ============================================================
   Employer Solutions grid
   ============================================================ */

.solutions-section {
  background: var(--white);
  padding: 100px 0;
}

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

.solution-card {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-top: 4px solid var(--orange);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 250ms ease, transform 250ms ease;
}
.solution-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.solution-card h3 { color: var(--navy); font-size: 20px; }
.solution-card p { font-size: 15px; line-height: 1.7; color: var(--muted); flex: 1; }

/* ============================================================
   Employer final CTA
   ============================================================ */

.employer-cta {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.employer-cta::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -6%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230,95,60,0.14) 0%, transparent 68%);
  pointer-events: none;
}

.employer-cta-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.employer-cta h2 { color: var(--white); margin-bottom: 20px; }
.employer-cta > p, .employer-cta-inner > p {
  color: rgba(255,255,255,0.75);
  font-size: 18px;
  margin-bottom: 16px;
}

.contact-email-display {
  display: inline-block;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-bottom: 36px;
  transition: color 150ms ease;
}
.contact-email-display:hover { color: #f07b55; }

.cta-secondary-note {
  margin-top: 28px;
  font-size: 14px;
  color: rgba(255,255,255,0.45);
}
.cta-secondary-note a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.cta-secondary-note a:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   About story
   ============================================================ */

.about-story {
  background: var(--white);
  padding: 100px 0;
}
.about-story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.about-story-inner h2 { margin-bottom: 32px; }
.about-story-inner p {
  font-size: 18px;
  line-height: 1.82;
  margin-bottom: 22px;
  color: var(--navy);
  opacity: 0.86;
}

/* ============================================================
   Contact channels
   ============================================================ */

.contact-channels {
  background: var(--white);
  padding: 100px 0;
}

.channel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 48px auto 0;
}

.channel-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow 250ms ease;
}
.channel-card:hover { box-shadow: var(--shadow-lg); }

.channel-card-candidate { border-top: 4px solid var(--orange); }
.channel-card-employer  { border-top: 4px solid var(--navy); }

/* New contact-page channel card variants */
.contact-section { background: var(--offwhite); padding: 96px 0; }

.contact-channels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}

.channel-card-navy {
  background: var(--navy);
  border-color: transparent;
}

.channel-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.channel-icon-wa  { background: rgba(37,211,102,0.12); color: #25d366; }
.channel-icon-email { background: rgba(230,95,60,0.12); color: var(--orange); }
.channel-card-navy .channel-icon-email { background: rgba(230,95,60,0.18); color: var(--orange); }

.channel-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 4px;
}
.channel-tag-coral { color: var(--orange); }

.channel-heading {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.2;
}
.channel-card-navy .channel-heading { color: var(--white); }

.channel-body {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  flex: 1;
  margin: 0 0 8px;
}
.channel-card-navy .channel-body { color: rgba(255,255,255,0.70); }

.channel-cta {
  margin-top: 8px;
  align-self: flex-start;
}

.channel-alt {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.channel-alt a { color: var(--orange-deep); font-weight: 600; text-underline-offset: 2px; text-decoration: underline; }
.channel-alt a:hover { color: var(--orange); }

.channel-alt-light { color: rgba(255,255,255,0.50); }
.channel-alt-light a { color: rgba(255,255,255,0.80); text-decoration: underline; }
.channel-alt-light a:hover { color: var(--white); }

.channel-wa-secondary {
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  display: inline;
  height: auto;
  font-size: 13px;
}
.channel-wa-secondary:hover { filter: none; box-shadow: none; transform: none; }

/* Office block — enhanced for Phase 2 */
.office-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  max-width: 700px;
  margin: 0 auto;
  padding: 48px 52px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.office-details h2 { color: var(--navy); margin-bottom: 16px; font-size: 22px; }
.office-social-label { font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 8px; }
.office-social-link { color: var(--navy) !important; }
.office-social-link:hover { color: var(--orange) !important; }

.channel-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
}
.channel-label-navy { color: var(--navy); }

.channel-card h3 { color: var(--navy); font-size: 24px; font-weight: 700; }
.channel-card p { font-size: 15px; line-height: 1.65; color: var(--muted); flex: 1; }

/* ============================================================
   Office block
   ============================================================ */

.office-section {
  background: var(--offwhite);
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.office-block {
  max-width: 480px;
  margin: 32px auto 0;
  padding: 36px 40px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.office-block h3 { color: var(--navy); margin-bottom: 16px; font-size: 18px; }
.office-address {
  font-size: 16px;
  font-style: normal;
  line-height: 1.7;
  color: var(--navy);
  opacity: 0.82;
}

/* ============================================================
   About / group note
   ============================================================ */

.group-note {
  background: var(--offwhite);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}
.group-note-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.group-note-inner p { font-size: 15px; color: var(--muted); line-height: 1.65; }
.group-note-inner a {
  color: var(--orange-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color 150ms ease;
}
.group-note-inner a:hover { color: var(--orange); }

/* ============================================================
   Footer — navy, 4-column family pattern
   ============================================================ */

.site-footer { background: var(--navy); color: var(--white); }

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  align-items: start;
  gap: 48px;
  padding-top: 68px;
  padding-bottom: 60px;
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }
.footer-lockup { display: flex; align-items: center; gap: 12px; }
.footer-mark { height: 42px; width: auto; flex-shrink: 0; display: block; }
.footer-brand-text { display: flex; flex-direction: column; gap: 4px; }
.footer-wordmark-link { text-decoration: none; }
.footer-wordmark {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--white);
  line-height: 1;
}
.footer-tagline { font-size: 14px; color: rgba(255,255,255,0.45); }
.footer-address {
  font-size: 13px;
  font-style: normal;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-top: 16px;
}

.footer-col { display: flex; flex-direction: column; }
.footer-col-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--orange);
  margin-bottom: 18px;
}
.footer-col nav { display: flex; flex-direction: column; gap: 10px; }

.footer-link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms ease;
  display: block;
}
.footer-link:hover, .footer-link:focus-visible { color: var(--white); }

.footer-email-link {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color 150ms ease;
  display: block;
  margin-top: 12px;
}
.footer-email-link:hover { color: var(--white); }

.footer-group-link {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  transition: color 150ms ease;
  display: block;
  margin-top: 18px;
}
.footer-group-link:hover { color: rgba(255,255,255,0.65); }

.footer-social { display: flex; align-items: center; gap: 2px; margin-top: 16px; }

.footer-wa {
  background: transparent;
  width: auto;
  height: auto;
  border-radius: 0;
  color: rgba(255,255,255,0.65);
  padding: 6px;
}
.footer-wa:hover, .footer-wa:focus-visible { filter: none; color: var(--white); box-shadow: none; }

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  transition: color 150ms ease;
  padding: 6px;
  border-radius: 4px;
}
.footer-social-link:hover, .footer-social-link:focus-visible { color: var(--white); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding: 22px 0; }
.footer-bottom .container { text-align: center; }
.footer-bottom span { font-size: 13px; color: rgba(255,255,255,0.38); }

/* ============================================================
   Mobile FAB
   ============================================================ */

.mobile-fab {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200;
  display: none;
  width: 56px;
  height: 56px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.24);
}

/* ============================================================
   Global btn-employer-light (white fill, navy text, any dark bg)
   ============================================================ */

.btn-employer-light {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius);
  min-height: 46px;
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: background 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}
.btn-employer-light:hover {
  background: var(--offwhite);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn-employer-light:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }

/* ============================================================
   Channel card image-top variant (contact page)
   ============================================================ */

.channel-card-img {
  padding: 0;
  overflow: hidden;
}
.channel-img {
  width: 100%;
  height: 200px;
  background-size: cover;
  background-position: center;
  display: block;
  flex-shrink: 0;
}
.channel-content {
  padding: 30px 36px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.channel-card-navy .channel-content .channel-heading { color: var(--white); }
.channel-card-navy .channel-content .channel-body { color: rgba(255,255,255,0.82); }
.channel-card-navy .channel-content .channel-tag { color: var(--orange); }
.channel-card-navy .channel-content .channel-alt-light { color: rgba(255,255,255,0.55); }
.channel-card-navy .channel-content .channel-alt-light a { color: rgba(255,255,255,0.82); text-decoration: underline; }
.channel-card-navy .channel-content .channel-alt-light a:hover { color: var(--white); }

/* ============================================================
   Contact details band (navy, 4-col, phone + address)
   ============================================================ */

.contact-details-section {
  background: var(--navy);
  padding: 80px 0;
}
.contact-details-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.contact-detail-heading {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}
.contact-detail address {
  font-style: normal;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  line-height: 1.75;
}
.contact-detail-link {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: color 150ms ease;
  line-height: 1.6;
}
.contact-detail-link:hover { color: var(--white); }
.contact-detail-link-tel {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
}
.contact-detail-link-tel:hover { color: var(--orange); }

/* ============================================================
   Footer hotline link
   ============================================================ */

.footer-hotline-link {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  margin-top: 6px;
  transition: color 150ms ease;
}
.footer-hotline-link:hover { color: var(--orange); }

/* ============================================================
   Responsive — 900px
   ============================================================ */

@media (max-width: 900px) {
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .solution-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Responsive — 768px
   ============================================================ */

@media (max-width: 768px) {
  .lockup-img { height: 52px; }
  .site-nav { gap: 18px; }
  .site-nav a { font-size: 13px; }
  .mobile-fab { display: inline-flex; }

  .hero { min-height: 70vh; }
  .hero-body { padding: 72px 0 64px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 280px; justify-content: center; }

  .stats-band { padding: 60px 0; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 40px 0; }
  .stat + .stat::before { display: none; }

  .audience-fork { grid-template-columns: 1fr; }
  .fork-panel { min-height: 400px; }
  .fork-content { padding: 40px 28px; }

  .sectors { padding: 72px 0; }
  .sector-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .sector-card { min-height: 240px; }

  .why-section { padding: 72px 0; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 36px; }

  .dual-cta { padding: 72px 0; }
  .cta-split { grid-template-columns: 1fr; max-width: 480px; }

  .page-header { padding: 80px 0 64px; min-height: 320px; }

  .process-section { padding: 72px 0; }
  .process-steps { grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }

  .solutions-section { padding: 72px 0; }
  .solution-grid { grid-template-columns: 1fr; margin-top: 36px; }

  .employer-cta { padding: 72px 0; }

  .about-story { padding: 72px 0; }

  .contact-section { padding: 64px 0; }
  .contact-channels { grid-template-columns: 1fr; }
  .channel-grid { grid-template-columns: 1fr; margin-top: 32px; }
  .office-inner { flex-direction: column; gap: 28px; padding: 32px 28px; }
  .contact-details-section { padding: 56px 0; }
  .contact-details-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .channel-content { padding: 24px 28px 28px; }

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

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .capture-section { padding: 72px 0; }
  .capture-options { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Responsive — 480px
   ============================================================ */

@media (max-width: 480px) {
  .site-nav a { font-size: 12px; }
  .site-nav { gap: 14px; }

  .sector-grid { grid-template-columns: 1fr; }

  .fork-panel { min-height: 340px; }
  .fork-content { padding: 32px 22px; }

  .trust-badges { gap: 14px 22px; }
  .trust-badge { height: 60px; }
}

/* ============================================================
   Reduced motion
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .hero-eyebrow,
  .hero h1,
  .hero-sub,
  .hero-actions { animation: none; opacity: 1; transform: none; }
  .animate { transition: none; opacity: 1; transform: none; }
  .fork-bg,
  .sector-bg,
  .sector-desc { transition: none; }
  .why-item,
  .solution-card { transition: none; }
}
