/* =========================================================
   Root Variables
========================================================= */
:root {
  color-scheme: light;
  --primary: #21a957;
  --primary-strong: #178a45;
  --secondary: #0f6a38;
  --accent: #43c776;

  --bg: #f7fff9;
  --panel: #ffffff;
  --card: #ffffff;
  --card-2: #f1faf4;

  --text: #0f172a;
  --muted: #374151;
  --line: rgba(15, 23, 42, 0.08);

  --shadow-soft: 0 20px 60px rgba(15, 23, 42, 0.08);
  --header-height: 72px;
}

[data-theme="dark"] {
  color-scheme: dark;
  --primary: #7ac943;
  --primary-strong: #2f9e44;
  --secondary: #1f4d35;
  --accent: #6be38f;

  --bg: #0b1724;
  --panel: #0f1f2f;
  --card: #122536;
  --card-2: #0f1c2b;

  --text: #e5f0ff;
  --muted: #9bb3ce;
  --line: rgba(255, 255, 255, 0.08);

  --shadow-soft: 0 20px 60px rgba(10, 20, 30, 0.35);
}

/* =========================================================
   Base / Reset
========================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", "Space Grotesk", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.shell {
  width: min(1180px, 92vw);
  margin-inline: auto;
}

/* =========================================================
   Loader
========================================================= */
#loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.loader-logo {
  position: relative;
  display: grid;
  place-items: center;
}

/* soft glow behind the logo */
.loader-logo::before {
  content: "";
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 169, 87, 0.28), transparent 68%);
  animation: loaderGlow 1.8s ease-in-out infinite;
}

