/* ============================================================
   Rise Manpower Services — Main Stylesheet
   Design: Fresh Blue & White Corporate
   ============================================================ */

:root {
  --rise-blue:        #0d4f8c;
  --rise-blue-mid:    #1565c0;
  --rise-blue-light:  #e8f0fe;
  --rise-accent:      #f59e0b;   /* amber/gold accent */
  --rise-dark:        #1a1a2e;
  --rise-gray:        #f4f6f9;
  --body-font:        'Inter', sans-serif;
  --heading-font:     'Poppins', sans-serif;
  --border-radius:    10px;
  --shadow-sm:        0 2px 8px rgba(0,0,0,.06);
  --shadow-md:        0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:        0 8px 40px rgba(0,0,0,.14);
}

/* ─── Base ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--body-font);
  color: #2d3748;
  background: #ffffff;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--rise-dark);
}

a { color: var(--rise-blue); transition: color .2s; }
a:hover { color: var(--rise-blue-mid); }

img { max-width: 100%; height: auto; }

/* ─── Bootstrap overrides ──────────────────────────────────── */
.bg-primary  { background-color: var(--rise-blue) !important; }
.btn-primary { background-color: var(--rise-blue); border-color: var(--rise-blue); }
.btn-primary:hover { background-color: var(--rise-blue-mid); border-color: var(--rise-blue-mid); }
.text-primary { color: var(--rise-blue) !important; }
.border-primary { border-color: var(--rise-blue) !important; }

/* ─── Top Bar ──────────────────────────────────────────────── */
.topbar { background: var(--rise-dark); font-size: .82rem; }
.topbar a:hover { color: #fff !important; }

/* ─── Navbar ───────────────────────────────────────────────── */
.navbar { min-height: 68px; }
.navbar-brand { gap: .5rem; }
.navbar-brand .fw-bold { letter-spacing: -.3px; }
.navbar-brand img { mix-blend-mode: multiply; filter: brightness(0) invert(1); }
.nav-link { font-weight: 500; font-size: .93rem; padding: .5rem .75rem; border-radius: 6px; }
.nav-link:hover, .nav-link:focus { background: rgba(255,255,255,.12); }

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--rise-blue) 0%, #1565c0 60%, #1e88e5 100%);
  color: #fff;
  padding: 90px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/hero-pattern.svg') center/cover no-repeat;
  opacity: .06;
  pointer-events: none;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.2; }
.hero .lead { font-size: 1.1rem; opacity: .9; }
.hero-stats .stat-box {
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 16px 24px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.hero-stats .stat-box .num { font-size: 2rem; font-weight: 700; }
.hero-stats .stat-box .lbl { font-size: .8rem; opacity: .8; text-transform: uppercase; letter-spacing: .05em; }

/* ─── Section Layout ───────────────────────────────────────── */
.section { padding: 64px 0; }
.section-sm { padding: 40px 0; }
.section-gray { background: var(--rise-gray); }

.section-title { font-size: 1.8rem; color: var(--rise-dark); margin-bottom: 6px; }
.section-subtitle { color: #718096; font-size: 1rem; margin-bottom: 40px; }
.section-title-line {
  display: inline-block;
  width: 48px; height: 4px;
  background: var(--rise-accent);
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ─── Job Card ─────────────────────────────────────────────── */
.job-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  padding: 22px 24px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
  position: relative;
}
.job-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--rise-blue);
}
.job-card .job-title { font-size: 1.05rem; font-weight: 600; color: var(--rise-dark); margin-bottom: 4px; }
.job-card .job-title a { color: inherit; text-decoration: none; }
.job-card .job-title a:hover { color: var(--rise-blue); }
.job-card .badge-featured {
  position: absolute; top: 14px; right: 14px;
  background: var(--rise-accent); color: #fff;
  font-size: .7rem; font-weight: 600;
  padding: 3px 8px; border-radius: 20px;
}
.job-meta { font-size: .83rem; color: #718096; display: flex; flex-wrap: wrap; gap: 12px; margin: 8px 0; }
.job-meta i { color: var(--rise-blue); }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.job-tag {
  background: var(--rise-blue-light);
  color: var(--rise-blue);
  border-radius: 20px;
  padding: 2px 10px;
  font-size: .78rem;
  font-weight: 500;
}
.job-apply-btn {
  margin-top: 14px;
  font-size: .88rem;
  font-weight: 600;
}

/* ─── Country Chips (compact deploy list) ──────────────────── */
.country-chip-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 10px;
}
.country-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  border: 1px solid #d1dde8;
  border-radius: 30px;
  padding: 6px 16px 6px 10px;
  font-size: .88rem;
  font-weight: 600;
  color: #1e3a5f;
  text-decoration: none;
  transition: background .18s, border-color .18s, box-shadow .18s, transform .18s;
  white-space: nowrap;
}
a.country-chip:hover {
  background: var(--rise-blue-light);
  border-color: var(--rise-blue);
  color: var(--rise-blue);
  box-shadow: 0 2px 8px rgba(13,79,140,.12);
  transform: translateY(-1px);
}
.country-chip-plain {
  cursor: default;
  opacity: .85;
}
.country-chip-flag { font-size: 1.15rem; line-height: 1; }

