:root {
  color-scheme: light;
  --ink: #0f1b3f;
  --accent: #3A66B3;
  --muted: #4b5563;
  --panel: #0f1322;
  --soft: #f5f7ff;
  --surface: #ffffff;
}

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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  background: var(--surface);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

/* Announcement banner */
.announce {
  background: var(--accent);
  color: #ffffff;
}

.announce a {
  color: #ffffff;
  text-decoration: underline;
}

.announce .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.announce .badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.2;
}

/* Header / Navigation */
.hmj-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(15, 19, 34, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hmj-nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 28px);
  display: flex;
  align-items: center;
  gap: 16px;
  color: #ffffff;
}

.hmj-logo img {
  height: 42px;
}

.hmj-menu {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
  margin-left: auto;
  margin-bottom: 0;
}

.hmj-menu a {
  color: #eaf0ff;
  text-decoration: none;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.hmj-menu a.nav-admin-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-inline: 14px;
  background: rgba(63, 102, 199, 0.14);
  border: 1px solid rgba(119, 151, 238, 0.26);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hmj-menu a.nav-admin-link::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  background: currentColor;
  opacity: 0.88;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17 8h-1V6a4 4 0 1 0-8 0v2H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2Zm-6 7.73V17a1 1 0 0 0 2 0v-1.27a2 2 0 1 0-2 0ZM10 8V6a2 2 0 1 1 4 0v2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M17 8h-1V6a4 4 0 1 0-8 0v2H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2Zm-6 7.73V17a1 1 0 0 0 2 0v-1.27a2 2 0 1 0-2 0ZM10 8V6a2 2 0 1 1 4 0v2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.hmj-menu a:hover,
.hmj-menu a:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  outline: 2px solid rgba(255,255,255,0.6);
  outline-offset: 2px;
  transform: translateY(-1px);
}

.hmj-menu a[aria-current="page"] {
  background: rgba(63, 102, 199, 0.35);
  color: #ffffff;
  border: 1px solid rgba(63, 102, 199, 0.65);
}

.hmj-menu a.nav-admin-link:hover,
.hmj-menu a.nav-admin-link:focus-visible {
  background: rgba(63, 102, 199, 0.22);
  border-color: rgba(145, 175, 255, 0.38);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 24px rgba(10, 15, 30, 0.18);
}

.hmj-menu a[aria-disabled="true"] {
  opacity: 0.65;
  cursor: not-allowed;
}

.hmj-menu a.requires-admin::after {
  content: " \1F512";
  font-size: 0.85em;
}

.hmj-burger {
  margin-left: auto;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 14px;
  display: none;
  border: 1px solid rgba(236, 239, 255, 0.18);
  background: rgba(236, 239, 255, 0.08);
  color: #ffffff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(10, 15, 30, 0.18);
  transition: transform 0.16s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hmj-burger:hover,
.hmj-burger:focus-visible {
  background: rgba(236, 239, 255, 0.16);
  border-color: rgba(236, 239, 255, 0.3);
  box-shadow: 0 18px 34px rgba(10, 15, 30, 0.24);
  outline: none;
  transform: translateY(-1px);
}

.hmj-burger span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.hmj-burger[aria-expanded="true"] {
  background: rgba(236, 239, 255, 0.2);
  border-color: rgba(236, 239, 255, 0.34);
}

.hmj-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hmj-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.hmj-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hmj-scrim {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 30, 0.55);
  backdrop-filter: blur(6px);
  display: none;
}

.hmj-scrim[hidden] {
  display: none;
}