.loader-logo img {
  position: relative;
  height: 56px;
  width: auto;
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader-bar {
  position: relative;
  width: 184px;
  height: 4px;
  border-radius: 999px;
  background: rgba(33, 169, 87, 0.16);
  overflow: hidden;
}

[data-theme="dark"] .loader-bar { background: rgba(122, 201, 67, 0.18); }

.loader-bar > span {
  position: absolute;
  inset: 0;
  display: block;
  width: 40%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  animation: loaderSlide 1.15s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes loaderSlide {
  0% { transform: translateX(-130%); }
  100% { transform: translateX(320%); }
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes loaderGlow {
  0%, 100% { transform: scale(0.92); opacity: 0.55; }
  50% { transform: scale(1.08); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .loader-logo::before,
  .loader-logo img,
  .loader-bar > span { animation: none; }
  .loader-bar > span { width: 100%; transform: none; }
}

/* =========================================================
   Scroll Progress Bar
========================================================= */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0;
  background: linear-gradient(90deg, var(--primary), #8ef0b1);
  z-index: 10000;
}

/* =========================================================
   Header & Navigation
========================================================= */
.header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

[data-theme="dark"] .header {
  background: rgba(11, 23, 36, 0.85);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.logo {
  height: 40px;
  width: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--primary);
  color: #0b1724;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1100;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  left: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 12px;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav a:hover {
  color: var(--text);
  background: rgba(33, 169, 87, 0.1);
}

.nav a.active {
  color: #ffffff;
  background: linear-gradient(120deg, var(--primary), var(--accent));
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.theme-toggle i {
  color: var(--primary);
  font-size: 16px;
}

.nav-mobile-actions {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--text);
  border-radius: 4px;
  transition: 0.3s ease;
}

/* =========================================================
   Buttons
========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn.primary {
  background: linear-gradient(130deg, var(--primary), #8ef0b1);
  color: #0c2a18;
  box-shadow: 0 14px 30px rgba(33, 169, 87, 0.25);
}

.btn.ghost {
  background: rgba(33, 169, 87, 0.08);
  border-color: rgba(33, 169, 87, 0.24);
  color: var(--secondary);
}

[data-theme="dark"] .btn.ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.22);
  color: #e8fff2;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(33, 169, 87, 0.24);
}

.btn:focus-visible,
.theme-toggle:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 32px 0 20px;
}

/* =========================================================
   Hero Section
========================================================= */
.hero {
  position: relative;
  min-height: 92svh;
  padding: calc(var(--header-height) + 72px) 0 96px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #f7fff9 0%, #e8f7ea 85%, #ffffff 100%);
}

[data-theme="dark"] .hero {
  background: linear-gradient(180deg, #0b1724 0%, #0f1f2f 80%, #0b1724 100%);
}

.hero-surface {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 18%, rgba(33, 169, 87, 0.12), transparent 32%),
              radial-gradient(circle at 78% 8%, rgba(67, 199, 118, 0.14), transparent 34%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
  overflow: hidden;
}

[data-theme="dark"] .hero-surface {
  background: radial-gradient(circle at 12% 18%, rgba(122, 201, 67, 0.18), transparent 34%),
              radial-gradient(circle at 78% 8%, rgba(107, 227, 143, 0.18), transparent 36%),
              linear-gradient(180deg, rgba(10, 21, 33, 0.8), rgba(10, 21, 33, 0.2));
}

.orb {
  position: absolute;
  width: 360px;
  height: 360px;
  filter: blur(32px);
  border-radius: 50%;
  opacity: 0.45;
  background: linear-gradient(145deg, rgba(33, 169, 87, 0.35), rgba(67, 199, 118, 0.6));
}

.orb-1 { top: -40px; left: -80px; }
.orb-2 { bottom: -120px; right: -60px; background: linear-gradient(145deg, rgba(107, 227, 143, 0.5), rgba(77, 181, 255, 0.2)); }
.orb-3 { top: 30%; right: 32%; width: 240px; height: 240px; opacity: 0.35; }

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15,23,42,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,23,42,0.05) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.35;
  mask-image: radial-gradient(circle at 50% 50%, black 45%, transparent 72%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: var(--text);
}

.hero-copy .lede {
  font-size: 18px;
  color: var(--muted);
  max-width: 640px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(33, 169, 87, 0.14);
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 12px;
}

[data-theme="dark"] .eyebrow {
  background: rgba(122, 201, 67, 0.18);
  color: #dfffe8;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px 0;
}

.hero-illustration {
  width: clamp(280px, 90vw, 1100px);
  max-width: 100%;
  aspect-ratio: 3 / 2;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  filter: drop-shadow(0 18px 40px rgba(15,23,42,0.12));
  transition: transform 0.6s ease, filter 0.6s ease;
}

[data-theme="dark"] .hero-illustration {
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35));
}

.hero-visual:hover .hero-illustration {
  transform: translateY(-6px) scale(1.01);
  filter: drop-shadow(0 22px 50px rgba(33,169,87,0.2));
}

@media (max-width: 1024px) {
  .hero-illustration {
    width: clamp(260px, 94vw, 880px);
    aspect-ratio: 16 / 10;
    border-radius: 20px;
  }
}

.card,
.why-card,
.contact-card,
.highlight {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.why-card:hover,
.highlight:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.12);
}

[data-theme="dark"] .why-card:hover,
[data-theme="dark"] .highlight:hover,
[data-theme="dark"] .contact-card:hover {
  box-shadow: 0 18px 40px rgba(10,20,30,0.3);
}

/* =========================================================
   Sections
========================================================= */
.section {
  padding: 96px 0;
}

.section.alt {
  background: radial-gradient(circle at 80% 10%, rgba(33, 169, 87, 0.08), transparent 28%),
              radial-gradient(circle at 10% 30%, rgba(67, 199, 118, 0.08), transparent 26%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 255, 249, 1));
}

[data-theme="dark"] .section.alt {
  background: radial-gradient(circle at 80% 10%, rgba(122, 201, 67, 0.12), transparent 26%),
              radial-gradient(circle at 10% 30%, rgba(107, 227, 143, 0.12), transparent 26%),
              linear-gradient(180deg, rgba(15, 31, 47, 0.9), rgba(11, 23, 36, 0.95));
}

.section-head {
  text-align: center;
  margin-bottom: 40px;
}

.section h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-top: 10px;
  color: var(--text);
}

.section .lede {
  color: var(--muted);
  margin-top: 12px;
}

.section .narrow {
  max-width: 720px;
  margin-inline: auto;
}

/* =========================================================
   Services
========================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.card {
  background: linear-gradient(145deg, var(--card), var(--card-2));
  border-radius: 20px;
  padding: 26px;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(15,23,42,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(122, 201, 67, 0.12), transparent 60%);
  top: -30px;
  right: -40px;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(15,23,42,0.12);
  border-color: rgba(33, 169, 87, 0.25);
}

[data-theme="dark"] .card {
  box-shadow: 0 18px 40px rgba(10,20,30,0.35);
}

.card h3 {
  font-size: 20px;
  margin: 8px 0 10px;
}

.card p {
  color: var(--muted);
}

.icon-blob {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(122, 201, 67, 0.35), rgba(86, 173, 118, 0.6));
  color: #0b1724;
  font-size: 22px;
  margin-bottom: 12px;
}

.icon-blob.alt {
  background: linear-gradient(135deg, rgba(107, 227, 143, 0.35), rgba(47, 135, 86, 0.7));
}

.icon-blob.accent {
  background: linear-gradient(135deg, rgba(122, 201, 67, 0.35), rgba(114, 187, 255, 0.4));
}

/* Dark mode: match the vibrant glow of .why-icon so icon chips read
   consistently across sections (e.g. Insurance vs Background Verification)
   instead of a dark glyph on a pale blob. */
