/* ---------------------------------------------------------------------
   Training & Courses page — page-scoped styles only.
   Loaded after site.css on /training. Uses existing design tokens.
   --------------------------------------------------------------------- */

/* Hero -------------------------------------------------------------- */
.trn-hero .eyebrow { margin-bottom: 14px; }
.trn-hero .btn-row { margin-top: 30px; }

.trn-flow {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 6px;
}
.trn-flow li {
  font-family: var(--ff-display);
  font-size: clamp(12px, 1.4vw, 13px);
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--on-dark-soft, rgba(255,255,255,.72));
  border: 1px solid var(--on-dark-line, rgba(255,255,255,.14));
  border-radius: 999px;
  padding: 8px 16px;
}
.trn-flow li + li::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: .5;
  margin-right: 12px;
  vertical-align: middle;
}
.trn-flow li:last-child {
  color: var(--gold-400);
  border-color: var(--gold-500);
}

/* Course cards ------------------------------------------------------- */
.trn-courses {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 44px;
}
.trn-course {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px 34px;
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
@media (hover: hover) {
  .trn-course:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2);
    border-color: var(--gold-400);
  }
}
@media (prefers-reduced-motion: reduce) {
  .trn-course { transition: none; }
  .trn-course:hover { transform: none; }
}
.trn-course-num {
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold-600);
  margin: 0 0 14px;
}
.trn-course h3 { margin: 0 0 12px; }
.trn-course > p { color: var(--body); margin: 0; }
.trn-course-sub {
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 26px 0 12px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}
.trn-course .tick-list { margin-top: 0; }

/* Fees --------------------------------------------------------------- */
.trn-fees {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
  margin-top: 44px;
  align-items: start;
}
.trn-fee {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px 30px 36px;
  box-shadow: var(--shadow-1);
}
.trn-fee--feature {
  background: var(--navy-900);
  border-color: var(--navy-700);
  color: var(--on-dark);
  box-shadow: var(--shadow-2);
}
.trn-fee--feature h3,
.trn-fee--feature p { color: var(--on-dark); }
.trn-fee--feature .tick-list li { color: var(--on-dark-soft); }
.trn-fee-flag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy-900) !important;
  background: var(--gold-500);
  border-radius: 999px;
  padding: 7px 15px;
  margin: 0 0 20px;
}
.trn-price { margin: 16px 0 18px; }
.trn-price-val {
  display: block;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: clamp(38px, 6vw, 56px);
  line-height: 1.05;
  letter-spacing: -.02em;
}
.trn-fee--feature .trn-price-val { color: var(--gold-400) !important; }
.trn-price-unit {
  display: block;
  margin-top: 8px;
  font-family: var(--ff-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}
.trn-fee--feature .trn-price-unit { color: var(--on-dark-soft) !important; }
.trn-fee .tick-list { margin-top: 22px; }
.trn-fee-cta { margin: 28px 0 0 !important; }

@media (max-width: 820px) {
  .trn-fees { grid-template-columns: 1fr; }
}

/* Placement / notes --------------------------------------------------- */
.trn-note {
  max-width: 68ch;
  margin-top: 26px;
  font-size: 15px;
  color: var(--muted);
}
.section--dark .trn-note { color: var(--on-dark-soft); }
.section--dark .trn-note a,
.cta .trn-note a { color: inherit; }

/* FAQ ----------------------------------------------------------------- */
.trn-faq {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 18px;
  margin-top: 44px;
}
.trn-faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 26px 28px;
}
.trn-faq-item h3 { margin: 0 0 10px; }
.trn-faq-item p { margin: 0; color: var(--body); }

/* CTA ----------------------------------------------------------------- */
.cta .trn-note { margin-top: 22px; }

@media (max-width: 560px) {
  .trn-course { padding: 26px 22px 28px; }
  .trn-fee { padding: 28px 22px 30px; }
  .trn-flow li + li::before { width: 10px; margin-right: 8px; }
}

/* Tick-list inside cards: single column, and softer rules on navy */
.trn-course .tick-list,
.trn-fee .tick-list { grid-template-columns: 1fr; }
.trn-fee--feature .tick-list li { border-bottom-color: var(--on-dark-line); }
