/* ═══════════════════════════════════════════
   Assertive Recruiting — Shared Stylesheet
   ═══════════════════════════════════════════ */

:root {
  --teal:       #1E9AB0;
  --teal-text:  #0B7285; /* WCAG AA compliant on white: 5.04:1 */
  --teal-light: #5BC8D8;
  --teal-tint:  #E8F8FB;
  --near-black: #111827;
  --body-gray:  #4B5563;
  --off-white:  #F9FAFB;
  --muted:      #9CA3AF;
  --white:      #ffffff;
  --dark-footer: #0D1421;

  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  22px;
  --radius-xl:  28px;

  --shadow-card: 0 2px 6px rgba(30,154,176,0.06), 0 8px 28px rgba(17,24,39,0.08);
  --shadow-card-hover: 0 4px 14px rgba(30,154,176,0.12), 0 16px 48px rgba(17,24,39,0.11);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--off-white);
  color: var(--near-black);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s cubic-bezier(0.22,1,0.36,1), transform 0.6s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.18s; }
.d3 { transition-delay: 0.28s; }
.d4 { transition-delay: 0.38s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─── NAV ─── */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,154,176,0.10);
  box-shadow: 0 1px 12px rgba(17,24,39,0.06);
}
.nav-inner {
  padding: 0 24px 0 16px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  height: 43px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
.nav-brand-name {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  white-space: nowrap;
}
.nav-brand-name .w1 { color: var(--near-black); }
.nav-brand-name .w2 { color: var(--teal-text); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--body-gray);
  text-decoration: none;
  padding: 6px 8px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color 0.18s ease, background 0.18s ease;
}
.nav-links a:hover { color: var(--teal-text); background: var(--teal-tint); }
.nav-links a.active { color: var(--teal-text); font-weight: 600; }
.nav-links a:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: var(--radius-sm); }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--near-black);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: white;
  border-top: 1px solid rgba(30,154,176,0.1);
  padding: 16px 28px 24px;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--body-gray);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17,24,39,0.05);
  transition: color 0.18s ease;
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--teal); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease,
              transform 0.15s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.18s ease;
}
.btn:focus-visible { outline: 3px solid var(--teal-light); outline-offset: 3px; }
.btn:active { transform: translateY(1px) !important; }

.btn-sm  { font-size: 13px; padding: 8px 18px; }
.btn-md  { font-size: 15px; padding: 11px 24px; }
.btn-lg  { font-size: 16px; padding: 14px 32px; border-radius: 10px; }

.btn-solid {
  background: var(--teal-text);
  color: white;
  border-color: var(--teal-text);
  box-shadow: 0 3px 10px rgba(11,114,133,0.28);
}
.btn-solid:hover {
  background: #095f70;
  border-color: #095f70;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,154,176,0.38);
}

.btn-ghost {
  background: transparent;
  color: white;
  border-color: rgba(255,255,255,0.35);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.07);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--teal-text);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal-tint);
  transform: translateY(-1px);
}

.btn-hire {
  background: var(--teal-text);
  color: white;
  border-color: var(--teal-text);
  box-shadow: 0 3px 10px rgba(11,114,133,0.28);
}
.btn-hire:hover {
  background: #095f70;
  border-color: #095f70;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(30,154,176,0.38);
}

.btn-find {
  background: #E2E8F0;
  color: #2D3748;
  border-color: #E2E8F0;
}
.btn-find:hover {
  background: #CBD5E0;
  border-color: #CBD5E0;
  transform: translateY(-1px);
}

/* ─── SECTION UTILITIES ─── */
.section { padding: 80px 28px; }
.section-sm { padding: 56px 28px; }
.wrap { max-width: 1160px; margin: 0 auto; }
.wrap-sm { max-width: 780px; margin: 0 auto; }

.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--teal-text);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 2.8vw, 42px);
  font-weight: 800;
  line-height: 1.13;
  letter-spacing: -0.025em;
  color: var(--near-black);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 17px;
  line-height: 1.72;
  color: var(--body-gray);
  max-width: 560px;
}
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { max-width: 580px; margin-left: auto; margin-right: auto; }