[data-theme="dark"] .icon-blob,
[data-theme="dark"] .icon-blob.alt,
[data-theme="dark"] .icon-blob.accent {
  background: rgba(122, 201, 67, 0.18);
  color: #c5ffb1;
}

.chip-row {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.chip-row li {
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted);
  font-weight: 600;
  border: 1px solid var(--line);
}

/* =========================================================
   Why
========================================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-card {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(15,23,42,0.06);
}

[data-theme="dark"] .why-card {
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 14px 30px rgba(10,20,30,0.28);
}

.why-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(33, 169, 87, 0.16);
  color: var(--secondary);
  margin-bottom: 12px;
}

[data-theme="dark"] .why-icon {
  background: rgba(122, 201, 67, 0.2);
  color: #c5ffb1;
}

.why-card h3 {
  font-size: 17px;
  line-height: 1.3;
}

.why-card p {
  color: var(--muted);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.highlight {
  padding: 18px 18px;
  border-radius: 16px;
  border: 1px dashed rgba(33, 169, 87, 0.35);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 26px rgba(15,23,42,0.06);
}

[data-theme="dark"] .highlight {
  border: 1px dashed rgba(122, 201, 67, 0.35);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 12px 26px rgba(10,20,30,0.25);
}

.highlight h3 {
  font-size: 17px;
  margin: 8px 0 6px;
}

.highlight p {
  color: var(--muted);
}

.mini-pill {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(33, 169, 87, 0.14);
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 12px;
}

[data-theme="dark"] .mini-pill {
  background: rgba(122, 201, 67, 0.18);
  color: #dfffe8;
}

/* =========================================================
   Contact
========================================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 14px;
}

.contact-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 22px;
  box-shadow: 0 14px 32px rgba(15,23,42,0.08);
}

[data-theme="dark"] .contact-card {
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  box-shadow: 0 14px 32px rgba(10,20,30,0.3);
}

.contact-row {
  display: flex;
  gap: 14px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(33, 169, 87, 0.16);
  color: var(--secondary);
  margin-top: 3px;
  box-shadow: 0 8px 20px rgba(15,23,42,0.08);
}

[data-theme="dark"] .contact-icon {
  background: rgba(122, 201, 67, 0.2);
  color: #dfffe8;
}

address {
  font-style: normal;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 2px;
}

.contact-card a {
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

[data-theme="dark"] .contact-card a {
  color: #dfffe8;
}

/* =========================================================
   Footer
========================================================= */
.footer {
  text-align: center;
  padding: 18px 10px 24px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.7);
  border-top: 1px solid var(--line);
}

[data-theme="dark"] .footer {
  background: rgba(255, 255, 255, 0.04);
}

.footer-social {
  margin-bottom: 6px;
}

.linkedin-icon {
  font-size: 20px;
  color: var(--primary);
  transition: 0.3s ease;
}

.linkedin-icon:hover {
  color: var(--secondary);
}

/* =========================================================
   Animations
========================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* =========================================================
   Mobile Navigation
========================================================= */
@media (max-width: 1024px) {
  .nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 210px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.35);
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
    transition: 0.3s ease;
    border: 1px solid var(--line);
  }

  [data-theme="dark"] .nav {
    background: rgba(11, 23, 36, 0.98);
  }

  .nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-toggle {
    display: flex;
  }
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================================================
   Reduced Motion
========================================================= */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-surface,
  .orb {
    animation: none !important;
  }
}

/* =========================================================
   Career Page
========================================================= */
.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}

