/* Supply Chain Career Quiz — quiz-styles.css
 * All classes prefixed scq- (Supply Chain Quiz)
 * No <style> tags — loaded via wp_enqueue_style()
 * ─────────────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════════════════════════════
   QUIZ INTRO SECTION
   ═══════════════════════════════════════════════════════════════ */

.scq-quiz-section {
  background: #f1f3f5;
  padding: 60px 24px 48px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
}
.scq-quiz-section-header {
  max-width: 680px;
  margin: 0 auto 32px;
  text-align: center;
}
.scq-quiz-section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #e63329;
  margin-bottom: 14px;
}
.scq-quiz-section-heading {
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .02em;
  color: #1c2341;
  margin: 0 0 16px;
  line-height: 1.15;
}
.scq-quiz-section-sub {
  font-size: 16px;
  color: #4a5568;
  line-height: 1.65;
  margin: 0 0 24px;
}
.scq-quiz-section-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.scq-quiz-section-pill {
  display: inline-block;
  background: #fff;
  border: 1.5px solid #d1d5db;
  border-radius: 9999px;
  font-size: 12px;
  font-weight: 600;
  color: #374151;
  padding: 5px 12px;
}

@media (max-width: 600px) {
  .scq-quiz-section { padding: 40px 16px 32px; }
  .scq-quiz-section-heading { font-size: 26px; }
}

/* ═══════════════════════════════════════════════════════════════
   QUIZ WIDGET
   ═══════════════════════════════════════════════════════════════ */

.scq-quiz-widget {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  max-width: 680px;
  margin: 0 auto 48px;
  padding: 0 16px;
  box-sizing: border-box;
}

.scq-quiz-inner {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.07), 0 10px 40px -8px rgba(0,0,0,.12);
  overflow: hidden;
  min-height: 320px;
}

/* Progress */
.scq-quiz-progress {
  padding: 20px 28px 0;
}
.scq-quiz-prog-track {
  height: 5px;
  background: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
}
.scq-quiz-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, #e63329, #c0392b);
  border-radius: 9999px;
  transition: width 0.35s ease;
}
.scq-quiz-prog-label {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 8px;
  text-align: right;
  letter-spacing: .03em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Question */
.scq-quiz-q-wrap {
  padding: 28px 28px 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.scq-quiz-q-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
}
.scq-quiz-q-text {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.45;
}

/* Options */
.scq-quiz-options {
  padding: 8px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.scq-quiz-opt {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  width: 100%;
  background: #f8fafc;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: left;
  transition: border-color .18s, background .18s, transform .12s, box-shadow .18s;
}
.scq-quiz-opt:hover {
  border-color: #e63329;
  background: #fef2f2;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(230,51,41,.13);
}
.scq-quiz-opt-selected {
  border-color: #e63329 !important;
  background: #fee2e2 !important;
}
.scq-quiz-opt-letter {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: #e2e8f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #64748b;
  transition: background .18s, color .18s;
  line-height: 1;
  padding-top: 1px;
  text-align: center;
}
.scq-quiz-opt:hover .scq-quiz-opt-letter {
  background: #e63329;
  color: #fff;
}
.scq-quiz-opt-text {
  font-size: 15px;
  color: #334155;
  line-height: 1.55;
  font-weight: 500;
}

/* Result view */
.scq-quiz-result-view {
  min-height: 400px;
}
.scq-quiz-result {
  overflow: hidden;
  border-radius: 16px;
}
.scq-quiz-result-top {
  padding: 32px 28px 24px;
  text-align: center;
  color: #fff;
}
.scq-quiz-result-badge {
  display: inline-block;
  background: rgba(255,255,255,.22);
  border: 1.5px solid rgba(255,255,255,.45);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  margin-bottom: 16px;
}
.scq-quiz-result-emoji {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 10px;
}
.scq-quiz-result-axes {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .82;
}
.scq-quiz-result-body {
  padding: 28px 28px 32px;
}
.scq-quiz-result-name {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}
.scq-quiz-result-tagline {
  margin: 0 0 14px;
  font-size: 16px;
  color: #334155;
  font-weight: 600;
  line-height: 1.55;
}
.scq-quiz-result-desc {
  margin: 0 0 24px;
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
}
.scq-quiz-result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.scq-quiz-cta-btn {
  display: inline-block;
  padding: 13px 24px;
  border-radius: 9999px;
  color: #fff !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none !important;
  transition: opacity .18s, transform .12s;
  border: none;
  cursor: pointer;
}
.scq-quiz-cta-btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}
.scq-quiz-retake-btn {
  background: none;
  border: 2px solid #cbd5e1;
  border-radius: 9999px;
  padding: 11px 22px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: border-color .18s, color .18s;
}
.scq-quiz-retake-btn:hover {
  border-color: #94a3b8;
  color: #334155;
}

/* ═══════════════════════════════════════════════════════════════
   GUIDE WRAPPER
   ═══════════════════════════════════════════════════════════════ */

.scq-guide {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  color: #1e293b;
  background: #f8fafc;
  width: 100%;
}
.scq-guide * { box-sizing: border-box; }

.scq-page-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   BRIDGE SECTION
   ═══════════════════════════════════════════════════════════════ */

.scq-bridge {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 55%, #0f2942 100%);
  padding: 64px 0;
  text-align: center;
}
.scq-bridge-inner {
  max-width: 760px;
}
.scq-bridge-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #e63329;
  margin-bottom: 16px;
}
.scq-bridge h2 {
  font-size: 32px;
  font-weight: 800;
  color: #f1f5f9;
  margin: 0 0 14px;
  line-height: 1.25;
}
.scq-bridge-sub {
  font-size: 16px;
  color: #94a3b8;
  margin: 0 0 32px;
  line-height: 1.6;
}
.scq-bridge-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
}
.scq-bridge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 9999px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  text-decoration: none !important;
  transition: background .18s, border-color .18s;
}
.scq-bridge-pill:hover {
  background: rgba(255,255,255,.15);
  border-color: rgba(255,255,255,.3);
}
.scq-bridge-cta {
  display: inline-block;
  background: #e63329;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 9999px;
  transition: background .18s, transform .12s;
}
.scq-bridge-cta:hover {
  background: #c0392b;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */

.scq-stats-bar {
  background: #0f172a;
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 32px 0;
}
.scq-stats-inner {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
  text-align: center;
}
.scq-stat-item {}
.scq-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: #e63329;
  line-height: 1;
  margin-bottom: 6px;
}
.scq-stat-label {
  font-size: 13px;
  color: #94a3b8;
  font-weight: 500;
  letter-spacing: .02em;
}

