/* MedSina — Analysis Page v3 */
#ms-analysis-extra *, #ms-analysis-extra *::before, #ms-analysis-extra *::after {
  box-sizing: border-box; margin: 0; padding: 0;
}
#ms-analysis-extra {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  color: #0f172a;
  width: 100%;
}

/* ── Reveal ── */
.ms3-r {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .65s cubic-bezier(.22,1,.36,1), transform .65s cubic-bezier(.22,1,.36,1);
}
.ms3-r.on { opacity: 1; transform: none; }
.ms3-r.d1 { transition-delay: .07s; } .ms3-r.d2 { transition-delay: .16s; }
.ms3-r.d3 { transition-delay: .25s; } .ms3-r.d4 { transition-delay: .34s; }
.ms3-r.d5 { transition-delay: .43s; } .ms3-r.d6 { transition-delay: .52s; }

/* ── Layout ── */
.ms3-w { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.ms3-chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 800; letter-spacing: .13em;
  text-transform: uppercase; color: #2563eb;
  background: rgba(37,99,235,.1); border-radius: 50px;
  padding: 6px 18px; margin-bottom: 18px;
}
.ms3-h2 {
  font-size: clamp(30px, 4.5vw, 52px); font-weight: 900;
  letter-spacing: -.03em; line-height: 1.1; color: #0f172a;
  margin-bottom: 16px;
}
.ms3-h2 span { background: linear-gradient(135deg, #2563eb, #0d9488); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.ms3-sub { font-size: 17px; line-height: 1.7; color: #64748b; max-width: 560px; }

/* ═══════════════════════════════════════
   SECTION 1 — STEPS  (синий градиент)
═══════════════════════════════════════ */
#ms3-steps {
  padding: 96px 28px;
  background: linear-gradient(160deg, #eef4ff 0%, #edfaf8 100%);
  position: relative; overflow: hidden;
}
#ms3-steps::after {
  content: '';
  position: absolute;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%);
  top: -300px; right: -200px; pointer-events: none;
}

.ms3-steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  position: relative;
  margin-top: 60px;
}
.ms3-steps-row::before {
  content: '';
  position: absolute;
  top: 48px; left: 13%; right: 13%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
    rgba(37,99,235,.5) 0, rgba(37,99,235,.5) 12px,
    transparent 12px, transparent 28px);
  z-index: 0;
}

.ms3-step {
  text-align: center; padding: 0 12px 4px;
  position: relative; z-index: 1;
}
.ms3-step-orb {
  position: relative; display: inline-block; margin-bottom: 22px;
}
.ms3-step-icon {
  width: 96px; height: 96px; border-radius: 28px;
  background: linear-gradient(135deg, #2563eb 0%, #0d9488 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
  box-shadow: 0 16px 48px rgba(37,99,235,.32), 0 4px 12px rgba(37,99,235,.2);
  animation: ms3-bob 4s ease-in-out infinite;
}
.ms3-step:nth-child(2) .ms3-step-icon { animation-delay: .7s; }
.ms3-step:nth-child(3) .ms3-step-icon { animation-delay: 1.4s; }
.ms3-step:nth-child(4) .ms3-step-icon { animation-delay: 2.1s; }

@keyframes ms3-bob {
  0%,100% { transform: translateY(0); }
  40%      { transform: translateY(-10px); }
  70%      { transform: translateY(-5px); }
}

.ms3-step-badge {
  position: absolute; top: -10px; right: -10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; color: #2563eb;
  font-size: 13px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,.22);
}
.ms3-step h3 { font-size: 18px; font-weight: 800; color: #0f172a; margin-bottom: 8px; letter-spacing: -.01em; }
.ms3-step p  { font-size: 14px; line-height: 1.65; color: #64748b; }

@media (max-width: 820px) { .ms3-steps-row { grid-template-columns: 1fr 1fr; gap: 36px; } .ms3-steps-row::before { display: none; } }
@media (max-width: 480px) { .ms3-steps-row { grid-template-columns: 1fr; gap: 28px; } }

/* ═══════════════════════════════════════
   SECTION 2 — SCAN DEMO (тёмный)
═══════════════════════════════════════ */
#ms3-scan {
  padding: 96px 28px;
  background: linear-gradient(160deg, #0f172a 0%, #1e293b 100%);
  position: relative; overflow: hidden;
}
#ms3-scan::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(37,99,235,.12) 1px, transparent 1px);
  background-size: 32px 32px;
}

.ms3-scan-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; position: relative;
}
@media (max-width: 820px) { .ms3-scan-grid { grid-template-columns: 1fr; gap: 48px; } }