@media (max-width: 900px) {
  .hmj-burger {
    display: inline-flex;
  }

  .hmj-menu {
    position: fixed;
    right: 16px;
    left: 16px;
    top: 70px;
    background: rgba(15, 19, 34, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
    display: grid;
    gap: 6px;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.28s ease, padding 0.2s ease;
  }

  .hmj-menu.open {
    max-height: 70vh;
    padding: 12px;
  }

  .hmj-menu a {
    width: 100%;
    padding: 14px 12px;
  }

  .hmj-menu a.nav-admin-link {
    justify-content: flex-start;
  }
}

.section {
  padding: 36px 20px;
}

.wrap {
  max-width: 1100px;
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border: 1px solid rgba(26, 26, 46, 0.14);
  border-radius: 16px;
  padding: 18px 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.soft {
  background: linear-gradient(180deg, rgba(58, 102, 179, 0.06), transparent 55%), #ffffff;
}

.kpi-source {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 4px;
  letter-spacing: 0.02em;
}

.faq-tabs,
.faq-tab-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}

.faq-tab-btn.active {
  box-shadow: 0 14px 28px rgba(58, 102, 179, 0.26);
}

.faq-pane[hidden] {
  display: none !important;
}

.insight-grid,
.testimonial-grid {
  display: grid;
  gap: 16px;
}

.insight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.insight-card,
.insight-article,
.testimonial-card {
  min-height: 100%;
}

.badge-category,
.insight-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(58, 102, 179, 0.12);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.insight-card {
  display: grid;
  gap: 12px;
}

.insight-card h3,
.insight-article h2 {
  margin: 0;
  color: var(--ink);
}

.insight-card p,
.insight-article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.insight-card a,
.insight-article a {
  color: var(--accent);
  font-weight: 700;
}

.insight-article {
  display: grid;
  gap: 14px;
  scroll-margin-top: 110px;
}

.insight-article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.insight-article__toplink {
  font-size: 0.9rem;
}

.testimonial-card {
  position: relative;
  display: grid;
  gap: 10px;
  min-height: auto;
  padding: 18px 16px 14px;
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(103, 154, 255, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(26, 37, 66, 0.98), rgba(15, 19, 34, 0.98));
  border: 1px solid rgba(139, 164, 224, 0.18);
  box-shadow: 0 18px 34px rgba(6, 10, 20, 0.22);
  color: #f4f7ff;
  overflow: hidden;
}

.testimonial-mark {
  position: absolute;
  top: 8px;
  left: 16px;
  color: rgba(206, 220, 255, 0.52);
  font-size: 1.95rem;
  line-height: 1;
  font-weight: 800;
  opacity: 0.34;
  pointer-events: none;
}

.testimonial-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 9px;
  align-items: center;
}

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  overflow: hidden;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid rgba(143, 190, 255, 0.24);
  background:
    linear-gradient(180deg, rgba(10, 102, 194, 0.44), rgba(64, 134, 214, 0.18)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 10px 20px rgba(10, 102, 194, 0.18);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-person {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.testimonial-text {
  margin: 0;
  color: rgba(244, 247, 255, 0.94);
  font-size: 0.94rem;
  line-height: 1.52;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonial-name {
  color: #ffffff;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

a.testimonial-name:hover,
a.testimonial-name:focus-visible {
  color: #d7e7ff;
  text-decoration: underline;
}

.testimonial-title {
  color: rgba(214, 224, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.28;
}

.testimonial-profile-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(125, 179, 255, 0.26);
  background: rgba(10, 102, 194, 0.16);
  color: #e9f3ff;
  font-size: 0.74rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}

.testimonial-profile-link:hover,
.testimonial-profile-link:focus-visible {
  background: rgba(10, 102, 194, 0.24);
  border-color: rgba(125, 179, 255, 0.38);
  transform: translateY(-1px);
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
  margin-top: 0;
}

.linkedin-badge {
  color: #7fc4ff;
  display: inline-flex;
  align-items: center;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(127, 196, 255, 0.08);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.testimonial-card.light {
  background: #ffffff;
  color: #0b1635;
  border: 1px solid rgba(58, 102, 179, 0.22);
  box-shadow:
    0 14px 28px rgba(15, 27, 63, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.testimonial-card.light .testimonial-mark {
  color: #2c58ab;
  opacity: 0.14;
}

.testimonial-card.light .testimonial-header,
.testimonial-card.light .testimonial-person,
.testimonial-card.light .testimonial-footer {
  color: #0b1635;
}

.testimonial-card.light .testimonial-text {
  color: #182a49;
  font-weight: 500;
}

.testimonial-card.light .testimonial-name {
  color: #081327;
}

.testimonial-card.light a.testimonial-name:hover,
.testimonial-card.light a.testimonial-name:focus-visible {
  color: #0a4c96;
}

.testimonial-card.light .testimonial-title {
  color: #32466f;
}

.testimonial-card.light .linkedin-badge {
  color: #0c4b89;
  background: #e2efff;
}

.testimonial-card.light .testimonial-avatar {
  color: #0a4c96;
  border-color: rgba(10, 102, 194, 0.24);
  background:
    linear-gradient(180deg, rgba(10, 102, 194, 0.14), rgba(10, 102, 194, 0.06)),
    #eef5ff;
  box-shadow: 0 8px 18px rgba(10, 102, 194, 0.12);
}

.testimonial-card.light .testimonial-profile-link {
  background: #0a66c2;
  border-color: #0a66c2;
  color: #ffffff;
  box-shadow: 0 8px 16px rgba(10, 102, 194, 0.18);
}

.testimonial-card.light .testimonial-profile-link:hover,
.testimonial-card.light .testimonial-profile-link:focus-visible {
  background: #084f97;
  border-color: #084f97;
  color: #ffffff;
}

.testimonial-slider {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.testimonial-slider .feed-track {
  padding: 2px 0;
}

.feed-track--static {
  animation: none !important;
  justify-content: center;
}

.testimonial-grid .testimonial-card {
  align-content: start;
}

.testimonial-grid .testimonial-text {
  -webkit-line-clamp: 4;
}

.testimonial-slider .testimonial-text {
  -webkit-line-clamp: 5;
}

.testimonial-slider .testimonial-card {
  min-width: 296px;
  max-width: 296px;
  flex: 0 0 296px;
}

.home-page [data-testimonials-section].section {
  padding-top: 42px;
  padding-bottom: 48px;
}

.candidates-page [data-testimonials-section].section {
  padding-top: 42px;
  padding-bottom: 52px;
}

.clients-body [data-testimonials-section].client-section {
  padding-top: 46px;
  padding-bottom: 58px;
}

[data-testimonials-section] :is(.public-section-head, .section-heading) {
  margin-bottom: 16px;
}

.testimonial-card :is(.testimonial-name, .testimonial-title, .testimonial-text, .testimonial-profile-link) {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

@media (max-width: 900px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .testimonial-header {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .testimonial-profile-link {
    grid-column: 2;
    justify-self: start;
  }

  .testimonial-slider .testimonial-card {
    min-width: 86vw;
    max-width: 86vw;
    flex-basis: 86vw;
  }
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-tertiary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn-primary {
  background: linear-gradient(180deg, rgba(58, 102, 179, 0.16), rgba(58, 102, 179, 0.08)), var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(58, 102, 179, 0.32);
  border: none;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(58, 102, 179, 0.4);
}

.btn-secondary {
  background: rgba(58, 102, 179, 0.08);
  border: 1px solid rgba(58, 102, 179, 0.3);
  color: var(--accent);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(58, 102, 179, 0.14);
}

.btn-tertiary {
  background: #ffffff;
  border: 1px solid rgba(58, 102, 179, 0.32);
  color: var(--accent);
}

.btn-tertiary:hover,
.btn-tertiary:focus-visible {
  background: rgba(58, 102, 179, 0.08);
}

/* Floating hero card used on entry pages */
.entry-hero {
  position: relative;
  min-height: 60vh;
  padding: 130px 20px 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background: url('../images/hero.jpg') center/cover no-repeat;
}

.entry-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,26,46,0.82), rgba(26,26,46,0.55));
}

.entry-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,0.12) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.07) 0 1px, transparent 1px 10px);
  animation: heroScan 18s linear infinite;
}

@keyframes heroScan {
  to { transform: translateX(16px); }
}

.entry-hero__wrap {
  position: relative;
  z-index: 1;
  width: min(94vw, 980px);
  margin: 0 auto;
}

.entry-hero__card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.9));
  border-radius: 28px;
  padding: clamp(28px, 4vw, 42px) clamp(22px, 4vw, 44px);
  border: 1px solid rgba(26,26,46,0.12);
  box-shadow:
    0 30px 80px rgba(15,19,34,0.22),
    0 14px 32px rgba(15,19,34,0.18);
  color: var(--ink);
  position: relative;
}

.entry-hero__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(58,102,179,0.9);
  margin: 0 0 12px;
}