/* ═══════════════════════════════════════════════════════════════
   INTRO PROSE
   ═══════════════════════════════════════════════════════════════ */

.scq-intro-section {
  background: #fff;
  padding: 60px 0;
  border-bottom: 1px solid #e2e8f0;
}
.scq-intro-section p {
  font-size: 17px;
  line-height: 1.75;
  color: #334155;
  margin: 0 0 20px;
  max-width: 780px;
}
.scq-intro-section p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   QUICK-NAV BAR
   ═══════════════════════════════════════════════════════════════ */

.scq-quicknav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid #e2e8f0;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  padding: 12px 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.scq-quicknav-pills {
  display: flex;
  gap: 8px;
  min-width: max-content;
  justify-content: center;
}
.scq-qn-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 9999px;
  border: 2px solid var(--arch-color, #64748b);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none !important;
  color: var(--arch-color, #64748b) !important;
  transition: background .16s, color .16s, transform .12s;
  white-space: nowrap;
}
.scq-qn-pill:hover {
  background: var(--arch-color, #64748b);
  color: #fff !important;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION DIVIDERS  (Operational / Strategic)
   ═══════════════════════════════════════════════════════════════ */

.scq-section-divider {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 14px 0;
}
.scq-section-divider-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.scq-section-divider-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #64748b;
}
.scq-section-divider-line {
  flex: 1;
  height: 1px;
  background: #cbd5e1;
}

/* ═══════════════════════════════════════════════════════════════
   ARCHETYPE SECTION + CARD
   ═══════════════════════════════════════════════════════════════ */

.scq-archetype-section {
  padding: 56px 0;
  border-bottom: 1px solid #e2e8f0;
}
.scq-archetype-section:nth-child(even) {
  background: #fff;
}
.scq-archetype-section:nth-child(odd) {
  background: #f8fafc;
}

.scq-archetype-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 32px rgba(0,0,0,.07);
  overflow: hidden;
  border-top: 5px solid var(--arch-color, #0d9488);
}

/* Card header */
.scq-arch-header {
  padding: 32px 36px 24px;
  border-bottom: 1px solid #f1f5f9;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 16px 20px;
}
.scq-arch-icon-wrap {
  font-size: 48px;
  line-height: 1;
  flex-shrink: 0;
}
.scq-arch-header-text {
  flex: 1;
  min-width: 200px;
}
.scq-arch-key-badge {
  display: inline-block;
  background: var(--arch-color, #0d9488);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 5px;
  margin-bottom: 8px;
}
.scq-arch-name {
  font-size: 26px;
  font-weight: 800;
  color: var(--arch-color, #0d9488);
  margin: 0 0 8px;
  line-height: 1.2;
}
.scq-arch-tagline {
  margin: 0;
  font-size: 15px;
  color: #475569;
  font-style: italic;
  line-height: 1.55;
}

/* Description */
.scq-arch-description {
  padding: 24px 36px;
  margin: 0;
  font-size: 15px;
  color: #334155;
  line-height: 1.75;
  border-bottom: 1px solid #f1f5f9;
}

/* 2×2 info grid */
.scq-arch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #f1f5f9;
}
.scq-arch-grid-card {
  background: #fff;
  padding: 22px 28px;
}
.scq-arch-grid-card-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--arch-color, #0d9488);
  margin-bottom: 14px;
}

/* Career list */
.scq-arch-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.scq-arch-list li {
  font-size: 14px;
  color: #334155;
  padding: 5px 0;
  border-bottom: 1px solid #f1f5f9;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}
.scq-arch-list li:last-child { border-bottom: none; }
.scq-arch-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--arch-color, #0d9488);
  flex-shrink: 0;
}

/* Cert tags */
.scq-cert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.scq-cert-tag {
  display: inline-block;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: #334155;
  padding: 5px 10px;
}

/* Salary */
.scq-salary-main {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 4px;
}
.scq-salary-range {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  margin-bottom: 10px;
}
.scq-salary-note {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

/* Education */
.scq-edu-level {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.scq-edu-note {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   PROGRAMS SECTION
   ═══════════════════════════════════════════════════════════════ */

.scq-programs-section {
  padding: 28px 36px 32px;
  background: #f8fafc;
  border-top: 1px solid #f1f5f9;
}
.scq-programs-heading {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--arch-color, #0d9488);
  margin: 0 0 20px;
}
.scq-program-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}
.scq-program-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.scq-program-badge {
  display: inline-block;
  background: var(--arch-color, #0d9488);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  padding: 3px 8px;
  border-radius: 4px;
  align-self: flex-start;
}
.scq-program-school {
  font-size: 13px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.3;
}
.scq-program-degree {
  font-size: 13px;
  color: #475569;
  font-weight: 500;
  line-height: 1.4;
}
.scq-program-courses {
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}
.scq-program-courses li {
  font-size: 12px;
  color: #64748b;
  padding: 3px 0;
  display: flex;
  gap: 6px;
  line-height: 1.4;
}
.scq-program-courses li::before {
  content: '\2022';
  color: var(--arch-color, #0d9488);
  font-weight: 800;
  flex-shrink: 0;
}
.scq-program-why {
  font-size: 12px;
  color: #334155;
  font-style: italic;
  line-height: 1.5;
  border-top: 1px solid #f1f5f9;
  padding-top: 8px;
  margin-top: 4px;
}
.scq-program-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--arch-color, #0d9488);
  text-decoration: none !important;
  margin-top: auto;
  padding-top: 4px;
  transition: opacity .15s;
}
.scq-program-link:hover { opacity: .75; }
.scq-program-link::after { content: ' \2192'; }

/* ═══════════════════════════════════════════════════════════════
   BOTTOM CTA
   ═══════════════════════════════════════════════════════════════ */

.scq-bottom-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 60%, #0f2942 100%);
  padding: 72px 0;
  text-align: center;
}
.scq-bottom-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 24px;
}
.scq-bottom-cta h2 {
  font-size: 30px;
  font-weight: 800;
  color: #f1f5f9;
  margin: 0 0 14px;
  line-height: 1.3;
}
.scq-bottom-cta p {
  font-size: 16px;
  color: #94a3b8;
  margin: 0 0 32px;
  line-height: 1.65;
}
.scq-bottom-cta-btn {
  display: inline-block;
  background: #e63329;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 34px;
  border-radius: 9999px;
  transition: background .18s, transform .12s;
}
.scq-bottom-cta-btn:hover {
  background: #c0392b;
  transform: translateY(-1px);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  .scq-bridge h2 { font-size: 24px; }
  .scq-stats-inner { gap: 16px; }
  .scq-stat-num { font-size: 28px; }
  .scq-quicknav-pills { justify-content: flex-start; }
  .scq-arch-grid { grid-template-columns: 1fr; }
  .scq-arch-header { padding: 24px 20px 18px; }
  .scq-arch-description { padding: 18px 20px; }
  .scq-arch-grid-card { padding: 18px 20px; }
  .scq-programs-section { padding: 22px 20px 26px; }
  .scq-program-list { grid-template-columns: 1fr; }
  .scq-quiz-q-text { font-size: 17px; }
  .scq-quiz-options { padding: 8px 18px 26px; }
  .scq-quiz-q-wrap { padding: 22px 18px 14px; }
  .scq-quiz-progress { padding: 16px 18px 0; }
  .scq-bottom-cta h2 { font-size: 24px; }
}

@media (max-width: 480px) {
  .scq-quiz-result-name { font-size: 22px; }
  .scq-quiz-result-emoji { font-size: 44px; }
  .scq-quiz-result-actions { flex-direction: column; }
  .scq-quiz-cta-btn, .scq-quiz-retake-btn { width: 100%; text-align: center; }
  .scq-bridge-pills { gap: 7px; }
  .scq-bridge-pill { font-size: 12px; padding: 5px 10px; }
  .scq-arch-name { font-size: 22px; }
  .scq-arch-icon-wrap { font-size: 38px; }
  .scq-salary-main { font-size: 24px; }
}