.job-card {
  background: linear-gradient(155deg, var(--card), var(--card-2));
  border-radius: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.job-card h3 {
  font-size: 20px;
  line-height: 1.3;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.job-meta span {
  background: rgba(255, 255, 255, 0.05);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  background: rgba(122, 201, 67, 0.14);
  color: var(--secondary);
}

.tag i {
  color: var(--accent);
}

.job-desc {
  color: var(--muted);
}

.job-card h4 {
  margin-top: 10px;
  font-size: 15px;
}

.job-card ul {
  padding-left: 18px;
  color: var(--muted);
}

.job-card ul li {
  margin-bottom: 6px;
}

.common-skills {
  list-style: none;
  background: rgba(122, 201, 67, 0.08);
  padding: 14px 16px;
  border-radius: 12px;
  margin-top: 6px;
  border: 1px solid rgba(122, 201, 67, 0.22);
}

.common-skills li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--text);
}

.common-skills li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(107, 227, 143, 0.2);
}

.apply-btn {
  margin-top: auto;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 12px;
  background: linear-gradient(120deg, var(--primary), #a8f08b);
  color: #0b1724;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 14px 30px rgba(122, 201, 67, 0.35);
}

.apply-btn:hover {
  transform: translateY(-2px);
}

/* ===== Job Tags (Location & Work Mode) ===== */
.tag.location {
  background: rgba(122, 201, 67, 0.18);
}

.tag.mode {
  background: rgba(47, 135, 86, 0.22);
}

[data-theme="dark"] .tag {
  color: #dfffe8;
}

.mt-25 {
  margin-top: 25px;
}

/* =========================================================
   PLATFORM COMPONENTS (multi-page)
========================================================= */

/* ---- Utilities ---- */
.lead {
  font-size: clamp(17px, 2.4vw, 20px);
  color: var(--muted);
  line-height: 1.65;
}

.section.tight { padding: 64px 0; }

.text-center { text-align: center; }

/* ---- Inner-page hero ---- */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + 64px) 0 64px;
  background: radial-gradient(circle at 18% 20%, rgba(33, 169, 87, 0.12), transparent 32%),
              radial-gradient(circle at 82% 0%, rgba(67, 199, 118, 0.12), transparent 34%),
              linear-gradient(180deg, #f7fff9 0%, #e8f7ea 100%);
}

[data-theme="dark"] .page-hero {
  background: radial-gradient(circle at 18% 20%, rgba(122, 201, 67, 0.16), transparent 32%),
              radial-gradient(circle at 82% 0%, rgba(107, 227, 143, 0.16), transparent 34%),
              linear-gradient(180deg, #0b1724 0%, #0f1f2f 100%);
}

.page-hero .eyebrow { margin-bottom: 14px; }

.page-hero h1 {
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-size: clamp(32px, 4.6vw, 50px);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
  max-width: 18ch;
}

.page-hero p {
  margin-top: 16px;
  max-width: 64ch;
  color: var(--muted);
  font-size: clamp(16px, 2.2vw, 19px);
}


/* ---- Breadcrumbs ---- */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 18px;
}

.breadcrumbs a { text-decoration: none; color: var(--secondary); }
.breadcrumbs a:hover { text-decoration: underline; }
[data-theme="dark"] .breadcrumbs a { color: #9fe6b6; }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs [aria-current="page"] { color: var(--text); }

/* ---- Stat callouts ---- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.stat {
  padding: 26px 22px;
  border-radius: 18px;
  background: linear-gradient(150deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
  text-align: center;
}

[data-theme="dark"] .stat { box-shadow: 0 14px 32px rgba(10, 20, 30, 0.32); }

.stat .num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat .label {
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
  font-size: 14px;
}

/* ---- Badge / compliance row ---- */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(33, 169, 87, 0.1);
  border: 1px solid rgba(33, 169, 87, 0.22);
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
}

.badge i { color: var(--primary); }
[data-theme="dark"] .badge { background: rgba(122, 201, 67, 0.14); color: #dfffe8; }

/* ---- Checklist ---- */
.checklist {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 6px;
}

.checklist li {
  position: relative;
  padding-left: 32px;
  color: var(--muted);
  line-height: 1.55;
}

.checklist li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  font-size: 11px;
  border-radius: 50%;
  background: rgba(33, 169, 87, 0.16);
  color: var(--primary);
}

.checklist li strong { color: var(--text); }