.entry-hero__title {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.entry-hero__lead {
  margin: 0 auto;
  max-width: 700px;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted);
}

.entry-hero__actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.entry-hero__actions .btn-primary {
  margin: 0;
  padding: 12px 22px;
  box-shadow: 0 12px 25px rgba(58,102,179,0.35);
}

.entry-hero__actions .btn-secondary {
  margin: 0;
  padding: 12px 22px;
  border: 1px solid rgba(58,102,179,0.32);
  background: rgba(58,102,179,0.08);
  color: var(--accent);
}

.entry-hero__actions .btn-secondary:hover {
  background: rgba(58,102,179,0.14);
  color: var(--accent);
}

.entry-hero__meta {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.entry-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(58,102,179,0.1);
  border: 1px solid rgba(58,102,179,0.2);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent);
}

.entry-hero__chip::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(58,102,179,0.15);
}

.entry-hero .power-underline {
  width: min(90vw, 720px);
  height: 14px;
  margin: 16px auto;
}

.entry-hero .power-underline path {
  stroke: rgba(58,102,179,0.8);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 6 8;
  animation: flow 2.8s linear infinite;
}

@keyframes flow {
  to { stroke-dashoffset: -280; }
}

.entry-hero__note {
  margin-top: 12px;
  font-size: 0.95rem;
  color: rgba(75,85,99,0.85);
}

