/* ==========================================================================
   Qualix Academy — Design System
   Palette drawn from the brand mark: deep navy + kaizen green.
   Signature motif: the shop-floor inspection tag (die-cut corner + punch
   hole) used as an eyebrow/badge shape, and the DMAIC process strip —
   both borrowed directly from Lean/Six Sigma visual-management practice.
   ========================================================================== */

:root {
  /* Color tokens */
  --navy-900: #041B30;
  --navy-800: #0A2A47;
  --navy-700: #123A5E;
  --green-500: #8DC63F;
  --green-600: #71A82C;
  --green-100: #EEF6DE;
  --amber-500: #F2A71B;
  --paper-0: #FBFBF8;
  --paper-50: #F4F5EF;
  --paper-100: #ECEEE4;
  --ink-900: #14212E;
  --ink-700: #33454F;
  --steel-500: #5C6B72;
  --steel-300: #A7B2B6;
  --line: #DCDFD4;
  --white: #FFFFFF;

  /* Type */
  --font-display: "Archivo", "Arial Narrow", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", "Courier New", monospace;

  /* Layout */
  --max-w: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --shadow-card: 0 1px 2px rgba(4,27,48,0.06), 0 8px 24px -12px rgba(4,27,48,0.18);
  --shadow-card-hover: 0 4px 8px rgba(4,27,48,0.08), 0 16px 40px -16px rgba(4,27,48,0.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink-900);
  background: var(--paper-0);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
svg { width: 20px; height: 20px; flex-shrink: 0; }
.icon-box svg { width: 26px; height: 26px; color: var(--green-600); }
.tag-eyebrow svg, .tag-eyebrow::before ~ svg { width: 14px; height: 14px; }
.card-link svg { width: 14px; height: 14px; }
.person-highlights svg, li svg { width: 15px; height: 15px; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); color: var(--navy-900); font-weight: 800; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }

:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--navy-900); color: var(--white); padding: 12px 20px;
  border-radius: 0 0 6px 0; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* ---------- Eyebrow / Tag motif ---------- */
/* Modeled on a physical inspection/kaizen tag: a die-cut corner and a
   punch hole. Used to mark section labels and category badges throughout. */
.tag-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-600);
}
.tag-eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px var(--green-100);
  flex-shrink: 0;
}
.tag-eyebrow.on-dark { color: var(--green-500); }
.tag-eyebrow.on-dark::before { box-shadow: 0 0 0 3px rgba(141,198,63,0.18); }