.ms3-scan-text .ms3-chip { background: rgba(37,99,235,.2); }
.ms3-scan-text .ms3-h2 { color: #f1f5f9; }
.ms3-scan-text .ms3-sub { color: #94a3b8; margin-bottom: 36px; }

.ms3-scan-facts { display: flex; flex-direction: column; gap: 16px; }
.ms3-scan-fact {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
}
.ms3-scan-fact-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: linear-gradient(135deg, #2563eb, #0d9488);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.ms3-scan-fact-text { flex: 1; }
.ms3-scan-fact-title { font-size: 14px; font-weight: 800; color: #f1f5f9; margin-bottom: 3px; }
.ms3-scan-fact-desc  { font-size: 13px; color: #94a3b8; line-height: 1.55; }

/* CSS-иллюстрация — анализ снимка */
.ms3-scan-visual {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.ms3-scan-box {
  position: relative; width: 100%; max-width: 380px; height: 300px;
  border-radius: 24px;
  background: linear-gradient(160deg, #0d1b2a 0%, #1a2840 100%);
  border: 1px solid rgba(37,99,235,.3);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5), 0 0 0 1px rgba(37,99,235,.2);
}
.ms3-scan-header {
  position: absolute; top: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: rgba(37,99,235,.15);
  border-bottom: 1px solid rgba(37,99,235,.2);
  display: flex; align-items: center; gap: 8px;
}
.ms3-scan-dot { width: 10px; height: 10px; border-radius: 50%; }
.ms3-scan-dot:nth-child(1) { background: #ef4444; }
.ms3-scan-dot:nth-child(2) { background: #f59e0b; }
.ms3-scan-dot:nth-child(3) { background: #22c55e; }
.ms3-scan-title-bar { flex: 1; text-align: center; font-size: 11px; font-weight: 700; color: rgba(255,255,255,.5); letter-spacing: .08em; }

/* Грудная клетка (чистый CSS) */
.ms3-chest {
  position: absolute; top: 50px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 200px;
}
.ms3-chest-rib {
  position: absolute; left: 50%; height: 14px; border-radius: 99px;
  border: 2px solid rgba(255,255,255,.25);
  transform-origin: left center;
}
.ms3-chest-rib:nth-child(1) { top: 20px;  width: 70px; transform: translateX(-100%) rotate(-8deg);  border-right: none; }
.ms3-chest-rib:nth-child(2) { top: 40px;  width: 80px; transform: translateX(-100%) rotate(-5deg);  border-right: none; }
.ms3-chest-rib:nth-child(3) { top: 60px;  width: 82px; transform: translateX(-100%) rotate(-2deg);  border-right: none; }
.ms3-chest-rib:nth-child(4) { top: 80px;  width: 80px; transform: translateX(-100%) rotate(2deg);   border-right: none; }
.ms3-chest-rib:nth-child(5) { top: 20px;  width: 70px; transform: rotate(8deg);   border-left: none; }
.ms3-chest-rib:nth-child(6) { top: 40px;  width: 80px; transform: rotate(5deg);   border-left: none; }
.ms3-chest-rib:nth-child(7) { top: 60px;  width: 82px; transform: rotate(2deg);   border-left: none; }
.ms3-chest-rib:nth-child(8) { top: 80px;  width: 80px; transform: rotate(-2deg);  border-left: none; }
.ms3-chest-spine {
  position: absolute; left: 50%; transform: translateX(-50%);
  top: 10px; width: 10px; height: 180px;
  background: repeating-linear-gradient(180deg,
    rgba(255,255,255,.3) 0, rgba(255,255,255,.3) 12px,
    transparent 12px, transparent 18px);
  border-radius: 4px;
}
.ms3-chest-heart {
  position: absolute; left: calc(50% - 28px); top: 50px;
  width: 40px; height: 36px;
}
.ms3-chest-heart::before, .ms3-chest-heart::after {
  content: '';
  position: absolute; width: 24px; height: 24px; border-radius: 50%;
  background: rgba(239,68,68,.35);
  top: 0;
}
.ms3-chest-heart::before { left: 0; }
.ms3-chest-heart::after  { right: 0; }

/* Скан-линия */
.ms3-scan-line {
  position: absolute; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, #2563eb 20%, #38bdf8 50%, #0d9488 80%, transparent 100%);
  box-shadow: 0 0 18px 4px rgba(37,99,235,.6), 0 0 4px rgba(56,189,248,.8);
  animation: ms3-sweep 3s ease-in-out infinite;
  z-index: 10;
}
@keyframes ms3-sweep {
  0%   { top: 50px;  opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  100% { top: 280px; opacity: 0; }
}

/* Точки обнаружения */
.ms3-scan-marker {
  position: absolute; width: 16px; height: 16px;
  border: 2px solid #22c55e;
  border-radius: 4px;
  animation: ms3-blink 2s ease-in-out infinite;
}
.ms3-scan-marker::before {
  content: '';
  position: absolute; inset: 3px; border-radius: 2px;
  background: rgba(34,197,94,.4);
}
.ms3-scan-marker:nth-child(1) { top: 90px;  left: 80px;  animation-delay: 0s; }
.ms3-scan-marker:nth-child(2) { top: 130px; right: 70px; animation-delay: .6s; }
.ms3-scan-marker:nth-child(3) { top: 160px; left: 110px; animation-delay: 1.2s; }

@keyframes ms3-blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: .4; transform: scale(.85); }
}

/* ИИ-чип снизу */
.ms3-scan-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(37,99,235,.15);
  border: 1px solid rgba(37,99,235,.3);
  border-radius: 12px; padding: 12px 20px;
  font-size: 13px; font-weight: 700; color: #60a5fa;
}
.ms3-scan-chip-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22c55e;
  animation: ms3-pulse-dot 1.4s ease-in-out infinite;
}
@keyframes ms3-pulse-dot {
  0%,100% { box-shadow: 0 0 0 0 rgba(34,197,94,.6); }
  50%      { box-shadow: 0 0 0 6px rgba(34,197,94,.0); }
}

/* ═══════════════════════════════════════
   SECTION 3 — STATS
═══════════════════════════════════════ */
#ms3-stats {
  padding: 80px 28px;
  background: linear-gradient(135deg, #1d4ed8 0%, #0f766e 100%);
  position: relative; overflow: hidden;
}
#ms3-stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(255,255,255,.1), transparent 55%),
              radial-gradient(ellipse at 85% 30%, rgba(255,255,255,.07), transparent 45%);
}

.ms3-stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; position: relative;
}
@media (max-width: 680px) { .ms3-stats-row { grid-template-columns: 1fr 1fr; } }

.ms3-stat {
  text-align: center; padding: 36px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
}
.ms3-stat-n {
  font-size: 54px; font-weight: 900; color: #fff;
  letter-spacing: -.03em; line-height: 1;
  margin-bottom: 10px;
}
.ms3-stat-l { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.8); line-height: 1.45; }

/* ═══════════════════════════════════════
   SECTION 4 — ТИПЫ СНИМКОВ
═══════════════════════════════════════ */
#ms3-types {
  padding: 96px 28px;
  background: #fff;
}

.ms3-types-grid {
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 16px; margin-top: 52px;
}
@media (max-width: 960px) { .ms3-types-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 580px)  { .ms3-types-grid { grid-template-columns: 1fr 1fr; } }

.ms3-type {
  border-radius: 20px; padding: 32px 20px 24px;
  border: 1.5px solid rgba(15,23,42,.07);
  background: #f8fafc;
  text-align: center;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  position: relative; overflow: hidden; cursor: default;
}
.ms3-type::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(13,148,136,.06));
  opacity: 0; transition: opacity .28s;
}
.ms3-type:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(37,99,235,.14); border-color: rgba(37,99,235,.22); }
.ms3-type:hover::after { opacity: 1; }

