/* ===========================================================
   FOR INDIVIDUALS  (certifications.html)
   Reuses tokens + .section / .sec-head / .btn / .label /
   .closing / .footer from home.css.
   =========================================================== */

/* ── hero ── */
.ct-hero { padding: clamp(64px, 9vh, 110px) 0 clamp(48px, 7vh, 72px); }
.ct-hero h1 { font-size: clamp(30px, 4.2vw, 50px); letter-spacing: -0.03em; line-height: 1.1; margin-top: 16px; max-width: 18ch; }
.ct-lead { max-width: 54ch; margin-top: 18px; font-size: clamp(16px, 1.4vw, 18.5px); line-height: 1.6; color: var(--text); }
.ct-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* ── shared section spacing ── */
.ct-sec { padding: clamp(64px, 9vh, 110px) 0; }
.ct-sec.section--soft { padding: clamp(64px, 9vh, 110px) 0; }

/* ── levels (who it's for) ── */
.ct-levels { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 40px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.ct-level-card { background: #fff; padding: 32px 28px; display: flex; flex-direction: column; gap: 6px; }
.ct-lv-tag { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.ct-lv-name { font-size: 22px; font-weight: 800; letter-spacing: -0.02em; margin-top: 2px; }
.ct-lv-for { font-size: 15px; color: var(--text); line-height: 1.5; margin-top: 4px; }
.ct-lv-focus { font-size: 14px; color: var(--muted); line-height: 1.55; flex: 1; margin-top: 4px; }
.ct-lv-link { margin-top: 16px; font-size: 14px; }

/* ── credible (why it's credible) ── */
.ct-cred-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 40px; }
.ct-cred-card { display: flex; flex-direction: column; gap: 8px; }
.ct-cred-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 10px; background: var(--accent-tint); color: var(--accent-strong); flex-shrink: 0; }
.ct-cred-icon svg { stroke-width: 1.6; }
.ct-cred-card h3 { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; margin-top: 4px; }
.ct-cred-card p { font-size: 14.5px; color: var(--text); line-height: 1.6; flex: 1; }
.ct-cred-card .arrowlink { margin-top: 8px; font-size: 14px; }

/* ── how it works — four steps ── */
.ct-steps { list-style: none; padding: 0; margin: 40px 0 0; display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.ct-step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.ct-step:first-child { border-top: 1px solid var(--line); }
.ct-step-n { font-size: 13px; font-weight: 700; letter-spacing: .08em; color: var(--accent-strong); font-variant-numeric: tabular-nums; flex-shrink: 0; width: 28px; padding-top: 3px; }
.ct-step-title { font-size: 17px; font-weight: 700; letter-spacing: -0.01em; }
.ct-step-text { font-size: 15px; color: var(--text); line-height: 1.6; margin-top: 4px; max-width: 56ch; }

/* ── recognition (neutral entry) ── */
.ct-recog { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 36px 32px; background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); }
.ct-recog h2 { font-size: clamp(20px, 2.4vw, 26px); letter-spacing: -0.02em; margin-top: 12px; }
.ct-recog-text { font-size: 15px; color: var(--text); line-height: 1.6; margin-top: 10px; max-width: 52ch; }
.ct-recog .btn { flex-shrink: 0; white-space: nowrap; }

/* ── responsive ── */
@media (max-width: 900px) {
  .ct-levels { grid-template-columns: 1fr; }
  .ct-cred-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 640px) {
  .ct-recog { flex-direction: column; align-items: flex-start; }
  .ct-recog .btn { align-self: flex-start; }
  .ct-step { gap: 16px; }
}
@media (max-width: 460px) {
  .ct-hero-cta { flex-direction: column; }
  .ct-hero-cta .btn { width: 100%; }
}