.tag-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--navy-800);
  background: var(--paper-50);
  border: 1px solid var(--line);
  padding: 5px 12px 5px 20px;
  clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%);
}
.tag-chip::after {
  content: "";
  position: absolute;
  left: 5px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--steel-300);
}
.tag-chip.solid {
  background: var(--green-500); border-color: var(--green-600); color: var(--navy-900);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green-500);
  color: var(--navy-900);
  border-color: var(--green-500);
}
.btn-primary:hover { background: var(--green-600); border-color: var(--green-600); transform: translateY(-2px); box-shadow: 0 10px 20px -8px rgba(113,168,44,0.55); }
.btn-outline-dark {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline-dark:hover { border-color: var(--green-500); color: var(--green-500); transform: translateY(-2px); }
.btn-outline-light {
  border-color: var(--navy-900);
  color: var(--navy-900);
}
.btn-outline-light:hover { background: var(--navy-900); color: var(--white); transform: translateY(-2px); }
.btn-sm { padding: 10px 18px; font-size: 12px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,251,248,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 54px; width: auto; }

.main-nav { display: none; }
.main-nav ul { display: flex; align-items: center; gap: 4px; }
.main-nav a, .main-nav button.nav-link {
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  color: var(--navy-800);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: none; border: none;
}
.main-nav a:hover, .main-nav button.nav-link:hover { color: var(--green-600); }
.main-nav a[aria-current="page"] { color: var(--green-600); }

.has-dropdown { position: relative; }
.dropdown-panel {
  display: none;
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  min-width: 230px;
  padding: 8px;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a {
  display: block; padding: 10px 12px; border-radius: 6px; font-size: 13px;
  color: var(--ink-700); font-weight: 600;
}
.dropdown-panel a:hover { background: var(--paper-50); color: var(--green-600); }
.dropdown-panel .dd-desc { display: block; font-family: var(--font-body); font-weight: 400; font-size: 11.5px; color: var(--steel-500); margin-top: 2px; }

.nav-cta { display: none; }

.nav-toggle {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white);
}
.nav-toggle svg { width: 20px; height: 20px; }

.mobile-nav {
  display: none;
  position: fixed; inset: 84px 0 0 0; z-index: 99;
  background: var(--paper-0);
  overflow-y: auto;
  padding: 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav > .wrap { padding: 0; }
.mobile-nav a, .mobile-nav .m-group-label {
  display: block; padding: 14px 16px; font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy-800);
  border-bottom: 1px solid var(--line);
}
.mobile-nav .m-sub a { padding-left: 30px; font-size: 14px; font-weight: 600; color: var(--ink-700); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 20px; }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--navy-900);
  background-image:
    radial-gradient(ellipse 900px 500px at 85% -10%, rgba(141,198,63,0.16), transparent 60%),
    radial-gradient(ellipse 700px 500px at -10% 110%, rgba(18,58,94,0.6), transparent 60%);
  overflow: hidden;
  padding: 72px 0 88px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.hero .wrap { position: relative; }
.hero-grid {
  display: grid;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 64px; }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.3rem, 5vw, 3.6rem);
  line-height: 1.04;
  margin-top: 18px;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: normal; color: var(--green-500); }
.hero-lede {
  color: rgba(255,255,255,0.72);
  font-size: 1.08rem;
  max-width: 44ch;
  margin-top: 20px;
  line-height: 1.65;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 36px; }
.hero-trust-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.55); font-size: 12.5px; font-weight: 600; }
.hero-trust-item svg { width: 16px; height: 16px; color: var(--green-500); flex-shrink: 0; }

.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(6px);
}
.hero-panel-head { display: flex; align-items: center; gap: 12px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hero-panel-head img { height: 34px; width: auto; }
.hero-panel-head p { font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.5); font-weight: 700; }
.hero-panel-head strong { display: block; color: var(--white); font-size: 14px; font-family: var(--font-display); margin-top: 2px; }

.stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.stat-card { background: rgba(255,255,255,0.045); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 16px; text-align: center; }
.stat-card .num { font-family: var(--font-mono); font-size: 1.8rem; font-weight: 700; color: var(--green-500); }
.stat-card .lbl { font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: rgba(255,255,255,0.55); margin-top: 4px; font-weight: 600; }

.hero-panel-links { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.hero-panel-links a { display: flex; align-items: center; justify-content: space-between; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 6px; padding: 12px 14px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.8); }
.hero-panel-links a:hover { border-color: var(--green-500); color: var(--white); }
.hero-panel-links svg { width: 15px; height: 15px; color: var(--green-500); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  background: var(--navy-900);
  padding: 60px 0 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}
.page-hero .wrap { position: relative; }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 2.9rem); margin-top: 16px; letter-spacing: -0.02em; }
.page-hero p { color: rgba(255,255,255,0.68); max-width: 62ch; margin-top: 16px; font-size: 1.02rem; line-height: 1.65; }
.breadcrumb { display: flex; gap: 8px; align-items: center; font-size: 12px; color: rgba(255,255,255,0.45); font-family: var(--font-mono); margin-bottom: 4px; }
.breadcrumb a:hover { color: var(--green-500); }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }
.section-tight { padding: 56px 0; }
.section-alt { background: var(--paper-50); }
.section-navy { background: var(--navy-900); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--white); }