/* ─── Country Card (legacy detail pages) ───────────────────── */
.country-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  padding: 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.country-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--rise-blue);
  color: var(--rise-blue);
}
.country-card .flag { font-size: 2.8rem; line-height: 1; margin-bottom: 8px; }
.country-card .cname { font-weight: 600; font-size: .95rem; }

/* ─── Update / Blog Card ───────────────────────────────────── */
.update-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}
.update-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.update-card .update-img {
  height: 180px; object-fit: cover; width: 100%;
  background: var(--rise-blue-light);
}
.update-card .update-body { padding: 18px; }
.update-card .update-date { font-size: .78rem; color: #a0aec0; }
.update-card .update-title { font-size: 1rem; font-weight: 600; color: var(--rise-dark); margin: 6px 0; }
.update-card .update-excerpt { font-size: .88rem; color: #718096; }
.update-card .update-read { font-size: .85rem; font-weight: 600; color: var(--rise-blue); text-decoration: none; }
.update-card .update-read:hover { color: var(--rise-blue-mid); }

/* ─── Service Card ─────────────────────────────────────────── */
.service-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: var(--border-radius);
  padding: 30px 24px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
  height: 100%;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card .svc-icon {
  width: 64px; height: 64px;
  background: var(--rise-blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: var(--rise-blue);
  margin: 0 auto 16px;
}
.service-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p  { font-size: .88rem; color: #718096; margin: 0; }

/* ─── Forms ────────────────────────────────────────────────── */
.form-section {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-label { font-weight: 500; font-size: .9rem; }
.form-control:focus, .form-select:focus {
  border-color: var(--rise-blue);
  box-shadow: 0 0 0 .2rem rgba(13, 79, 140, .15);
}

/* ─── Page Hero (inner pages) ──────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--rise-blue) 0%, #1565c0 100%);
  color: #fff;
  padding: 56px 0 40px;
  text-align: center;
}
.page-hero h1 { font-size: 2rem; margin-bottom: 8px; color: #fff !important; }
.page-hero p, .page-hero .lead { color: rgba(255,255,255,.88); }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a { color: rgba(255,255,255,.7); font-size: .88rem; }
.page-hero .breadcrumb-item.active { color: #fff; }

/* ─── Chatbot Widget ───────────────────────────────────────── */
#chatbot-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: var(--rise-blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  transition: transform .2s, background .2s;
  animation: fab-bounce 2s infinite;
}
#chatbot-fab:hover { background: var(--rise-blue-mid); transform: scale(1.08); }
@keyframes fab-bounce {
  0%, 100% { box-shadow: 0 8px 40px rgba(13,79,140,.4); }
  50%       { box-shadow: 0 12px 50px rgba(13,79,140,.6); }
}

#chatbot-window {
  position: fixed; bottom: 95px; right: 28px;
  width: 340px; max-height: 500px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 1050;
  display: flex; flex-direction: column;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
#chatbot-messages {
  flex: 1; overflow-y: auto;
  padding: 14px;
  display: flex; flex-direction: column;
  gap: 10px;
  max-height: 340px;
  background: var(--rise-gray);
}
.chat-msg { display: flex; flex-direction: column; }
.chat-msg .bubble {
  max-width: 85%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: .88rem;
  line-height: 1.5;
}
.chat-msg.bot { align-items: flex-start; }
.chat-msg.bot .bubble { background: #fff; border: 1px solid #e2e8f0; color: #2d3748; border-bottom-left-radius: 4px; }
.chat-msg.user { align-items: flex-end; }
.chat-msg.user .bubble { background: var(--rise-blue); color: #fff; border-bottom-right-radius: 4px; }
.chat-typing .bubble { font-style: italic; color: #a0aec0; }
#chatbot-input-wrap { flex-shrink: 0; }

/* ─── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(90deg, var(--rise-blue) 0%, #1565c0 100%);
  color: #fff;
  padding: 52px 0;
  text-align: center;
}
.cta-band h2 { font-size: 1.8rem; }
.cta-band p  { opacity: .85; }

/* ─── Misc Utilities ───────────────────────────────────────── */
.text-white-75 { color: rgba(255,255,255,.75) !important; }
.ls-1 { letter-spacing: .05em; }
.hover-white:hover { color: #fff !important; }
.badge-new { background: #10b981; }
.badge-status { font-size: .72rem; padding: 4px 9px; border-radius: 20px; }

/* ─── Responsive tweaks ────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 1.6rem; }
  #chatbot-window { width: calc(100vw - 40px); right: 20px; bottom: 90px; }
  .form-section { padding: 22px 16px; }
}

/* ─── Job detail page ──────────────────────────────────────── */
.job-detail-box {
  background: var(--rise-blue-light);
  border-left: 4px solid var(--rise-blue);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  margin-bottom: 20px;
}

/* ─── Country detail ───────────────────────────────────────── */
.process-step {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 24px;
}
.process-step .step-num {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--rise-blue);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
}
.embassy-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
}

/* ─── Employer Band ────────────────────────────────────────── */
.employer-band {
  background: linear-gradient(90deg, #0d1b2a 0%, #0d3d6e 100%);
  padding: 10px 0;
  border-bottom: 2px solid var(--rise-accent);
}
.employer-band-tag {
  display: inline-block;
  background: var(--rise-accent);
  color: #1a1a2e;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 2px 8px;
  border-radius: 20px;
  margin-right: 10px;
  vertical-align: middle;
  white-space: nowrap;
}
.employer-band-copy {
  color: rgba(255,255,255,.85);
  font-size: .88rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.employer-band-copy p { margin: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.employer-band-copy strong { color: #fff; }

/* ─── Employer FAQ section ─────────────────────────────────── */
.employer-qa p { color: #4a5568; margin-bottom: 12px; }
.employer-benefits {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}
.employer-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .92rem;
  color: #4a5568;
  margin-bottom: 8px;
}
.employer-benefits li i { font-size: 1rem; margin-top: 2px; flex-shrink: 0; }

.faq-list { display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  overflow: hidden;
}
.faq-question {
  background: none;
  border: none;
  padding: 14px 18px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--rise-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background .15s;
}
.faq-question:hover { background: var(--rise-blue-light); }
.faq-chevron { transition: transform .25s; font-size: .85rem; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(-180deg); }
.faq-answer { padding: 0 18px 14px; font-size: .88rem; color: #718096; }

/* ─── Multi-step form ──────────────────────────────────────── */
.step-progress {
  display: flex;
  align-items: center;
  margin-bottom: 36px;
}
.step-progress .step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  position: relative;
}
.step-progress .step::before {
  content: '';
  position: absolute;
  top: 18px;
  left: -50%;
  right: 50%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}
.step-progress .step:first-child::before { display: none; }
.step-progress .step.done::before,
.step-progress .step.active::before { background: var(--rise-blue); }
.step-circle {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #a0aec0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
  z-index: 1;
  transition: background .2s, color .2s;
}
.step.done .step-circle { background: var(--rise-blue); color: #fff; }
.step.active .step-circle { background: var(--rise-blue); color: #fff; box-shadow: 0 0 0 4px rgba(13,79,140,.15); }
.step-label { font-size: .72rem; color: #a0aec0; margin-top: 6px; text-align: center; font-weight: 500; }
.step.active .step-label, .step.done .step-label { color: var(--rise-blue); }

.step-panel { display: none; }
.step-panel.active { display: block; animation: fadeInPanel .3s ease; }
@keyframes fadeInPanel { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.step-hint {
  background: var(--rise-blue-light);
  border-left: 4px solid var(--rise-blue);
  border-radius: 0 8px 8px 0;
  padding: 10px 16px;
  font-size: .85rem;
  color: var(--rise-blue);
  margin-bottom: 20px;
}
.step-hint i { margin-right: 6px; }

.work-exp-block, .edu-block {
  background: var(--rise-gray);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
}
.remove-block-btn {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none;
  color: #e53e3e; cursor: pointer; font-size: 1rem;
  padding: 0;
}
.remove-block-btn:hover { color: #c53030; }
.add-block-btn {
  border: 2px dashed #cbd5e0;
  background: none;
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  color: var(--rise-blue);
  font-weight: 600;
  font-size: .88rem;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.add-block-btn:hover { border-color: var(--rise-blue); background: var(--rise-blue-light); }

/* ─── Shared resume view ───────────────────────────────────── */
.resume-view-wrap {
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border-radius: 14px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
}
.resume-section-title {
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color: var(--rise-blue);
  border-bottom: 2px solid var(--rise-blue-light);
  padding-bottom: 6px;
  margin-bottom: 14px;
  margin-top: 28px;
}
.exp-entry, .edu-entry {
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #f0f0f0;
}
.exp-entry:last-child, .edu-entry:last-child { border-bottom: none; }

.share-banner {
  background: #fff3cd;
  border: 1px solid #ffc107;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: .82rem;
  color: #856404;
  text-align: center;
  margin-bottom: 24px;
}
.expire-badge {
  background: #fee2e2;
  color: #991b1b;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: .72rem;
  font-weight: 600;
}

/* ─── Scroll to top ────────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 95px; left: 28px;
  width: 40px; height: 40px;
  background: var(--rise-blue-light);
  color: var(--rise-blue);
  border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  font-size: 1.1rem; cursor: pointer;
  box-shadow: var(--shadow-sm);
  z-index: 1040;
  transition: opacity .2s;
}
#scrollTop:hover { background: var(--rise-blue); color: #fff; }

/* ============================================================
   Phase 3 — Deployment Pipeline, AI Profile, Check-in Bot
   ============================================================ */

/* ─── Pipeline Tracker (public & dashboard) ────────────────── */
.pipeline-stage-row    { display: flex; gap: 0; }
.pipeline-icon-col     { display: flex; flex-direction: column; align-items: center; width: 56px; flex-shrink: 0; }
.pipeline-icon         { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center;
                         justify-content: center; font-size: 1rem; flex-shrink: 0;
                         box-shadow: 0 2px 8px rgba(0,0,0,.12); transition: transform .2s, box-shadow .2s; }
.pipeline-icon:hover   { transform: scale(1.08); box-shadow: 0 4px 14px rgba(0,0,0,.18); }
.pipeline-connector    { width: 3px; flex: 1; min-height: 24px; border-radius: 2px; margin: 4px 0; }
.pipeline-content-col  { flex: 1; padding-left: 12px; min-width: 0; }
.pipeline-pending  .pipeline-icon { background: #e2e8f0; color: #94a3b8; }
.pipeline-active   .pipeline-icon { background: #fff3cd; color: #d97706; box-shadow: 0 0 0 4px rgba(245,158,11,.15); }
.pipeline-skipped  .pipeline-icon { background: #f1f5f9; color: #cbd5e1; opacity: .6; }

/* ─── Deployment Tracker (public page) ─────────────────────── */
.tracker-stage-active  { background: rgba(245,158,11,.08); border-radius: 8px; padding: 4px 8px; }
.stage-active-pulse    { display: inline-block; width: 8px; height: 8px; border-radius: 50%;
                         background: var(--rise-accent); animation: stagePulse 1.5s infinite; }
@keyframes stagePulse  { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.55;transform:scale(1.35)} }

/* ─── AI Profile Score Cards ───────────────────────────────── */
.ai-score-ring         { position: relative; display: inline-flex; align-items: center; justify-content: center; }
.ai-score-val          { font-family: var(--heading-font); font-size: 2.4rem; font-weight: 800; line-height: 1; }
.ai-recommendation-tag { display: inline-flex; align-items: center; gap: 6px; padding: 6px 16px;
                         border-radius: 24px; font-weight: 700; font-size: .88rem; }
.rec-strongly_recommend { background: #dcfce7; color: #166534; }
.rec-recommend          { background: #dbeafe; color: #1e40af; }
.rec-neutral            { background: #f1f5f9; color: #475569; }
.rec-caution            { background: #fef3c7; color: #92400e; }
.rec-not_recommended    { background: #fee2e2; color: #991b1b; }

/* ─── Check-in Inbox ───────────────────────────────────────── */
.checkin-row            { transition: background .2s; }
.checkin-row:hover      { background: #f8fafc !important; }
.sentiment-positive     { color: #22c55e; }
.sentiment-neutral      { color: #94a3b8; }
.sentiment-negative     { color: #f59e0b; }
.sentiment-flagged      { color: #ef4444; }
.platform-telegram      { color: #0088cc; }
.platform-whatsapp      { color: #25D366; }

/* ─── Shared Resume / Tracker pages (public) ───────────────── */
.resume-view-wrap       { max-width: 860px; margin: 0 auto; }
.share-banner           { background: #fff8e1; border: 1px solid #f59e0b; border-radius: 10px; }
.tracker-wrap           { max-width: 780px; margin: 0 auto; }
.prog-bar-fill          { height: 100%; background: linear-gradient(90deg, var(--rise-blue), #1a6fbe);
                          border-radius: 6px; transition: width .5s ease; }

/* ─── Dashboard action card toolbar ───────────────────────── */
.action-toolbar .card   { border-radius: var(--border-radius); cursor: pointer;
                          transition: box-shadow .15s, transform .15s; }
.action-toolbar .card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.action-toolbar .card-body { padding: 14px 10px; }

/* ─── Responsive tweaks for new features ──────────────────── */
@media (max-width: 576px) {
  .pipeline-icon-col  { width: 44px; }
  .pipeline-icon      { width: 34px; height: 34px; font-size: .85rem; }
  .ai-score-val       { font-size: 1.8rem; }
}
