/* =========================================================
   Interior page header banner
   ========================================================= */
.page-header {
  background: var(--c-black);
  color: var(--c-white);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { margin-bottom: var(--sp-4); }
.page-header h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: "YEAR" 1979;
  font-size: clamp(2.25rem, 5.2vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: 0;
  max-width: 760px;
}
.page-header p.lead {
  margin-top: var(--sp-5);
  font-size: var(--fs-lead);
  color: rgba(255,255,255,0.72) !important;
  max-width: 560px;
  line-height: 1.6;
}
.page-header .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: var(--sp-6);
}
.page-header .breadcrumb a { color: rgba(255,255,255,0.75) !important; }
.page-header .breadcrumb a:hover { color: var(--c-yellow); }
.page-header-signal {
  position: absolute;
  right: -60px;
  top: -40px;
  width: 420px;
  height: 420px;
  opacity: 0.35;
  z-index: 1;
  pointer-events: none;
}
.page-header .header-blob {
  position: absolute;
  right: -8%;
  top: -20%;
  width: 380px;
  height: 380px;
  background: linear-gradient(155deg, var(--c-yellow) 0%, var(--c-yellow-deep) 100%);
  border-radius: 44% 56% 58% 42% / 46% 42% 58% 54%;
  opacity: 0.14;
  z-index: 1;
}
.page-header-statue {
  display: none;
  position: absolute;
  right: 4%;
  bottom: 0;
  z-index: 2;
  pointer-events: none;
  user-select: none;
}
.page-header-statue img { height: clamp(220px, 32vw, 340px); width: auto; display: block; }
@media (min-width: 980px) {
  .page-header-statue { display: block; }
}

/* Nav active state */
.nav-link.is-active { color: var(--c-black); text-decoration: underline; text-decoration-color: var(--c-yellow); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.mobile-nav-link.is-active { color: var(--c-black); }

/* =========================================================
   Process steps (legitimate ordered sequence — how the
   onboarding/handoff actually happens, step by step)
   ========================================================= */
.process-steps {
  margin-top: var(--sp-12);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 780px) { .process-steps { grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); } }

.process-step { position: relative; padding-top: var(--sp-6); }
.process-step:not(:last-child) { padding-bottom: var(--sp-8); }
@media (min-width: 780px) { .process-step:not(:last-child) { padding-bottom: 0; } }

.process-step .step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-yellow);
  font-weight: 800;
  font-size: 0.9375rem;
  margin-bottom: var(--sp-4);
}
.process-step h3 { font-size: 1.0625rem; font-weight: 800; }
.process-step p { margin-top: var(--sp-2); font-size: 0.9375rem; color: var(--text-muted) !important; line-height: 1.55; }

.process-connector {
  display: none;
}
@media (min-width: 780px) {
  .process-step:not(:last-child) .process-connector {
    display: block;
    position: absolute;
    top: 20px;
    left: calc(50% + 34px);
    right: calc(-50% + 34px);
    height: 2px;
    background: var(--border-soft);
  }
}

/* =========================================================
   FAQ accordion
   ========================================================= */