.section-head { max-width: 680px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-top: 14px; letter-spacing: -0.015em; }
.section-head p { color: var(--steel-500); margin-top: 14px; font-size: 1.02rem; line-height: 1.65; }
.section-navy .section-head p { color: rgba(255,255,255,0.65); }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 24px; }
@media (min-width: 540px) and (max-width: 719px) { .card-grid.cols-3, .card-grid.cols-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 720px) { .card-grid.cols-2 { grid-template-columns: 1fr 1fr; } .card-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color .2s ease;
  position: relative;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); border-color: rgba(141,198,63,0.4); }
.card .icon-box {
  width: 52px; height: 52px; border-radius: 8px;
  background: var(--green-100);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.card .icon-box svg { width: 26px; height: 26px; color: var(--green-600); }
.card h3 { font-size: 1.2rem; margin-top: 2px; }
.card p.desc { margin-top: 10px; color: var(--steel-500); font-size: 0.94rem; line-height: 1.6; }
.card .card-link { margin-top: 18px; display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 700; font-size: 12.5px; text-transform: uppercase; color: var(--green-600); }
.card .card-link svg { width: 14px; height: 14px; }
.badge-popular {
  position: absolute; top: 22px; right: 22px;
  background: var(--navy-900); color: var(--green-500);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 3px;
}

/* Program card (training programs — larger, with footer meta) */
.program-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-card); position: relative; }
.program-card-body { padding: 32px; }
.program-card-top { display: flex; align-items: flex-start; gap: 18px; }
.program-card-top .icon-box { width: 56px; height: 56px; flex-shrink: 0; margin-bottom: 0; }
.program-card h3 { font-size: 1.35rem; }
.program-card .subtitle { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green-600); font-weight: 700; margin-top: 3px; }
.program-card .desc { margin-top: 16px; }
.program-card-meta { display: flex; gap: 18px; margin-top: 14px; flex-wrap: wrap; }
.program-card-meta span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--steel-500); font-weight: 600; }
.program-card-meta svg { width: 14px; height: 14px; color: var(--green-600); }
.program-card-foot { background: var(--paper-50); border-top: 1px solid var(--line); padding: 22px 32px; }
.program-card-foot h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--steel-500); font-weight: 700; }
.program-card-foot ul { margin-top: 12px; display: flex; flex-direction: column; gap: 9px; }
.program-card-foot li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; color: var(--ink-700); }
.program-card-foot svg { width: 15px; height: 15px; color: var(--green-600); flex-shrink: 0; margin-top: 2px; }

@media (min-width: 860px) {
  .program-card { display: grid; grid-template-columns: 1.5fr 1fr; }
  .program-card-foot { border-top: none; border-left: 1px solid var(--line); }
}

/* ---------- DMAIC strip (signature element) ---------- */
.dmaic-strip { display: grid; gap: 2px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md); overflow: hidden; }
@media (min-width: 760px) { .dmaic-strip { grid-template-columns: repeat(5, 1fr); } }
.dmaic-step { background: var(--white); padding: 26px 20px; text-align: left; }
.dmaic-step .letter { font-family: var(--font-mono); font-size: 2rem; font-weight: 700; color: var(--green-500); line-height: 1; }
.dmaic-step .word { font-family: var(--font-display); font-weight: 800; margin-top: 10px; font-size: 1.02rem; color: var(--navy-900); }
.dmaic-step .desc { margin-top: 6px; font-size: 12.5px; color: var(--steel-500); line-height: 1.5; }

/* ---------- Vision / Mission ---------- */
.vm-grid { display: grid; gap: 24px; }
@media (min-width: 720px) { .vm-grid { grid-template-columns: 1fr 1fr; } }
.vm-card { border: 1px solid rgba(255,255,255,0.14); background: rgba(255,255,255,0.04); border-radius: var(--radius-md); padding: 34px; }
.vm-card .icon-box { background: rgba(141,198,63,0.14); }
.vm-card .icon-box svg { color: var(--green-500); }
.vm-card h3 { color: var(--white); margin-top: 16px; font-size: 1.3rem; }
.vm-card p { color: rgba(255,255,255,0.68); margin-top: 12px; line-height: 1.65; }