.entry-hero--compact {
  min-height: 46vh;
  padding: 110px 20px 90px;
}

.entry-hero--no-scan::after {
  display: none;
}

.entry-hero--align-left .entry-hero__card {
  text-align: left;
}

.entry-hero--align-left .entry-hero__actions,
.entry-hero--align-left .entry-hero__meta {
  justify-content: flex-start;
}

@media (max-width: 720px) {
  .entry-hero {
    padding: 120px 16px 90px;
  }

  .entry-hero__card {
    padding: 26px 22px 32px;
  }

  .entry-hero__actions .btn-primary,
  .entry-hero__actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .entry-hero::after {
    animation: none;
  }
  .entry-hero .power-underline path {
    animation: none;
  }
}

  color: #ffffff;
  padding: 60px 20px;
}

.about-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.clients-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.clients-content h2, .clients-content h3 {
  color: #1A1A2E;
}

.clients-content ul {
  list-style: none;
  padding: 0;
}

.clients-content ul li {
  margin: 10px 0;
  padding-left: 25px;
  position: relative;
}

.clients-content ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #3A66B3; /* your accent blue */
}

.clients-content .btn-primary {
  display: inline-block;
  margin-top: 20px;
}

.candidates-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.cv-form {
  margin-top: 20px;
}

.cv-form input[type="text"],
.cv-form input[type="email"],
.cv-form input[type="file"] {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #1A1A2E;
  border-radius: 4px;
}

.cv-form button {
  cursor: pointer;
}