/* ---- Two-column feature rows ---- */
.feature-row {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.feature-row + .feature-row { margin-top: 72px; }
.feature-row.reverse .feature-visual { order: -1; }

.feature-copy h2 { font-size: clamp(24px, 3.4vw, 34px); }
.feature-copy h3 { font-size: clamp(22px, 3vw, 30px); }
.feature-copy > p { color: var(--muted); margin-top: 12px; }

.feature-visual {
  border-radius: 24px;
  padding: 30px;
  background: linear-gradient(155deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.feature-visual .icon-blob { width: 60px; height: 60px; font-size: 26px; }
.feature-visual h3 { margin: 14px 0 6px; font-size: 18px; }
.feature-visual p { color: var(--muted); font-size: 15px; }

@media (max-width: 820px) {
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.reverse .feature-visual { order: 0; }
  .feature-row + .feature-row { margin-top: 48px; }
}

/* ---- Process timeline (talent pipeline) ---- */
/* Mobile-first: vertical numbered timeline (badge left, content right) */
.process {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.process .step {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 18px 20px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  transition:
    opacity 0.55s ease,
    transform 0.6s cubic-bezier(0.22, 0.7, 0.25, 1),
    box-shadow 0.28s ease,
    border-color 0.28s ease;
}

[data-theme="dark"] .process .step { box-shadow: 0 12px 26px rgba(10, 20, 30, 0.28); }

.process .step:hover {
  border-color: rgba(33, 169, 87, 0.32);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
}

[data-theme="dark"] .process .step:hover { box-shadow: 0 22px 44px rgba(0, 0, 0, 0.42); }

.process .step .num {
  grid-row: 1 / span 2;
  align-self: center;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #0c2a18;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.process .step:hover .num {
  transform: scale(1.12) rotate(-4deg);
  box-shadow: 0 10px 22px rgba(33, 169, 87, 0.42);
}

.process .step h3 { grid-column: 2; font-size: 16px; margin: 0; }
.process .step p { grid-column: 2; font-size: 13.5px; color: var(--muted); line-height: 1.45; margin: 2px 0 0; }

/* Staggered scroll-reveal — cards cascade in sequence when in view */
.process.stagger .step {
  opacity: 0;
  transform: translateY(26px) scale(0.97);
}

.process.stagger.in .step {
  opacity: 1;
  transform: none;
}

/* delay only opacity + transform (entrance); keep hover box-shadow/border instant */
.process.stagger.in .step:nth-child(1) { transition-delay: 0.05s, 0.05s, 0s, 0s; }
.process.stagger.in .step:nth-child(2) { transition-delay: 0.13s, 0.13s, 0s, 0s; }
.process.stagger.in .step:nth-child(3) { transition-delay: 0.21s, 0.21s, 0s, 0s; }
.process.stagger.in .step:nth-child(4) { transition-delay: 0.29s, 0.29s, 0s, 0s; }
.process.stagger.in .step:nth-child(5) { transition-delay: 0.37s, 0.37s, 0s, 0s; }
.process.stagger.in .step:nth-child(6) { transition-delay: 0.45s, 0.45s, 0s, 0s; }
.process.stagger.in .step:nth-child(7) { transition-delay: 0.53s, 0.53s, 0s, 0s; }

@media (prefers-reduced-motion: reduce) {
  .process.stagger .step { opacity: 1; transform: none; }
  .process .step:hover .num { transform: none; }
}

/* Desktop: equal-width horizontal stepper — always one aligned row */
@media (min-width: 1025px) {
  .process {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0;
  }

  .process .step {
    flex: 1 1 0;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    row-gap: 6px;
    margin: 0 7px;
    padding: 26px 14px;
  }

  .process .step:first-child { margin-left: 0; }
  .process .step:last-child { margin-right: 0; }

  .process .step .num { grid-row: auto; margin-bottom: 6px; }
  .process .step h3,
  .process .step p { grid-column: auto; }
}

/* ---- Engagement model cards ---- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.model-card {
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
  border-radius: 20px;
  background: linear-gradient(155deg, var(--card), var(--card-2));
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.model-card:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 169, 87, 0.28);
  box-shadow: 0 24px 48px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] .model-card { box-shadow: 0 16px 36px rgba(10, 20, 30, 0.34); }

.model-card .best-for {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(33, 169, 87, 0.14);
  color: var(--secondary);
}

[data-theme="dark"] .model-card .best-for { background: rgba(122, 201, 67, 0.18); color: #dfffe8; }
.model-card h3 { font-size: 21px; margin-bottom: 14px; }
.model-card .checklist { margin-top: 0; }
.model-card .checklist li { font-size: 14.5px; }

/* ---- Sectors ---- */
.sector-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.sector {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  font-weight: 600;
}

.sector i {
  color: var(--primary);
  font-size: 18px;
  flex: none;
}

/* ---- Client / logo wall (anonymised) ---- */
.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 880px) {
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 460px) {
  .logo-wall { grid-template-columns: 1fr; }
}

/* ---- Client logo wall ---- */
.client-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 26px 24px 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.client-logo:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 169, 87, 0.28);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.14);
}