/* ---------- Credential strip (Mentor + Accreditation) ---------- */
.credential-strip { display: grid; gap: 20px; }
@media (min-width: 760px) { .credential-strip { grid-template-columns: 1fr 1fr; } }
.credential-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 26px;
}
.credential-logo {
  flex-shrink: 0; height: 92px; min-width: 92px; max-width: 220px;
  border-radius: 8px; background: var(--white); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; padding: 10px;
}
.credential-logo img { max-height: 100%; max-width: 100%; object-fit: contain; display: block; }
.credential-logo.sm { height: 56px; min-width: 56px; max-width: 160px; padding: 6px; border-radius: 6px; }
.credential-card h4 { font-size: 1.05rem; }
.credential-card .role { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--green-600); font-weight: 700; margin-top: 2px; }
.credential-card p.body-text { margin-top: 10px; font-size: 13.5px; color: var(--steel-500); line-height: 1.6; }

/* ---------- People (Leadership / Advisory) ---------- */
.person-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-card);
}
@media (min-width: 760px) {
  .person-card { display: grid; grid-template-columns: 260px 1fr; }
}
.person-photo { position: relative; background: var(--paper-100); }
.person-photo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
.person-photo .role-tag {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--navy-900); color: var(--green-500);
  font-family: var(--font-mono); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 5px 10px; border-radius: 3px;
}
.person-body { padding: 30px 32px; }
.person-body h3 { font-size: 1.4rem; }
.person-body .role { font-family: var(--font-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--green-600); font-weight: 700; margin-top: 4px; }
.person-body .org { font-size: 13px; color: var(--steel-500); margin-top: 2px; }
.person-body .bio { margin-top: 16px; font-size: 14.5px; line-height: 1.7; color: var(--ink-700); }
.person-body .bio + .bio { margin-top: 12px; }
.person-highlights { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.person-highlights li { font-family: var(--font-mono); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; background: var(--paper-50); border: 1px solid var(--line); padding: 6px 11px; border-radius: 4px; color: var(--navy-800); }

.person-stack { display: flex; flex-direction: column; gap: 28px; }

/* Compact avatar-style card for smaller mentions (e.g. advisory board summary on home) */
.mini-person { display: flex; align-items: center; gap: 14px; }
.mini-person img { width: 58px; height: 58px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-500); }
.mini-person .name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--navy-900); }
.mini-person .role { font-size: 12px; color: var(--steel-500); margin-top: 1px; }

.person-preview-grid { display: grid; gap: 16px; }
@media (min-width: 540px) and (max-width: 899px) { .person-preview-grid.cols-3, .person-preview-grid.cols-4 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 760px) { .person-preview-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .person-preview-grid.cols-4 { grid-template-columns: repeat(4, 1fr); } }
.person-preview-card {
  background: var(--white); border-radius: var(--radius-md); padding: 20px;
  display: flex; align-items: center; gap: 14px; box-shadow: var(--shadow-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.person-preview-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card-hover); }
.person-preview-card img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-500); flex-shrink: 0; }
.person-preview-card .name { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--navy-900); }
.person-preview-card .role { font-size: 11.5px; color: var(--steel-500); margin-top: 3px; line-height: 1.45; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--navy-900);
  border-radius: var(--radius-md);
  padding: 52px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 500px 300px at 90% 0%, rgba(141,198,63,0.18), transparent 70%);
}
.cta-band > * { position: relative; }
.cta-band h2 { color: var(--white); font-size: clamp(1.5rem, 3vw, 2rem); max-width: 32ch; }
.cta-band p { color: rgba(255,255,255,0.65); margin-top: 10px; max-width: 42ch; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Testimonial / quote (optional use) ---------- */
.quote-card { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--green-500); border-radius: var(--radius-sm); padding: 26px 28px; }
.quote-card p { font-size: 15px; color: var(--ink-700); line-height: 1.7; font-style: italic; }
.quote-card .attr { margin-top: 14px; font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--navy-900); font-style: normal; }
.quote-card .attr span { display: block; font-family: var(--font-body); font-weight: 400; font-size: 12px; color: var(--steel-500); margin-top: 1px; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; gap: 24px; }
@media (min-width: 860px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 30px; box-shadow: var(--shadow-card); position: relative;
  display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-hover); }