/* ─── CARDS ─── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.22s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.card-bordered { border: 1px solid rgba(17,24,39,0.07); }
.card-dark {
  background: var(--near-black);
  color: white;
  box-shadow: 0 4px 24px rgba(17,24,39,0.2);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 13px;
  background: var(--teal-tint);
  border: 1px solid rgba(30,154,176,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.icon-box svg { width: 22px; height: 22px; color: var(--teal); }
.icon-box.dark {
  background: rgba(30,154,176,0.18);
  border-color: rgba(30,154,176,0.28);
}
.icon-box.dark svg { color: var(--teal-light); }

/* ─── TAGS ─── */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--teal-light);
  background: rgba(30,154,176,0.14);
  border: 1px solid rgba(30,154,176,0.24);
  padding: 4px 10px;
  border-radius: 6px;
}
.tag-light {
  color: var(--teal-text);
  background: var(--teal-tint);
  border-color: rgba(30,154,176,0.18);
}

/* ─── FORMS ─── */
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--near-black);
  margin-bottom: 6px;
}
.form-label .req { color: var(--teal-text); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--near-black);
  background: white;
  border: 1.5px solid #D1D5DB;
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(30,154,176,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 12px; color: var(--muted); margin-top: 4px; }

.upload-area {
  border: 1.5px dashed #D1D5DB;
  border-radius: var(--radius-sm);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
}
.upload-area:hover { border-color: var(--teal); background: var(--teal-tint); }
.upload-area svg { width: 28px; height: 28px; color: var(--muted); margin: 0 auto 8px; }
.upload-area p { font-size: 14px; color: var(--body-gray); }
.upload-area p span { color: var(--teal-text); font-weight: 600; }
.upload-area small { font-size: 12px; color: var(--muted); }

/* ─── PAGE HERO ─── */
.page-hero {
  background: var(--near-black);
  padding: 80px 28px 72px;
  position: relative;
  overflow: hidden;
}
.page-hero-glow {
  position: absolute;
  top: -160px; right: -160px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(30,154,176,0.2) 0%, transparent 68%);
  pointer-events: none;
}
.page-hero .eyebrow { color: var(--teal-light); margin-bottom: 14px; }
.page-hero h1 {
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: white;
  margin-bottom: 18px;
}
.page-hero h1 em { font-style: normal; color: var(--teal); }
.page-hero p {
  font-size: 18px;
  line-height: 1.72;
  color: var(--muted);
  max-width: 560px;
}

/* ─── FOOTER ─── */
footer.site-footer {
  background: var(--dark-footer);
  padding: 64px 28px 36px;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-brand-word {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.footer-brand-word .w1 { color: white; }
.footer-brand-word .w2 { color: var(--teal-light); }
.footer-desc { font-size: 13px; line-height: 1.7; color: var(--muted); }
.footer-col h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.18s ease;
}
.footer-col a:hover { color: var(--teal-light); }
.footer-col a:focus-visible { outline: 2px solid var(--teal); outline-offset: 2px; border-radius: 2px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 12px; color: var(--muted); }
.footer-bottom a { color: var(--teal); text-decoration: none; }
.footer-bottom a:hover { color: var(--teal-light); }

/* ─── STATS STRIP ─── */
.stats-strip {
  background: var(--off-white);
  padding: 32px 28px;
  border-top: 1px solid rgba(30,154,176,0.12);
  border-bottom: 1px solid rgba(30,154,176,0.12);
}
.stats-grid {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item { text-align: center; }
.stat-item .num {
  font-size: clamp(32px, 3.2vw, 46px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--near-black);
  line-height: 1;
}
.stat-item .num em { font-style: normal; color: var(--teal-text); }
.stat-item .lbl {
  font-size: 13px;
  color: var(--body-gray);
  margin-top: 6px;
  line-height: 1.4;
}

/* ─── ACCORDION (FAQ) ─── */
.accordion-item {
  border-bottom: 1px solid rgba(17,24,39,0.08);
}
.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--near-black);
  transition: color 0.18s ease;
}
.accordion-trigger:hover { color: var(--teal); }
.accordion-trigger:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; border-radius: 3px; }
.accordion-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--teal);
  transition: transform 0.25s ease;
}
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body {
  display: none;
  padding-bottom: 22px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--body-gray);
}
.accordion-item.open .accordion-body { display: block; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links, .nav-right { display: none !important; }
  .nav-toggle { display: flex; }
  .section { padding: 60px 20px; }
  .section-sm { padding: 40px 20px; }
  .page-hero { padding: 60px 20px 52px; }
  .stats-strip { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