[data-theme="dark"] .client-logo { box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4); }

.client-logo .logo-frame {
  flex: 1;
  width: 100%;
  min-height: 74px;
  display: grid;
  place-items: center;
}

.client-logo img {
  max-height: 52px;
  max-width: 78%;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.78;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logo:hover img,
.client-logo:focus-within img {
  filter: none;
  opacity: 1;
}

.client-logo .client-label {
  margin-top: 16px;
  font-weight: 700;
  font-size: 14.5px;
  /* chip is always white in both themes — keep text dark for legibility */
  color: #0f172a;
}

.client-logo .client-region {
  display: block;
  margin-top: 2px;
  font-weight: 600;
  font-size: 12.5px;
  color: #475569;
}

/* ---- Compact "trusted by" logo strip ---- */
.logo-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 18px;
}

.logo-strip .logo-chip {
  display: grid;
  place-items: center;
  min-width: 168px;
  min-height: 84px;
  padding: 16px 30px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.logo-strip .logo-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 169, 87, 0.28);
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.12);
}

[data-theme="dark"] .logo-strip .logo-chip { box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4); }

.logo-strip img {
  max-height: 40px;
  max-width: 150px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-strip .logo-chip:hover img { filter: none; opacity: 1; }

.logo-strip img.logo-square { max-height: 48px; max-width: 48px; }

/* ---- FAQ accordion ---- */
.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
  overflow: hidden;
}

.faq-item .faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.faq-item .faq-q i { color: var(--primary); transition: transform 0.25s ease; flex: none; }
.faq-item[open] .faq-q i,
.faq-item.open .faq-q i { transform: rotate(45deg); }

.faq-item .faq-a {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.6;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a { padding: 0 20px 18px; max-height: 400px; }

/* ---- CTA band ---- */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(48px, 7vw, 80px) 24px;
  border-radius: 28px;
  background: linear-gradient(130deg, var(--secondary), var(--primary) 60%, var(--accent));
  color: #f3fff8;
  box-shadow: 0 24px 60px rgba(33, 169, 87, 0.28);
}

.cta-band h2 { color: #ffffff; font-size: clamp(26px, 4vw, 38px); }
.cta-band p { margin: 14px auto 26px; max-width: 56ch; color: rgba(255, 255, 255, 0.92); font-size: 18px; }
.cta-band .btn.primary { background: #ffffff; color: var(--secondary); }
.cta-band .btn.ghost { background: rgba(255, 255, 255, 0.14); border-color: rgba(255, 255, 255, 0.5); color: #ffffff; }
.cta-band .cta-row { justify-content: center; margin: 0; }

/* ---- Footer (expanded) ---- */
.footer.site-footer {
  text-align: left;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 36px;
}

.footer-brand img { height: 40px; margin-bottom: 14px; }
.footer-brand p { color: var(--muted); max-width: 38ch; font-size: 14.5px; }

.footer-tagline {
  margin-top: 14px;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--secondary);
}

[data-theme="dark"] .footer-tagline { color: #9fe6b6; }
.footer-col h3 { font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 14px; color: var(--text); }
.footer-col a { display: block; color: var(--muted); text-decoration: none; padding: 5px 0; font-size: 14.5px; }
.footer-col a:hover { color: var(--secondary); }
[data-theme="dark"] .footer-col a:hover { color: #9fe6b6; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--muted);
}

.footer-bottom .footer-social { margin: 0; display: flex; gap: 14px; }

@media (max-width: 820px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Scroll reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================
   Responsive
========================================================= */
@media (max-width: 700px) {
  .hero {
    padding-top: calc(var(--header-height) + 40px);
  }

  .hero-grid {
    gap: 24px;
  }

  .hero-visual {
    min-height: 260px;
    justify-content: center;
    padding: 0 8px;
  }

  .hero-illustration {
    width: 100%;
    max-width: 540px;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
  }

  .header {
    height: auto;
    padding: 10px 0;
  }

  .cta-row {
    flex-direction: column;
  }
}

@media (max-width: 1024px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-mobile-actions {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 8px;
  }

  .theme-toggle--desktop {
    display: none;
  }

  .theme-toggle.nav-mobile {
    width: 44px;
    height: 44px;
  }
}