.testimonial-stars { display: flex; gap: 3px; color: var(--amber-500); }
.testimonial-stars svg { width: 15px; height: 15px; }
.testimonial-quote-mark { color: var(--green-100); margin-top: 6px; }
.testimonial-quote-mark svg { width: 30px; height: 30px; }
.testimonial-text { margin-top: 6px; font-size: 14.5px; color: var(--ink-700); line-height: 1.7; flex-grow: 1; }
.testimonial-person { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-person img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--green-500); flex-shrink: 0; }
.testimonial-person .name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--navy-900); }
.testimonial-person .cred { font-size: 11.5px; color: var(--steel-500); margin-top: 2px; line-height: 1.4; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; }
@media (min-width: 620px) { .form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; } }
.field label { display: block; font-size: 12.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--navy-800); margin-bottom: 7px; font-family: var(--font-display); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  background: var(--white); color: var(--ink-900);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green-500); outline: none; box-shadow: 0 0 0 3px rgba(141,198,63,0.22);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12px; color: var(--steel-500); margin-top: 4px; }
.form-status { margin-top: 16px; padding: 12px 16px; border-radius: 6px; font-size: 13.5px; font-weight: 600; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--green-100); color: var(--green-600); border: 1px solid rgba(141,198,63,0.4); }
.form-status.err { background: #FCEBEA; color: #B3261E; border: 1px solid #F3C0BC; }

/* ---------- Contact info list ---------- */
.info-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .icon-box { width: 46px; height: 46px; margin-bottom: 0; flex-shrink: 0; }
.info-item .lbl { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--steel-500); font-weight: 700; }
.info-item .val { margin-top: 3px; font-weight: 600; color: var(--navy-900); font-size: 14.5px; }
.info-item .val a:hover { color: var(--green-600); }

.office-grid { display: grid; gap: 16px; margin-top: 28px; }
@media (min-width: 620px) { .office-grid { grid-template-columns: 1fr 1fr; } }
.office-card { border: 1px solid var(--line); background: var(--white); border-radius: var(--radius-sm); padding: 20px; }
.office-card h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--green-600); font-weight: 700; }
.office-card p { margin-top: 10px; font-size: 13px; color: var(--steel-500); line-height: 1.6; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,0.6); padding: 64px 0 0; }
.footer-grid { display: grid; gap: 40px; }
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.3fr 1fr 1fr 1.2fr; } }
.footer-brand img { height: 56px; background: var(--white); border-radius: 8px; padding: 8px 14px; }
.footer-brand p { margin-top: 16px; font-size: 13.5px; line-height: 1.65; max-width: 32ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.14); border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.footer-social a:hover { border-color: var(--green-500); color: var(--green-500); }
.footer-social svg { width: 16px; height: 16px; }
.site-footer h5 { color: var(--white); font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a:hover { color: var(--green-500); }
.footer-links li { font-size: 13.5px; }
.footer-contact li { font-size: 13.5px; margin-bottom: 14px; line-height: 1.55; }
.footer-bottom { margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12.5px; }
.footer-mentor-strip { display: flex; align-items: center; gap: 10px; font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.footer-mentor-strip .m-badge { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); padding: 6px 12px; border-radius: 4px; color: rgba(255,255,255,0.7); }

/* ---------- Misc utility ---------- */
.mt-0 { margin-top: 0 !important; }
.text-center { text-align: center; }
.eyebrow-on-white { color: var(--green-600); }