.ms3-type-icon {
  font-size: 52px; display: block; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.ms3-type h4 { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 8px; position: relative; z-index: 1; }
.ms3-type p  { font-size: 12.5px; line-height: 1.6; color: #64748b; position: relative; z-index: 1; }
.ms3-type-tag {
  display: inline-block; font-size: 10px; font-weight: 800;
  padding: 3px 12px; border-radius: 99px;
  background: rgba(37,99,235,.1); color: #2563eb;
  margin-top: 12px; letter-spacing: .05em; text-transform: uppercase;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════
   SECTION 5 — ОТЧЁТ (split)
═══════════════════════════════════════ */
#ms3-report {
  padding: 96px 28px;
  background: linear-gradient(160deg, #f0fdf6 0%, #eef4ff 100%);
}
.ms3-report-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
@media (max-width: 820px) { .ms3-report-split { grid-template-columns: 1fr; gap: 48px; } }

.ms3-check-list { list-style: none; display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
.ms3-check-item {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15px; color: #334155; line-height: 1.55;
}
.ms3-check-ico {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #0d9488);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 14px; margin-top: 1px;
  box-shadow: 0 4px 12px rgba(37,99,235,.28);
}

/* Report card */
.ms3-report-card {
  background: #fff; border-radius: 24px; padding: 32px;
  box-shadow: 0 28px 72px rgba(37,99,235,.14);
  border: 1px solid rgba(37,99,235,.1);
}
.ms3-rc-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 20px; border-bottom: 1px solid #f1f5f9; margin-bottom: 20px;
}
.ms3-rc-logo {
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, #2563eb, #0d9488);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; flex-shrink: 0;
}
.ms3-rc-name { font-size: 15px; font-weight: 800; color: #0f172a; }
.ms3-rc-date { font-size: 12px; color: #94a3b8; }
.ms3-rc-ok { font-size: 11px; font-weight: 700; padding: 4px 12px; border-radius: 99px; background: #dcfce7; color: #16a34a; margin-left: auto; }

.ms3-rc-lines { display: flex; flex-direction: column; gap: 9px; margin-bottom: 22px; }
.ms3-rc-line { height: 10px; border-radius: 99px; background: #e2e8f0; }
.ms3-rc-line:nth-child(1) { width: 93%; animation: ms3-shimmer 2.2s infinite; }
.ms3-rc-line:nth-child(2) { width: 79%; animation: ms3-shimmer 2.2s infinite .2s; }
.ms3-rc-line:nth-child(3) { width: 87%; animation: ms3-shimmer 2.2s infinite .4s; }
.ms3-rc-line:nth-child(4) { width: 64%; animation: ms3-shimmer 2.2s infinite .6s; }
.ms3-rc-line:nth-child(5) { width: 81%; animation: ms3-shimmer 2.2s infinite .8s; }
@keyframes ms3-shimmer { 0%,100%{opacity:1} 50%{opacity:.38} }

.ms3-rc-section-title { font-size: 11px; font-weight: 800; color: #2563eb; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 12px; }
.ms3-rc-dxs { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.ms3-rc-dx {
  display: flex; align-items: center; gap: 10px;
  background: #f8fafc; border-radius: 10px;
  padding: 10px 14px; border: 1px solid #e2e8f0;
}
.ms3-rc-dx-name { font-size: 13px; font-weight: 600; color: #334155; flex: 1; }
.ms3-rc-dx-bar { flex-shrink: 0; width: 80px; height: 6px; background: #e2e8f0; border-radius: 99px; overflow: hidden; }
.ms3-rc-dx-fill { height: 100%; border-radius: 99px; background: linear-gradient(90deg, #2563eb, #0d9488); }
.ms3-rc-dx-pct { font-size: 12px; font-weight: 800; color: #2563eb; width: 34px; text-align: right; }
.ms3-rc-btns { display: flex; gap: 8px; }
.ms3-rc-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; padding: 9px 18px;
  border-radius: 99px; cursor: pointer; border: none; transition: transform .2s;
}
.ms3-rc-btn:hover { transform: translateY(-1px); }
.ms3-rc-btn-p { background: linear-gradient(135deg, #2563eb, #0d9488); color: #fff; }
.ms3-rc-btn-s { background: #f1f5f9; color: #475569; }

/* ═══════════════════════════════════════
   SECTION 6 — БЕЗОПАСНОСТЬ
═══════════════════════════════════════ */
#ms3-safety {
  padding: 80px 28px;
  background: #fff; border-top: 1px solid #f1f5f9;
}
.ms3-safety-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 20px; margin-top: 48px;
}
@media (max-width: 820px) { .ms3-safety-row { grid-template-columns: 1fr 1fr; } }

.ms3-safety-card {
  padding: 28px 24px; border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.05);
  transition: box-shadow .25s, transform .25s;
}
.ms3-safety-card:hover { box-shadow: 0 10px 36px rgba(37,99,235,.09); transform: translateY(-3px); }
.ms3-safety-icon { font-size: 32px; margin-bottom: 14px; display: block; }
.ms3-safety-title { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 6px; }
.ms3-safety-desc  { font-size: 13px; line-height: 1.6; color: #64748b; }

/* ═══════════════════════════════════════
   SECTION 7 — CTA
═══════════════════════════════════════ */
#ms3-cta {
  padding: 100px 28px;
  background: linear-gradient(135deg, #1e40af 0%, #115e59 100%);
  text-align: center; position: relative; overflow: hidden;
}
#ms3-cta::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.1), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,.07), transparent 45%);
}
/* Декоративные кольца */
#ms3-cta::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.07);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
.ms3-cta-ring {
  position: absolute;
  width: 900px; height: 900px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.04);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  pointer-events: none;
}
#ms3-cta h2 {
  font-size: clamp(28px,4.5vw,52px); font-weight: 900;
  color: #fff; letter-spacing: -.03em; line-height: 1.1;
  margin-bottom: 16px; position: relative;
}
#ms3-cta p {
  font-size: 18px; color: rgba(255,255,255,.8);
  margin-bottom: 40px; position: relative;
}
.ms3-cta-btns {
  display: flex; gap: 16px; justify-content: center;
  flex-wrap: wrap; position: relative;
}
.ms3-cta-main {
  display: inline-flex; align-items: center; gap: 10px;
  background: #fff; color: #1d4ed8;
  font-size: 16px; font-weight: 800;
  padding: 20px 44px; border-radius: 16px;
  border: none; cursor: pointer;
  box-shadow: 0 12px 44px rgba(0,0,0,.25);
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
}
.ms3-cta-main:hover { transform: translateY(-3px); box-shadow: 0 20px 56px rgba(0,0,0,.32); }
.ms3-cta-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.14); color: #fff;
  font-size: 15px; font-weight: 700;
  padding: 20px 36px; border-radius: 16px;
  border: 1.5px solid rgba(255,255,255,.32); cursor: pointer;
  transition: background .2s, transform .2s;
  text-decoration: none;
}
.ms3-cta-ghost:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }

/* ── Dark mode ── */
html.ms-dark #ms3-steps { background: linear-gradient(160deg, #182038 0%, #14201e 100%) !important; }
html.ms-dark #ms3-types { background: #1e293b !important; }
html.ms-dark #ms3-report { background: linear-gradient(160deg, #14201e 0%, #182038 100%) !important; }
html.ms-dark #ms3-safety { background: #1e293b !important; border-top-color: rgba(255,255,255,.06) !important; }
html.ms-dark .ms3-h2 { color: #f1f5f9 !important; }
html.ms-dark .ms3-sub { color: #94a3b8 !important; }
html.ms-dark .ms3-step h3 { color: #f1f5f9 !important; }
html.ms-dark .ms3-step p  { color: #94a3b8 !important; }
html.ms-dark .ms3-step-badge { background: #1e293b !important; }
html.ms-dark .ms3-type { background: #243347 !important; border-color: rgba(255,255,255,.07) !important; }
html.ms-dark .ms3-type:hover { background: #1e293b !important; }
html.ms-dark .ms3-type h4 { color: #f1f5f9 !important; }
html.ms-dark .ms3-type p  { color: #94a3b8 !important; }
html.ms-dark .ms3-safety-card { background: #243347 !important; border-color: rgba(255,255,255,.06) !important; }
html.ms-dark .ms3-safety-title { color: #f1f5f9 !important; }
html.ms-dark .ms3-safety-desc  { color: #94a3b8 !important; }
html.ms-dark .ms3-report-card { background: #1e293b !important; border-color: rgba(255,255,255,.09) !important; }
html.ms-dark .ms3-rc-name { color: #f1f5f9 !important; }
html.ms-dark .ms3-rc-line { background: rgba(255,255,255,.1) !important; }
html.ms-dark .ms3-rc-dx { background: #243347 !important; border-color: rgba(255,255,255,.07) !important; }
html.ms-dark .ms3-rc-dx-name { color: #cbd5e1 !important; }
html.ms-dark .ms3-rc-btn-s { background: #334155 !important; color: #94a3b8 !important; }
html.ms-dark .ms3-check-item { color: #cbd5e1 !important; }
html.ms-dark .ms3-rc-head { border-bottom-color: rgba(255,255,255,.07) !important; }
html.ms-dark .ms3-rc-dx-bar { background: rgba(255,255,255,.1) !important; }
