/* ============================================================
   HOME PAGE, local styles
   ============================================================
   Prefix: h-
   All structural primitives (hero, sections, cards, grids)
   use global ng-* classes from nguma-marketing.css.
   ============================================================ */

/* ===== Compliance gap table ===== */
.h-compliance-table {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  margin-top: 32px;
  font-family: var(--font-body);
  font-size: 14px;
}
.h-compliance-table th {
  padding: 12px 16px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 2px solid var(--border);
}
.h-compliance-table th:first-child { color: var(--ink-mid); }
.h-compliance-table td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--border-soft);
  line-height: 1.5;
  color: var(--ink-mid);
}
.h-compliance-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  width: 26%;
}
.h-compliance-table td:nth-child(2) { width: 37%; }
.h-compliance-table td:nth-child(3) { width: 37%; color: var(--ink); }
.h-compliance-table tr:last-child td { border-bottom: none; }
.h-compliance-table tr:hover td { background: rgba(2,51,102,0.02); }
.h-tag-fail {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #B91C1C;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
  margin-bottom: 4px;
}
.h-tag-pass {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #065F46;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
  margin-bottom: 4px;
}
.h-tag-warn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #92400E;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  border-radius: 4px;
  padding: 2px 7px;
  white-space: nowrap;
  margin-bottom: 4px;
}
@media (max-width: 768px) {
  .h-compliance-table { font-size: 13px; }
  .h-compliance-table th,
  .h-compliance-table td { padding: 10px 12px; }
  .h-compliance-table td:first-child { width: auto; }
}

/* Mobile: horizontal scroll — never stack or hide headers */
@media (max-width: 600px) {
  .h-compliance-table {
    min-width: 520px;
    font-size: 13px;
  }
  .h-compliance-table th,
  .h-compliance-table td {
    padding: 10px 10px;
  }
}

/* ===== Two product lines section ===== */
.h-product-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: 40px;
}
.h-product-col {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.h-product-col--interview { background: var(--navy); }
.h-product-col--transcription { background: var(--navy-mid); }
.h-product-col__eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.h-product-col__headline {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}
.h-product-col__body {
  font-size: 14px;
  color: rgba(255,255,255,0.70);
  line-height: 1.65;
  margin: 0;
}
.h-product-col__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
}
.h-product-col__list li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.45;
}
.h-product-col__list li svg {
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}
.h-product-col__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  margin-top: auto;
  padding-top: 8px;
  transition: gap var(--transition);
}
.h-product-col__link:hover { gap: 10px; }
.h-product-unifier {
  background: rgba(169,201,182,0.10);
  border: 1px solid rgba(169,201,182,0.25);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 13px;
  color: #023366;
  text-align: center;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .h-product-split { grid-template-columns: 1fr; }
  .h-product-col { padding: 32px 24px; }
}

/* ===== Audience cards ===== */
.h-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.h-audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
  text-decoration: none;
  position: relative;
}
.h-audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--navy);
}
.h-audience-card__type {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
}
.h-audience-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.h-audience-card__icon--interview { background: rgba(2,51,102,0.08); color: var(--navy); }
.h-audience-card__icon--transcription { background: rgba(169,201,182,0.15); color: var(--teal-deep); }
.h-audience-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
  margin: 0;
}
.h-audience-card__body {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0;
  flex: 1;
}
.h-audience-card__obligation {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: 4px;
  padding: 4px 8px;
  display: inline-block;
  margin-top: 4px;
}
.h-audience-card__cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 4px;
}
.h-audience-card:hover .h-audience-card__cta { gap: 10px; }
.h-audience-card__cta svg { transition: transform var(--transition); }
@media (max-width: 900px) {
  .h-audience-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .h-audience-grid { grid-template-columns: 1fr; }
}

/* ===== Indigenous procurement section ===== */
.h-procurement {
  background: var(--navy-deep);
  padding: 80px 0 88px;
}
.h-procurement__head {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}
.h-procurement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.h-proc-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.h-proc-card__jurisdiction {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
}
.h-proc-card__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.25;
  margin: 0;
}
.h-proc-card__body {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}
.h-procurement-certifications {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.10);
}
.h-cert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
}
.h-cert svg { color: var(--teal); flex-shrink: 0; }
@media (max-width: 900px) {
  .h-procurement-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .h-procurement-grid { grid-template-columns: 1fr; }
  .h-procurement { padding: 56px 0 64px; }
}

/* ===== How it works steps ===== */
.h-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  position: relative;
}
.h-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 1px;
  background: var(--border);
  z-index: 0;
}
.h-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 20px 0;
  position: relative;
  z-index: 1;
}
.h-step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.h-step__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}
.h-step__body {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .h-steps { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .h-steps::before { display: none; }
}
@media (max-width: 480px) {
  .h-steps { grid-template-columns: 1fr; }
}

/* ===== Compliance framework table ===== */
.h-framework-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 32px;
  font-size: 14px;
  font-family: var(--font-body);
}
.h-framework-table th {
  text-align: left;
  padding: 10px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-light);
  border-bottom: 2px solid var(--border);
}
.h-framework-table td {
  padding: 14px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--border-soft);
  color: var(--ink-mid);
  line-height: 1.55;
}
.h-framework-table td:first-child {
  font-weight: 700;
  color: var(--navy);
  font-size: 13px;
  white-space: nowrap;
  width: 22%;
}
.h-framework-table td:nth-child(2) {
  color: var(--ink);
  width: 30%;
}
.h-framework-table td:last-child { width: 48%; }
.h-framework-table tr:last-child td { border-bottom: none; }
.h-framework-table tr:hover td { background: rgba(2,51,102,0.02); }
@media (max-width: 768px) {
  .h-framework-table td:first-child { white-space: normal; width: auto; }
  .h-framework-table th:nth-child(2),
  .h-framework-table td:nth-child(2) { display: none; }
}

/* ===== Team section ===== */
.h-team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.h-team-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.h-team-card__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  display: block;
}
.h-team-card__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
}
.h-team-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: -8px 0 0;
}
.h-team-card__bio {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.65;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.h-team-card__bio span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.h-team-card__bio svg { color: var(--teal-deep); flex-shrink: 0; margin-top: 2px; }
@media (max-width: 768px) {
  .h-team-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
}

/* ===== Hero trust strip ===== */
.h-trust-strip {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.h-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}
.h-trust-item svg { color: var(--teal); flex-shrink: 0; }
.h-trust-item--highlight { color: var(--teal); }


/* ===== "Today, without Nguma" comparison cards, above h-product-unifier ===== */
.h-today {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 32px;
  position: relative;
}
.h-today__card {
  background: var(--gold-pale);
  border: 1px solid rgba(192, 69, 17, 0.18);
  border-radius: var(--radius-md);
  padding: 20px 24px;
}
.h-today__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.h-today__body {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-mid);
}
@media (max-width: 768px) {
  .h-today { grid-template-columns: 1fr; }
}


/* ===== Right-facing progress chevrons: between step numbers, and between the two "Today, without Nguma" cards ===== */
.h-step-chevron {
  position: absolute;
  top: 28px;
  transform: translate(-50%, -50%);
  color: var(--gold);
  z-index: 2;
  line-height: 0;
}
.h-step-chevron--1 { left: 25%; }
.h-step-chevron--2 { left: 50%; }
.h-step-chevron--3 { left: 75%; }
.h-today__chevron {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  z-index: 2;
  line-height: 0;
}
@media (max-width: 768px) {
  .h-step-chevron { display: none; }
  .h-today__chevron { transform: translate(-50%, -50%) rotate(90deg); }
}