.jobs-board {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.job {
  flex: 1 1 300px;
  border: 1px solid #1A1A2E;
  border-radius: 8px;
  padding: 20px;
  line-height: 1.6;
}

.job h3 {
  margin-top: 0;
}

.job .btn-primary {
  display: inline-block;
  margin-top: 10px;
}


.contact-content {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.6;
}

.contact-form {
  margin-top: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #1A1A2E;
  border-radius: 4px;
}

.contact-form button {
  cursor: pointer;
}

.contact-content a {
  color: #3A66B3;
  text-decoration: underline;
}

footer {
  background: #1A1A2E;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}

.footer-content p {
  margin: 5px 0;
}

.footer-content a {
  color: #3A66B3;
  text-decoration: none;
}

.footer-content a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  font-size: 0.9em;
  opacity: 0.8;
}



.trust-line {
  text-align: center;
  max-width: 800px;
  margin: 10px auto 40px auto;
  font-style: italic;
  font-size: 1.1em;
  color: #555555;
}

.cta {
  text-align: center;
  padding: 60px 20px;
  background: #1A1A2E;
  color: #ffffff;
}

.cta a {
  margin: 10px;
}

.about-content {
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.8;
  padding: 0 20px;
}

.about-content h2 {
  text-align: center;
  margin-bottom: 30px;
}

.about-content blockquote {
  border-left: 4px solid #3A66B3;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #333333;
  background: #f8f8f8;
}

.about-content {
  max-width: 900px;
  margin: 40px auto;
  line-height: 1.8;
  padding: 0 20px;
}

.about-content h2 {
  text-align: center;
  margin-bottom: 30px;
}

.about-content blockquote {
  border-left: 4px solid #3A66B3;
  padding-left: 20px;
  margin: 30px 0;
  font-style: italic;
  color: #333333;
  background: #f8f8f8;
}

.about-wrap {
  overflow: auto; /* ensures float doesn't break layout */
}

.about-img {
  float: left;
  width: 250px;
  height: auto;
  margin: 0 20px 20px 0;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .about-img {
    float: none;
    display: block;
    margin: 0 auto 20px auto;
  }
}

/* =======================
   CONTACT FORM SECTION
   ======================= */

.contact-content {
  position: relative;
}

.contact-form {
  margin-top: 20px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="file"],
.contact-form textarea {
  width: 60%;             /* 40% shorter than full width */
  max-width: 600px;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #1A1A2E;
  border-radius: 4px;
}

.contact-form textarea {
  width: 100%;            /* keep message box full width */
}

.contact-form button {
  cursor: pointer;
}

.contact-content a {
  color: #3A66B3;
  text-decoration: underline;
}

/* Call Us Box */
.contact-phone-box {
  position: absolute;
  top: 60px;              /* push it down below intro text */
  right: -40px;           /* nudge further right off form */
  background: #1A1A2E;    /* matches banner/header */
  color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  max-width: 200px;
  text-align: center;
  font-size: 1.1em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* subtle shadow */
}

/* Mobile responsive tweaks */
@media (max-width: 768px) {
  .contact-phone-box {
    position: static;
    margin: 20px 0;
    right: 0;
    max-width: 100%;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form input[type="file"] {
    width: 100%;           /* full width on mobile */
  }
}

.jobs-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.job {
  border: 1px solid #1A1A2E;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

.job h3 {
  margin-top: 0;
}

.status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.9em;
  border-radius: 20px;
  margin-bottom: 10px;
}

.status.live {
  background: #28a745; /* green */
  color: #fff;
}

.status.interviewing {
  background: #ffc107; /* amber */
  color: #000;
}

.status.closed {
  background: #dc3545; /* red */
  color: #fff;
}

.job a {
  display: inline-block;
  margin-top: 10px;
}


/* Jobs Board Layout */
.jobs-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.job {
  border: 1px solid #1A1A2E;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  background: #ffffff; /* ensures each job card is white if your site uses colored background */
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.job h3 {
  margin-top: 0;
}

.job a {
  display: inline-block;
  margin-top: 10px;
}

/* Status Badges */
.status {
  display: inline-block;
  padding: 4px 10px;
  font-size: 0.8em;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: bold;
}

.status.live {
  background: #28a745; /* green */
  color: #ffffff;
}

.status.interviewing {
  background: #ffc107; /* amber */
  color: #000000;
}

.status.closed {
  background: #dc3545; /* red */
  color: #ffffff;
}

/* Responsive tweak for jobs-board */
@media (max-width: 768px) {
  .jobs-board {
    grid-template-columns: 1fr;
  }
}

.clients-content {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.8;
}

.clients-content h2, .clients-content h3 {
  text-align: left;
  margin-bottom: 20px;
}

.clients-content ul {
  list-style: none;
  padding: 0;
}

.clients-content ul li {
  margin-bottom: 10px;
}

.clients-cta {
  margin-top: 30px;
}

.clients-cta a {
  display: inline-block;
  margin-right: 15px;
}

.filter-buttons {
  margin: 20px 0;
}

.filter-buttons button {
  margin-right: 10px;
  padding: 8px 16px;
  cursor: pointer;
}

.jobs-board {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  padding: 40px 20px;
}

.job {
  border: 1px solid #1A1A2E;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

/* =======================
   TESTIMONIALS SECTION
   ======================= */

.testimonials {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #1A1A2E;
  margin-bottom: 40px;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial {
  background: #ffffff;
  border: 1px solid #1A1A2E;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.testimonial p {
  font-style: italic;
  margin-bottom: 10px;
}

.testimonial span {
  display: block;
  font-weight: bold;
  color: #3A66B3; /* accent color to match your brand */
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .testimonial-cards {
    grid-template-columns: 1fr;
  }
}

/* =======================
   DIRECTORS SECTION
   ======================= */

.directors {
  background: #f9f9f9;
  padding: 60px 20px;
  text-align: center;
}

.directors h2 {
  color: #1A1A2E;
  margin-bottom: 40px;
}

.directors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: center;
}

.director {
  flex: 1 1 300px;
  max-width: 400px;
}

.director img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 20px;
}

.director h3 {
  margin-bottom: 10px;
  color: #1A1A2E;
}

.director p {
  line-height: 1.6;
  font-size: 0.95em;
  color: #333333;
}

@media (max-width: 768px) {
  .directors-grid {
    flex-direction: column;
    align-items: center;
  }

  .director {
    max-width: 100%;
  }
}

.candidates-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  margin: 40px auto;
  max-width: 1000px;
}

.candidate {
  text-align: center;
  border: 1px solid #1A1A2E;
  padding: 20px;
  border-radius: 8px;
  width: 250px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 15px;
}

.social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-icons img:hover {
  transform: scale(1.1);
}

.candidate-details p {
  margin: 5px 0;
  font-size: 0.95em;
}

@media (max-width: 768px) {
  .candidates-profiles {
    flex-direction: column;
    align-items: center;
  }
}
.director .social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0;
}

.director .social-icons img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s ease;
}

.director .social-icons img:hover {
  transform: scale(1.1);
}

.director p {
  margin: 5px 0;
}

/* --- Mobile menu stacking fix (HMJ) --- */
@media (max-width:900px){
  .hmj-menu{ z-index: 1002; }   /* menu above scrim */
  .hmj-scrim{ z-index: 1000; }  /* scrim below menu */
  .hmj-burger{ z-index: 1003; } /* burger above both */
}

/* Stronger, darker section labels (override) */
.separator h2{
  color:#f4f7ff;                      /* brighter text */
  background:linear-gradient(180deg,#24314f,#1a2441); /* darker blue/grey */
  border-color:rgba(95,134,255,.55);  /* slightly brighter edge */
  box-shadow:0 10px 28px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.05);
}

/* admin toast styles */
#toast{position:fixed;right:16px;bottom:16px;display:grid;gap:8px;z-index:9999}
#toast .toast{background:#0f172a;color:#e6edf6;border:1px solid #233044;border-radius:10px;padding:10px 12px;box-shadow:0 10px 30px rgba(0,0,0,.35)}
#toast .toast.error{border-color:#5b2b2b}
