/* ============================================
   LANDING.CSS — SaaS минималистичный дизайн
   Акцент: зелёный (#10b981)
   Много воздуха, мягкие карточки
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; padding: 0; font-family: var(--font-body, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif); color: #1e293b; background: #fff; overflow-x: hidden; line-height: 1.6; }

/* --- Container --- */
.s-container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .s-container { padding: 0 16px; } }

/* --- Accent --- */
.s-accent { color: #10b981; }
.s-nowrap { white-space: nowrap; }

/* --- Section Note --- */
.s-section__note { text-align: center; font-size: 0.95rem; color: #94a3b8; margin: 32px 0 0; }

/* --- Badge --- */
.s-badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: #f0fdf4;
  color: #15803d;
}
.s-badge--green { background: #f0fdf4; color: #15803d; }
.s-badge--red { background: #fef2f2; color: #dc2626; }
.s-badge--blue { background: #eff6ff; color: #2563eb; }
.s-badge--orange { background: #fff7ed; color: #c2410c; }

/* --- Section --- */
.s-section { padding: 80px 0; }
.s-section--gray { background: #f9fafb; }
.s-section__header { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.s-section__title { font-size: 2.25rem; font-weight: 700; color: #0f172a; margin: 16px 0 12px; line-height: 1.2; }
.s-section__subtitle { font-size: 1.1rem; color: #64748b; margin: 0; line-height: 1.6; }
@media (max-width: 768px) {
  .s-section { padding: 48px 0; }
  .s-section__title { font-size: 1.6rem; }
  .s-section__subtitle { font-size: 1rem; }
}

/* --- Grid --- */
.s-grid { display: grid; gap: 24px; }
.s-grid--2 { grid-template-columns: repeat(2, 1fr); }
.s-grid--3 { grid-template-columns: repeat(3, 1fr); }
.s-grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .s-grid--3 { grid-template-columns: 1fr; } .s-grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .s-grid--2 { grid-template-columns: 1fr; } }
@media (max-width: 500px) { .s-grid--4 { grid-template-columns: 1fr; } }

/* --- Doc thumb hover --- */
.s-doc-thumb:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.14); }

/* --- Expert section mobile --- */
@media (max-width: 700px) {
  #expert .s-container > div { grid-template-columns: 1fr !important; text-align: center; }
}

/* --- Card --- */
.s-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.s-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.08); transform: translateY(-2px); }
.s-card__icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.s-card__icon svg { width: 24px; height: 24px; }
.s-card__icon--green { background: #f0fdf4; color: #10b981; }
.s-card__icon--green svg { stroke: #10b981; }
.s-card__icon--red { background: #fef2f2; color: #ef4444; }
.s-card__icon--red svg { stroke: #ef4444; }
.s-card__icon--orange { background: #fff7ed; color: #f97316; }
.s-card__icon--orange svg { stroke: #f97316; }
.s-card__icon--yellow { background: #fefce8; color: #eab308; }
.s-card__icon--yellow svg { stroke: #eab308; }
.s-card__title { font-size: 1.2rem; font-weight: 700; color: #0f172a; margin: 0 0 8px; }
.s-card__text { font-size: 0.95rem; color: #64748b; margin: 0 0 12px; line-height: 1.6; }
.s-card__note { font-size: 0.9rem; color: #94a3b8; margin: 16px 0 0; }

/* --- Check List --- */
.s-check-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}
.s-check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.5;
}
.s-check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 4px;
  width: 18px; height: 18px;
  background: #10b981;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}
.s-check-list--large li { font-size: 1.05rem; margin-bottom: 14px; }
.s-check-list--sm li { font-size: 0.9rem; margin-bottom: 8px; }
.s-check-list--sm li::before { width: 16px; height: 16px; top: 3px; background-size: 10px; }

/* --- Button --- */
.s-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-family: inherit;
}
.s-btn--primary {
  background: #10b981;
  color: #fff;
}
.s-btn--primary:hover {
  background: #059669;
  box-shadow: 0 4px 16px rgba(16,185,129,0.3);
  transform: translateY(-1px);
}
.s-btn--lg { padding: 16px 36px; font-size: 1.1rem; }
.s-btn svg { flex-shrink: 0; }

/* --- Input --- */
.s-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  color: #1e293b;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.s-input:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.15);
}
.s-input::placeholder { color: #9ca3af; }

/* --- Form Row --- */
.s-form-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 12px;
}
.s-form-row .s-input { width: 100%; }
.s-form-row .s-btn { width: 100%; justify-content: center; }
.s-form-note {
  font-size: 0.85rem;
  color: #94a3b8;
  text-align: center;
  margin: 0;
}

/* ============================================
   HERO
   ============================================ */
.s-hero {
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #f0fdf4 0%, #fff 50%, #f9fafb 100%);
  position: relative;
}
/* Фоновое изображение шапки — добавьте класс s-hero--bg и style="--hero-bg:url(...)" */
.s-hero--bg {
  background: var(--hero-bg, none) center/cover no-repeat;
}
.s-hero--bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.85) 50%, rgba(249,250,251,0.9) 100%);
  z-index: 0;
}
.s-hero--bg > * { position: relative; z-index: 1; }
.s-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.s-hero__title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin: 0 0 20px;
}
.s-hero__subtitle {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}
.s-hero__checks-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #64748b;
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.s-hero__card {
  padding: 32px;
  border: 1px solid #e5e7eb;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
.s-hero__card .s-badge { margin-bottom: 16px; }
.s-hero__card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}

@media (max-width: 900px) {
  .s-hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .s-hero__title { font-size: 2rem; }
  .s-hero { padding: 48px 0 40px; }
}

/* ============================================
   REPORT DEMO
   ============================================ */
.s-report-demo { display: flex; justify-content: center; }
.s-card--report {
  max-width: 480px;
  width: 100%;
  text-align: center;
  padding: 40px;
}
.s-report__header { margin-bottom: 24px; }
.s-report__domain {
  display: inline-block;
  padding: 6px 20px;
  background: #f1f5f9;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: #475569;
  font-family: var(--font-mono, monospace);
}
.s-report__score-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 28px;
}
.s-report__score-circle {
  position: relative;
  width: 120px;
  height: 120px;
  margin-bottom: 8px;
}
.s-report__score-circle svg { width: 120px; height: 120px; }
.s-report__score-value {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: 800;
  color: #ef4444;
}
.s-report__score-value span { font-size: 1rem; font-weight: 400; color: #94a3b8; }
.s-report__score-label { font-size: 0.85rem; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
.s-report__violations { text-align: left; }
.s-report__violations h4 { font-size: 0.95rem; color: #475569; margin: 0 0 12px; }

/* Violation list */
.s-violation-list { list-style: none; padding: 0; margin: 0; }
.s-violation-list li {
  padding: 10px 16px 10px 40px;
  margin-bottom: 8px;
  border-radius: 10px;
  font-size: 0.9rem;
  position: relative;
}
.s-violation--error {
  background: #fef2f2;
  color: #b91c1c;
}
.s-violation--error::before {
  content: '✕';
  position: absolute;
  left: 14px; top: 10px;
  font-weight: 700;
  color: #ef4444;
}
.s-violation--warn {
  background: #fffbeb;
  color: #92400e;
}
.s-violation--warn::before {
  content: '⚠';
  position: absolute;
  left: 14px; top: 10px;
}

/* ============================================
   STEPS
   ============================================ */
.s-card--step { text-align: center; position: relative; padding-top: 48px; }
.s-step-num {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: #10b981;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(16,185,129,0.25);
}
.s-card--step .s-card__icon { margin: 0 auto 16px; }

/* ============================================
   SOLUTIONS
   ============================================ */
.s-card--solution { display: flex; flex-direction: column; }
.s-card--solution .s-check-list { margin-top: auto; }

/* ============================================
   CASES
   ============================================ */
.s-case__scores {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
}
.s-case__score { text-align: center; }
.s-case__label { display: block; font-size: 0.8rem; color: #94a3b8; margin-bottom: 4px; }
.s-case__value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}
.s-case__value--red { color: #ef4444; }
.s-case__value--green { color: #10b981; }
.s-case__arrow { display: flex; align-items: center; }
.s-case__subtitle { font-size: 0.9rem; font-weight: 600; color: #475569; margin: 0 0 8px; }

/* ============================================
   FAQ
   ============================================ */
.s-faq { max-width: 720px; margin: 0 auto; }
.s-faq__item {
  border-bottom: 1px solid #e5e7eb;
}
.s-faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1e293b;
  text-align: left;
  font-family: inherit;
  gap: 16px;
}
.s-faq__q:hover { color: #10b981; }
.s-faq__icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: #94a3b8;
  transition: transform 0.3s;
}
.s-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  padding: 0 0;
}
.s-faq__item.open .s-faq__a {
  max-height: 300px;
  padding: 0 0 20px;
}
.s-faq__item.open .s-faq__icon {
  transform: rotate(45deg);
}

/* ============================================
   CTA
   ============================================ */
.s-cta {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
  padding: 80px 0;
}
.s-cta__inner { text-align: center; max-width: 600px; margin: 0 auto; }
.s-cta__title { font-size: 2rem; font-weight: 700; margin: 0 0 12px; color: #fff; }
.s-cta__text { font-size: 1.1rem; color: #94a3b8; margin: 0 0 32px; }
.s-form-row--cta { max-width: 480px; margin-left: auto; margin-right: auto; }
.s-input--cta {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.s-input--cta::placeholder { color: rgba(255,255,255,0.5); }
.s-input--cta:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,0.25);
  background: rgba(255,255,255,0.15);
}
.s-cta__note { font-size: 0.85rem; color: #64748b; margin: 16px 0 0; }

/* ============================================
   TEST PROMO
   ============================================ */
.s-test-promo { display: flex; justify-content: center; }
.s-card--test { max-width: 560px; width: 100%; text-align: center; }
.s-card--test .s-check-list { text-align: left; display: inline-block; }
.s-card--test .s-btn { margin-top: 24px; }

/* ============================================
   AUDIT CHECKS
   ============================================ */
.s-audit-checks { display: flex; justify-content: center; }
.s-card--check-list { max-width: 560px; width: 100%; }

/* ============================================
   EMPTY URL ERROR & URL HINT (compat)
   ============================================ */
.empty-url-error, .url-hint {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.empty-url-error { background: #fef2f2; color: #b91c1c; }
.url-hint { background: #fffbeb; color: #92400e; }

/* ============================================
   PROGRESS (compat with app.js)
   ============================================ */
.progress-container {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
}
.progress-bar {
  height: 6px;
  background: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #10b981, #059669);
  border-radius: 6px;
  width: 0%;
  transition: width 0.3s ease;
}
.progress-text {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  margin-top: 8px;
}

/* ============================================
   PAGE HERO (compact for inner pages)
   ============================================ */
.s-hero--compact { padding: 60px 0 40px; }
.s-page-hero { text-align: center; max-width: 720px; margin: 0 auto; }
.s-page-hero__title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin: 16px 0 16px;
}
.s-page-hero__subtitle {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 28px;
}
@media (max-width: 768px) {
  .s-hero--compact { padding: 40px 0 24px; }
  .s-page-hero__title { font-size: 1.75rem; }
  .s-page-hero__subtitle { font-size: 1rem; }
}

/* ============================================
   PRICING CARDS
   ============================================ */
.s-pricing-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: visible;
}
.s-pricing-card--popular {
  border: 2px solid #10b981;
  box-shadow: 0 8px 32px rgba(16,185,129,0.12);
}
.s-pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #10b981;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 100px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.s-pricing-card__header { margin-bottom: 16px; }
.s-pricing-card__name {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}
.s-pricing-card__desc {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}
.s-pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}
.s-pricing-card__from {
  font-size: 0.85rem;
  color: #94a3b8;
}
.s-pricing-card__amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.s-pricing-card__currency {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
}
.s-pricing-card__features {
  flex: 1;
  margin-bottom: 24px;
}

/* ============================================
   BUTTON VARIANTS
   ============================================ */
.s-btn--outline {
  background: transparent;
  color: #10b981;
  border: 2px solid #10b981;
}
.s-btn--outline:hover {
  background: #f0fdf4;
  box-shadow: 0 4px 12px rgba(16,185,129,0.15);
  transform: translateY(-1px);
}
.s-btn--block { width: 100%; justify-content: center; text-align: center; }

/* ============================================
   SERVICE CARDS
   ============================================ */
.s-service-card { display: flex; flex-direction: column; }
.s-service-card__price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #10b981;
  margin-top: auto;
  padding-top: 16px;
}
.s-service-card__time {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 4px;
}

/* ============================================
   GUARANTEE NUMBERS
   ============================================ */
.s-guarantee__number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 8px;
}

/* ============================================
   PENALTIES TABLE
   ============================================ */
.s-penalties-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.s-penalties-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #e5e7eb;
}
.s-penalties-table thead {
  background: #0f172a;
  color: #fff;
}
.s-penalties-table th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}
.s-penalties-table td {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: #334155;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: top;
}
.s-penalties-table tbody tr:hover {
  background: #f9fafb;
}
.s-penalties-table__highlight td {
  background: #fffbeb;
}
.s-penalties-table__danger td {
  background: #fef2f2;
  color: #b91c1c;
}
@media (max-width: 768px) {
  .s-penalties-table th,
  .s-penalties-table td {
    padding: 10px 12px;
    font-size: 0.82rem;
  }
}

/* ============================================
   RESPONSIVE FINE-TUNING
   ============================================ */
@media (max-width: 640px) {
  .s-hero__title { font-size: 1.7rem; }
  .s-hero__subtitle { font-size: 1rem; }
  .s-card { padding: 24px; }
  .s-hero__card { padding: 24px; }
  .s-cta__title { font-size: 1.5rem; }
  .s-case__scores { gap: 12px; }
  .s-case__value { font-size: 2rem; }
}

/* ============================================
   FINE CARDS — Примеры штрафов
   ============================================ */
.s-fine-card { display: flex; flex-direction: column; gap: 8px; }
.s-fine-card__amount { font-size: 1.8rem; font-weight: 800; line-height: 1.1; }
.s-fine-card__amount--red { color: #ef4444; }
.s-fine-card__amount--orange { color: #f59e0b; }
.s-fine-card__type { font-size: 1rem; font-weight: 700; color: #1e293b; }
.s-fine-card__desc { font-size: 0.9rem; color: #475569; line-height: 1.5; flex-grow: 1; }
.s-fine-card__tag {
  display: inline-block;
  padding: 4px 12px;
  background: #f1f5f9;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #64748b;
  align-self: flex-start;
}

/* ============================================
   INDUSTRY CARDS — Отрасли
   ============================================ */
.s-industry-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 24px;
  transition: box-shadow 0.2s ease;
}
.s-industry-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.s-industry-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f1f5f9;
}
.s-industry-card__icon { font-size: 2.5rem; }
.s-industry-card__title { font-size: 1.3rem; font-weight: 700; color: #1e293b; margin: 0 0 4px; }
.s-industry-card__risk {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}
.s-industry-card__risk--critical { background: #fef2f2; color: #dc2626; }
.s-industry-card__risk--high { background: #fff7ed; color: #ea580c; }
.s-industry-card__risk--medium { background: #fefce8; color: #ca8a04; }
.s-industry-card__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.s-industry-card__col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
}
@media (max-width: 900px) {
  .s-industry-card__body { grid-template-columns: 1fr; }
}

/* ============================================
   COOPERATION CARDS — Преимущества
   ============================================ */
.s-cooperation-card { position: relative; padding-top: 48px !important; }
.s-cooperation-card__num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  font-weight: 800;
  color: #10b981;
  opacity: 0.2;
  line-height: 1;
}

/* ============================================
   MATERIAL CARDS — Материалы
   ============================================ */
.s-material-card { display: flex; flex-direction: column; gap: 12px; }
.s-material-card__icon { font-size: 2.5rem; }
.s-material-card__meta {
  font-size: 0.85rem;
  color: #64748b;
  padding: 8px 0;
  border-top: 1px solid #f1f5f9;
  margin-top: auto;
}
.s-material-card .s-btn { gap: 8px; }

/* --- Warn check-list variant (orange crosses) --- */
.s-check-list--warn li::before {
  content: "⚠";
  color: #f59e0b;
}

/* --- Red badge variant --- */
.s-badge--blue {
  background: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}

/* --- Step number for process cards --- */
.s-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