.faq-list { margin-top: var(--sp-10); display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item:first-child { border-top: 1px solid var(--border-soft); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  text-align: left;
  background: none;
  border: none;
  padding: 1.35rem 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}
.faq-question svg { flex: none; width: 20px; height: 20px; color: var(--c-black); transition: transform var(--dur-base) var(--ease-hover); }
.faq-question[aria-expanded="true"] svg { transform: rotate(45deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--dur-base) var(--ease-out);
}
.faq-answer.is-open { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer p { padding: 0 0.25rem 1.35rem; font-size: 0.9375rem; color: var(--text-muted) !important; line-height: 1.6; max-width: 640px; }

/* =========================================================
   Stat band (indicative company figures, small reusable strip)
   ========================================================= */
.stat-band {
  margin-top: var(--sp-12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
  padding-top: var(--sp-10);
  border-top: 1px solid var(--border-soft);
}
@media (min-width: 780px) { .stat-band { grid-template-columns: repeat(4, 1fr); } }
.stat-band .stat strong {
  display: block;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.01em;
}
.stat-band .stat span { display: block; font-size: 0.875rem; color: var(--text-muted) !important; margin-top: 0.25rem; }

/* =========================================================
   Simple content grid (values / culture cards)
   ========================================================= */
.value-grid {
  margin-top: var(--sp-12);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) { .value-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .value-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  background: var(--c-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.value-card .icon-chip {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--c-mist);
  color: var(--c-black);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.value-card .icon-chip svg { width: 24px; height: 24px; }
.value-card h3 { font-size: 1.0625rem; font-weight: 800; }
.value-card p { margin-top: var(--sp-2); font-size: 0.9375rem; color: var(--text-muted) !important; line-height: 1.55; }
a.value-card { transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
a.value-card:hover { transform: translateY(-4px); box-shadow: 0 20px 32px rgba(0,0,0,0.08); }

/* =========================================================
   Open application / vacancy panel
   ========================================================= */
.open-app-panel {
  margin-top: var(--sp-12);
  background: var(--c-mist);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 780px) { .open-app-panel { grid-template-columns: 1.3fr 0.7fr; padding: var(--sp-10); } }
.open-app-panel h3 { font-size: 1.375rem; font-weight: 800; }
.open-app-panel > div { min-width: 0; }
.open-app-panel p { margin-top: var(--sp-3); color: var(--text-muted) !important; font-size: 0.9375rem; line-height: 1.6; max-width: 460px; }

/* =========================================================
   Contact page info cards
   ========================================================= */
.contact-info-grid {
  margin-top: var(--sp-10);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-4);
}
@media (min-width: 640px) { .contact-info-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-info-card {
  background: var(--c-mist);
  border-radius: var(--radius-md);
  padding: var(--sp-6);
}
.contact-info-card .icon-chip {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--c-black);
  color: var(--c-yellow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.contact-info-card .icon-chip svg { width: 22px; height: 22px; }
.contact-info-card h3 { font-size: 1rem; font-weight: 800; }
.contact-info-card p { margin-top: var(--sp-2); font-size: 0.9375rem; color: var(--text-muted) !important; line-height: 1.5; }
.contact-info-card a { color: var(--c-black); font-weight: 700; }

/* =========================================================
   Blog teaser grid
   ========================================================= */
.blog-grid {
  margin-top: var(--sp-12);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card {
  background: var(--c-white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 24px 40px rgba(0,0,0,0.09); }
.blog-card .blog-card-media {
  aspect-ratio: 16/10;
  background: var(--c-black);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card .blog-card-media svg { width: 34px; height: 34px; color: var(--c-yellow); }
.blog-card-body { padding: var(--sp-5); display: flex; flex-direction: column; gap: var(--sp-2); flex: 1; }
.blog-card .blog-tag { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--c-black); }
.blog-card h3 { font-size: 1.0625rem; font-weight: 800; line-height: 1.3; }
.blog-card p { font-size: 0.875rem; color: var(--text-muted) !important; line-height: 1.55; }
.blog-card .blog-meta { margin-top: auto; padding-top: var(--sp-3); font-size: 0.8125rem; color: var(--text-muted) !important; display: flex; align-items: center; gap: 0.4rem; }

/* =========================================================
   Two-col intro (icon-led feature list) used on service pages
   ========================================================= */
.feature-columns {
  margin-top: var(--sp-10);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);
}
@media (min-width: 640px) { .feature-columns { grid-template-columns: repeat(2, 1fr); } }
.feature-item { display: flex; gap: var(--sp-4); }
.feature-item .icon-chip {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 13px;
  background: var(--c-mist);
  color: var(--c-black);
  display: flex; align-items: center; justify-content: center;
}
.feature-item .icon-chip svg { width: 20px; height: 20px; }
.feature-item h3 { font-size: 1rem; font-weight: 800; }
.feature-item p { margin-top: 0.35rem; font-size: 0.9375rem; color: var(--text-muted) !important; line-height: 1.55; }

/* =========================================================
   Article body (blog posts)
   ========================================================= */
.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-4);
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6) !important;
  margin-top: var(--sp-5);
}
.article-meta span { display: flex; align-items: center; gap: 0.4rem; }
.article-meta svg { width: 15px; height: 15px; }

.article-body { max-width: 720px; margin-inline: auto; }
.article-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
}
.article-body > h2:first-child { margin-top: 0; }
.article-body p {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text-muted) !important;
  margin-bottom: var(--sp-5);
}
.article-body p.lede {
  font-size: 1.1875rem;
  color: var(--text-primary);
  line-height: 1.6;
}
.article-body strong { color: var(--text-primary); }
.article-body ul, .article-body ol {
  margin: var(--sp-5) 0 var(--sp-6);
  padding-left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.article-body li { font-size: 1.0625rem; line-height: 1.65; color: var(--text-muted) !important; padding-left: 0.3rem; }
.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li strong { color: var(--text-primary); }
.article-cta-inline {
  margin: var(--sp-8) 0;
  padding: var(--sp-6);
  background: var(--c-mist);
  border-radius: var(--radius-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.article-cta-inline p { margin: 0; font-weight: 700; color: var(--text-primary); font-size: 1rem; max-width: 420px; }
.article-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-10);
  padding-top: var(--sp-8);
  border-top: 1px solid var(--border-soft);
  max-width: 720px;
  margin-inline: auto;
}
.article-author .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-black);
  color: var(--c-yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.875rem;
}
.article-author strong { display: block; font-size: 0.9375rem; }
.article-author span { display: block; font-size: 0.8125rem; color: var(--text-muted) !important; }


/* Scoped fix: .section-heading (640px, left-aligned) immediately
   followed by .article-body (720px, centered) created a visible width/
   alignment mismatch between a section's heading and its own body text.
   Scoped via a dedicated modifier class (added only to sections built by
   the job-role/strategy page generator) so the site-wide .section-heading
   behaviour used elsewhere (e.g. homepage sections with a wider grid
   below a narrower heading) is untouched. */
.section-heading--body-align {
  max-width: 720px;
  margin-inline: auto;
}
