/* ============================================================
SRO DESIGN SYSTEM — единый CSS (Refactored v2.0)
------------------------------------------------------------
Порядок: root → сброс → .sro-all → утилиты → .lr-article → адаптив
============================================================ */

/* ============================================================
1. ROOT VARIABLES (Token Architecture: Primitive → Semantic → Alias)
============================================================ */
:root {
  /* ─── LAYER 1: PRIMITIVE TOKENS ─── */
  --primitive-blue-300: #a5d3ff;
  --primitive-blue-400: #6fb8ff;
  --primitive-blue-500: #5ba3e8;
  --primitive-blue-700: #1D4ED8;
  --primitive-slate-50:  #FBFCFE;
  --primitive-slate-100: #F8FAFC;
  --primitive-slate-400: #94A3B8;
  --primitive-slate-500: #64748b;
  --primitive-slate-600: #475569;
  --primitive-slate-700: #334155;
  --primitive-slate-800: #1E293B;
  --primitive-slate-900: #0F172A;
  --primitive-green-500: #10B981;
  --primitive-orange-400: #f97316;

  /* ─── EASING REGISTRY ─── */
  --ease-out-expo:    cubic-bezier(.16,1,.3,1);
  --ease-in-out:      cubic-bezier(.4,0,.2,1);
  --ease-product:     cubic-bezier(.22,.61,.36,1);

  /* ─── LAYER 2: SEMANTIC TOKENS ─── */
  /* Brand */
  --color-accent:          var(--primitive-blue-400);
  --color-accent-hover:    var(--primitive-blue-500);
  --color-accent-soft:     rgba(111,184,255,.06);
  --color-accent-soft-hover: rgba(111,184,255,.1);

  /* Text */
  --color-text-primary:   var(--primitive-slate-800);
  --color-text-secondary: var(--primitive-slate-600);
  --color-text-muted:     var(--primitive-slate-400);
  --color-text-inverted:  #fff;

  /* Backgrounds */
  --color-bg-primary:   #fff;
  --color-bg-secondary: var(--primitive-slate-50);
  --color-bg-tertiary:  var(--primitive-slate-100);
  --color-bg-overlay:   rgba(255,255,255,.92);

  /* Borders */
  --color-border:        rgba(0,0,0,.06);
  --color-border-strong: rgba(0,0,0,.1);
  --color-border-accent: rgba(111,184,255,.3);

  /* Shadows */
  --shadow-xs:    0 1px 2px rgba(0,0,0,.04);
  --shadow-sm:    0 1px 2px rgba(0,0,0,.04), 0 4px 8px rgba(0,0,0,.04);
  --shadow-md:    0 2px 4px rgba(0,0,0,.04), 0 12px 24px rgba(0,0,0,.06);
  --shadow-lg:    0 4px 8px rgba(0,0,0,.06), 0 24px 48px rgba(0,0,0,.1);
  --shadow-focus: 0 0 0 3px rgba(111,184,255,.18);

  /* Radius */
  --radius-xs:   4px;
  --radius-sm:   6px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-full: 999px;

  /* Spacing */
  --space-1:  4px;  --space-2:  8px;  --space-3:  12px;
  --space-4:  16px; --space-5:  20px; --space-6:  24px;
  --space-8:  32px; --space-10: 40px; --space-12: 48px;
  --space-16: 64px; --space-24: 96px;

  /* Typography */
  --font-ui:   'tilda-ui','tilda-sans',ui-sans-serif,system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;
  --font-mono: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;

  /* Duration */
  --duration-fast:  120ms;
  --duration-base:  180ms;
  --duration-slow:  300ms;
  --duration-enter: 400ms;

  /* ─── LAYER 3: LEGACY ALIASES (обратная совместимость) ─── */
  --lr-accent:          var(--color-accent);
  --lr-accent-hover:    var(--color-accent-hover);
  --lr-accent-soft:     var(--color-accent-soft);
  --lr-accent-soft-hover: var(--color-accent-soft-hover);
  --lr-text-primary:    var(--color-text-primary);
  --lr-text-secondary:  var(--color-text-secondary);
  --lr-text-muted:      var(--color-text-muted);
  --lr-line:            var(--color-border);
  --lr-line-strong:     var(--color-border-strong);
  --lr-bg-white:        var(--color-bg-primary);
  --lr-bg-soft:         var(--color-bg-secondary);
  --lr-shadow-xs:       var(--shadow-xs);
  --lr-shadow-sm:       var(--shadow-sm);
  --lr-shadow-md:       var(--shadow-md);
  --lr-shadow-lg:       var(--shadow-lg);
  --lr-radius-btn:      var(--radius-md);
  --lr-radius-card:     var(--radius-lg);
  --lr-radius-lg:       var(--radius-xl);
  --lr-transition:      var(--ease-product);
  --sro-font:           var(--font-ui);
}

/* ============================================================
2. ОБЩИЙ СБРОС (Modern Reset)
============================================================ */
.sro-all, .sro-all *,
.lr-article, .lr-article * {
  box-sizing: border-box;
}

.sro-all img, .sro-all picture, .sro-all video,
.sro-all canvas, .sro-all svg,
.lr-article img, .lr-article picture, .lr-article video,
.lr-article canvas, .lr-article svg {
  display: block;
  max-width: 100%;
}

.sro-all h1, .sro-all h2, .sro-all h3, .sro-all h4, .sro-all h5, .sro-all h6,
.lr-article h1, .lr-article h2, .lr-article h3, .lr-article h4, .lr-article h5, .lr-article h6 {
  text-wrap: balance;
}

.sro-all a, .lr-article a {
  color: inherit;
}

.sro-all input, .sro-all textarea, .sro-all select, .sro-all button,
.lr-article input, .lr-article textarea, .lr-article select, .lr-article button {
  font: inherit;
}

.sro-all :focus, .lr-article :focus {
  outline: none;
}

.sro-all :focus-visible, .lr-article :focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-xs);
}

.sro-all ::selection, .lr-article ::selection {
  background: rgba(111,184,255,.2);
  color: var(--color-text-primary);
}

/* Базовый блок — рендеринг уровня Apple */
.sro-all {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
  background: var(--color-bg-primary);
  overflow-x: hidden;
  max-width: 100%;

  /* Субпиксельный рендеринг */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;

  /* Табличные цифры глобально — критично для дашборда и калькулятора СРО */
  font-feature-settings: "tnum" 1, "liga" 1, "kern" 1;
  font-variant-numeric: tabular-nums;
}

/* Глобальное отключение анимаций для доступности (сохраняет работу JS-событий через 0.01ms) */
@media (prefers-reduced-motion: reduce) {
  .sro-all *, .sro-all *::before, .sro-all *::after,
  .lr-article *, .lr-article *::before, .lr-article *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
3. БЛОК 1: .sro-all — SRO-страницы (лендинг, калькулятор, тарифы)
============================================================ */
.sro-all {
  /* Базовые стили уже заданы в разделе 2, здесь специфика контейнера */
}

.sro-all .sro-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 640px) { .sro-all .sro-container { padding: 0 16px; } }
@media (min-width: 960px) { .sro-all .sro-container { padding: 0 64px; } }

/* ---------- 3.1 Типографика ---------- */
.sro-all .sro-micro {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}
.sro-all .sro-section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.sro-all .sro-section-label::before {
  content: '';
  display: block;
  width: 3px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 2px;
  flex-shrink: 0;
}
.sro-all .sro-section-label--cta { margin-bottom: 16px; }
.sro-all .sro-mono {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--color-text-primary);
  background: var(--color-bg-tertiary);
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
  white-space: nowrap;
}

/* ---------- 3.2 Кнопки ---------- */
.sro-all .sro-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border: 1px solid var(--color-text-primary);
  border-radius: var(--radius-md);
  background: transparent;
  color: var(--color-text-primary);
  font-family: inherit;
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--duration-base) ease-out, color var(--duration-base) ease-out, border-color var(--duration-base) ease-out, transform var(--duration-base) ease-out;
  white-space: nowrap;
}
.sro-all .sro-btn:hover {
  background: var(--color-text-primary);
  color: #fff;
  transform: scale(1.02);
}
.sro-all .sro-btn--accent { border-color: var(--color-accent); color: var(--color-text-primary); }
.sro-all .sro-btn--accent:hover { background: var(--color-accent); color: var(--color-text-primary); }
.sro-all .sro-btn--filled { background: var(--color-text-primary); color: #fff; border-color: var(--color-text-primary); }
.sro-all .sro-btn--filled:hover { background: var(--color-accent); border-color: var(--color-accent); color: var(--color-text-primary); transform: scale(1.02); }

/* ---------- 3.3 Hero ---------- */
.sro-all .sro-hero {
  padding: 180px 0 80px;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  background-color: var(--color-bg-primary);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}
@media (max-width: 640px) {
  .sro-all .sro-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    background-position: center top;
    background-size: 140% auto;
  }
  .sro-all .sro-hero h1 { font-size: 28px; }
  .sro-all .sro-hero__stat-number { font-size: 32px; }
}
.sro-all .sro-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 960px) {
  .sro-all .sro-hero__grid { grid-template-columns: 2fr 1.2fr; gap: 48px; align-items: start; }
}
.sro-all .sro-hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.sro-all .sro-hero__eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--color-accent); }
.sro-all .sro-hero h1 {
  font-family: var(--t-headline-font, inherit);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  margin-bottom: 24px;
}
.sro-all .sro-hero h1 em { font-style: normal; color: var(--color-accent); }
.sro-all .sro-hero__sub {
  font-size: 17px;
  color: var(--color-text-secondary);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}
.sro-all .sro-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.sro-all .sro-hero__guarantee { display: flex; align-items: center; gap: 8px; margin-top: 28px; }
.sro-all .sro-hero__guarantee img { width: 20px; height: 20px; opacity: 0.5; }
.sro-all .sro-hero__stat {
  padding: 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: rgba(251,252,254,0.85);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.sro-all .sro-hero__stat-number {
  font-family: var(--t-headline-font, inherit);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--color-text-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.sro-all .sro-hero__stat-label {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin-bottom: 24px;
}
.sro-all .sro-hero__stat-divider {
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin-bottom: 20px;
}
.sro-all .sro-hero__stat-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
}
.sro-all .sro-hero__stat-row:last-child { border-bottom: none; }
.sro-all .sro-hero__stat-row-label { font-size: 13px; color: var(--color-text-secondary); }
.sro-all .sro-hero__stat-row-value { font-size: 13px; font-weight: 600; color: var(--color-text-primary); }
.sro-all .sro-hero__region {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 8px;
  background: rgba(111,184,255,0.10);
  border: 1px solid rgba(111,184,255,0.25);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-text-primary);
  margin-bottom: 20px;
}
.sro-all .sro-hero__region svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ---------- 3.3.1 UPGRADED HERO STAT (PROMO) ---------- */
.sro-all .sro-hero__stat--promo {
  position: relative;
  padding: 28px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(251, 252, 254, 0.9);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transform: translateY(-8px);
  box-shadow: 0 16px 32px -8px rgba(30, 41, 59, 0.08);
  transition: transform 0.4s var(--ease-product), box-shadow 0.4s ease;
}
.sro-all .sro-hero__stat--promo:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 48px -12px rgba(30, 41, 59, 0.12);
}
.sro-all .sro-hero__stat__corner {
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}
.sro-all .sro-hero__stat__corner--tl {
  top: -1px; left: -1px;
  border-top: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-top-left-radius: 12px;
}
.sro-all .sro-hero__stat__corner--br {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-bottom-right-radius: 12px;
}
.sro-all .sro-hero__stat__promo { margin-top: 8px; }
.sro-all .sro-hero__stat__promo-eyebrow { display: inline-block; margin-bottom: 8px; color: #64748b; }
.sro-all .sro-hero__stat__promo-title {
  font-family: var(--t-headline-font, inherit);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0 0 12px 0;
}
.sro-all .sro-hero__stat__promo-desc {
  font-size: 14px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0 0 20px 0;
}
.sro-all .sro-hero__stat__promo-code {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #FFFFFF;
  border: 1px dashed rgba(111, 184, 255, 0.4);
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.sro-all .sro-hero__stat__promo-code:hover,
.sro-all .sro-hero__stat__promo-code:focus {
  border-color: var(--color-accent);
  background: rgba(111, 184, 255, 0.04);
  outline: none;
  transform: translateY(-2px);
}
.sro-all .sro-hero__stat__code-label { color: #64748b; font-size: 10px; }
.sro-all .sro-hero__stat__code-text {
  font-family: var(--t-headline-font, inherit);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-primary);
  font-variant-numeric: tabular-nums;
}
.sro-all .sro-hero__stat__copy-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--color-text-muted);
  transition: color 0.2s ease;
}
.sro-all .sro-hero__stat__promo-code:hover .sro-hero__stat__copy-icon { color: var(--color-accent); }
.sro-all .sro-hero__stat__copy-feedback {
  position: absolute;
  top: -24px;
  right: 0;
  color: var(--color-accent);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.sro-all .sro-hero__stat__promo-code.copied .sro-hero__stat__copy-feedback {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 960px) {
  .sro-all .sro-hero__stat--promo {
    transform: none;
    box-shadow: 0 8px 24px -8px rgba(30, 41, 59, 0.06);
    margin-top: 24px;
  }
  .sro-all .sro-hero__stat--promo:hover { transform: none; }
}

/* ---------- 3.4 Trust bar ---------- */
.sro-all .sro-trust { padding: 40px 0; border-bottom: 1px solid var(--color-border); }
.sro-all .sro-trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 24px;
  align-items: start;
}
@media (max-width: 960px) { .sro-all .sro-trust__inner { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) { .sro-all .sro-trust { display: none; } }
.sro-all .sro-trust__item { display: flex; flex-direction: column; gap: 4px; }
.sro-all .sro-trust__item-value {
  font-family: var(--t-headline-font, inherit);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-text-primary);
}
.sro-all .sro-trust__item-label {
  font-size: clamp(11px, 1.2vw, 13px);
  color: var(--color-text-secondary);
  line-height: 1.4;
}

/* ---------- 3.5 Реестр СРО: фильтр, таблица, пагинация ---------- */
.sro-all .sro-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 20px;
}
.sro-all .sro-filter-bar__tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 2px;
  padding: 4px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 10px;
}
.sro-all .sro-filter-tab {
  padding: 8px 16px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-text-muted);
  border-radius: 6px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color var(--duration-base) ease-out, color var(--duration-base) ease-out, box-shadow var(--duration-base) ease-out;
}
.sro-all .sro-filter-tab:hover { color: var(--color-text-primary); }
.sro-all .sro-filter-tab--active {
  background: #FFFFFF;
  color: var(--color-text-primary);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.sro-all .sro-filter-tab:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}
.sro-all .sro-filter-bar__search {
  position: relative;
  flex: 1 1 260px;
  max-width: 380px;
}
.sro-all .sro-filter-bar__search input {
  width: 100%;
  padding: 10px 16px 10px 40px;
  border: 1px solid var(--color-border-strong);
  border-radius: 10px;
  background: #FFFFFF;
  font-family: inherit;
  font-size: 14px;
  color: var(--color-text-primary);
  outline: none;
  transition: border-color var(--duration-base) ease-out, box-shadow var(--duration-base) ease-out;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.sro-all .sro-filter-bar__search input::placeholder { color: var(--color-text-muted); }
.sro-all .sro-filter-bar__search input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(111,184,255,0.12);
}
.sro-all .sro-filter-bar__search-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  color: var(--color-text-muted);
  pointer-events: none;
}
.sro-all .sro-registry-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  color: #64748B;
}
.sro-all .sro-registry-meta strong { color: var(--color-text-primary); font-weight: 600; }
.sro-all .sro-table--registry { font-size: 14px; }
.sro-all .sro-table--registry th, .sro-all .sro-table--registry td { padding: 16px 20px; }
.sro-all .sro-table--registry th:last-child, .sro-all .sro-table--registry td:last-child { text-align: right; }
.sro-all .sro-table--registry tbody tr:last-child td { border-bottom: none; }
.sro-all .sro-registry-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text-primary);
  display: block;
}
.sro-all .sro-registry-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  background: transparent;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-text-primary);
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--duration-base) ease-out, color var(--duration-base) ease-out, border-color var(--duration-base) ease-out;
}
.sro-all .sro-registry-action:hover {
  background: var(--color-text-primary);
  color: #FFFFFF;
  border-color: var(--color-text-primary);
}
.sro-all .sro-registry-empty {
  text-align: center;
  padding: 40px 20px !important;
  font-size: 14px;
  color: var(--color-text-muted);
  background: transparent !important;
}
.sro-all .sro-table__badge--nostroy {
  background: rgba(59, 130, 246, 0.10);
  border-color: rgba(59, 130, 246, 0.20);
  color: #1e40af;
}
.sro-all .sro-table__badge--nopriz {
  background: rgba(168, 85, 247, 0.10);
  border-color: rgba(168, 85, 247, 0.20);
  color: #6b21a8;
}
.sro-all .sro-table__badge--recommended {
  background: rgba(111,184,255,0.15);
  border-color: rgba(111,184,255,0.30);
  color: #1D4ED8;
}
.sro-all .sro-loadmore-wrap { text-align: center; margin-top: 24px; }
.sro-all .sro-loadmore-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  background: #FFFFFF;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-text-primary);
  cursor: pointer;
  transition: background-color var(--duration-base) ease-out, border-color var(--duration-base) ease-out;
}
.sro-all .sro-loadmore-btn:hover {
  border-color: var(--color-accent);
  background: rgba(111,184,255,0.04);
}
.sro-all .sro-loadmore-btn:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ---------- 3.5 Компактный список СРО ---------- */
.sro-all .sro-list-view {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 8px;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.02), 0 2px 4px -1px rgba(0,0,0,0.02);
}
.sro-all .sro-list-item {
  display: grid;
  grid-template-columns: 1.5fr 2fr auto;
  gap: 32px;
  align-items: center;
  padding: 20px 24px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid transparent;
  transition: background-color 250ms var(--ease-in-out), border-color 250ms var(--ease-in-out), box-shadow 250ms var(--ease-in-out);
}
.sro-all .sro-list-item:hover {
  background: #f8fafc;
  border-color: var(--color-border);
  box-shadow: 0 4px 12px -2px rgba(0,0,0,0.04);
}
.sro-all .sro-list-item:hover .sro-list-item__btn {
  background: var(--color-accent);
  color: #0f172a;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px -1px rgba(111,184,255,0.3);
}
.sro-all .sro-list-item__main { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.sro-all .sro-list-item__badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 6px;
}
.sro-all .sro-list-item__badge--nostroy { background: rgba(59, 130, 246, 0.10); color: #1e40af; }
.sro-all .sro-list-item__badge--nopriz { background: rgba(168, 85, 247, 0.10); color: #6b21a8; }
.sro-all .sro-list-item__title {
  font-family: var(--t-headline-font, inherit);
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  margin: 0;
  line-height: 1.3;
}
.sro-all .sro-list-item__desc {
  font-size: 13px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sro-all .sro-list-item__meta { display: flex; gap: 32px; align-items: center; }
.sro-all .sro-list-item__meta-item { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sro-all .sro-list-item__meta-label { font-size: 11px; font-weight: 500; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.05em; }
.sro-all .sro-list-item__meta-value { font-size: 13px; font-weight: 500; color: #334155; white-space: nowrap; }
.sro-all .sro-list-item__meta-value.sro-mono {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
  background: #f8fafc;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--color-border);
}
.sro-all .sro-list-item__action { display: flex; align-items: center; }
.sro-all .sro-list-item__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  background: #1e293b;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 200ms var(--ease-in-out), color 200ms var(--ease-in-out), transform 200ms var(--ease-in-out), box-shadow 200ms var(--ease-in-out);
  white-space: nowrap;
}
@media (max-width: 960px) {
  .sro-all .sro-list-item { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .sro-all .sro-list-item__meta { flex-wrap: wrap; gap: 16px; padding-top: 12px; border-top: 1px dashed var(--color-border); }
  .sro-all .sro-list-item__action { justify-content: stretch; }
  .sro-all .sro-list-item__btn { width: 100%; padding: 12px 24px; }
}
@media (max-width: 480px) {
  .sro-all .sro-list-view { padding: 4px; border-radius: 12px; }
  .sro-all .sro-list-item { border-radius: 8px; }
}

/* ---------- 3.8 Region cluster ---------- */
.sro-all .sro-region-cluster { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 900px) {
  .sro-all .sro-region-cluster { grid-template-columns: 1fr 1fr; gap: 24px; align-items: start; }
}
.sro-all .sro-region-cluster__group { display: flex; flex-direction: column; gap: 16px; min-width: 0; }
.sro-all .sro-region-cluster__group-head { display: flex; flex-direction: column; gap: 6px; padding-bottom: 4px; }
.sro-all .sro-region-cluster__group-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.sro-all .sro-region-cluster__group-badge--nostroy { background: var(--color-text-primary); color: #FFFFFF; }
.sro-all .sro-region-cluster__group-badge--nopriz { background: rgba(111,184,255,0.15); color: #1D4ED8; }
.sro-all .sro-region-cluster__group-note { font-size: 12.5px; color: #64748B; line-height: 1.45; margin: 0; }
.sro-all .sro-region-cluster__stack { display: flex; flex-direction: column; gap: 16px; }
.sro-all .sro-region-card {
  position: relative;
  padding: 28px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms ease-out;
}
.sro-all .sro-region-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -12px rgba(15,23,42,0.10);
  border-color: var(--color-border-accent);
}
.sro-all .sro-region-card__head { display: flex; flex-direction: column; gap: 10px; }
.sro-all .sro-region-card__type {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  background: rgba(111,184,255,0.10);
  color: #1D4ED8;
}
.sro-all .sro-region-card--nostroy .sro-region-card__type { background: var(--color-text-primary); color: #FFFFFF; }
.sro-all .sro-region-card--nopriz .sro-region-card__type { background: rgba(111,184,255,0.15); color: #1D4ED8; }
.sro-all .sro-region-card__type--build  { background: rgba(59, 130, 246, 0.10) !important; color: #1e40af !important; }
.sro-all .sro-region-card__type--design { background: rgba(168, 85, 247, 0.10) !important; color: #6b21a8 !important; }
.sro-all .sro-region-card__type--survey { background: rgba(34, 197, 94, 0.10) !important; color: #166534 !important; }
.sro-all .sro-region-card__title {
  font-family: var(--t-headline-font, inherit);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.3;
  color: #0F172A;
  margin: 0;
}
.sro-all .sro-region-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--color-text-secondary);
  margin: 0;
  border-top: 1px dashed var(--color-border-strong);
  padding-top: 12px;
}
.sro-all .sro-region-card__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sro-all .sro-region-card__stat {
  padding: 10px 12px;
  background: var(--color-bg-tertiary);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  transition: background-color 200ms ease-out, border-color 200ms ease-out;
  min-width: 0;
}
.sro-all .sro-region-card__stat:hover {
  background: rgba(111,184,255,0.06);
  border-color: rgba(111,184,255,0.20);
}
.sro-all .sro-region-card__stat--wide { grid-column: 1 / -1; }
.sro-all .sro-region-card__stat-label { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); }
.sro-all .sro-region-card__stat-value {
  font-size: 13px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.4;
  font-variant-numeric: tabular-nums;
  word-break: break-word;
}
.sro-all .sro-region-card__stat-value--accent { color: #1D4ED8; }
.sro-all .sro-region-card__footer { margin-top: auto; padding-top: 14px; border-top: 1px dashed var(--color-border-strong); }
.sro-all .sro-region-card__verdict { display: flex; align-items: flex-start; gap: 10px; font-size: 12.5px; line-height: 1.5; color: var(--color-text-secondary); }
.sro-all .sro-region-card__verdict-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primitive-green-500);
  box-shadow: 0 0 0 2px rgba(16,185,129,0.2);
  flex-shrink: 0;
  margin-top: 6px;
}
.sro-all .sro-region-card__verdict strong { color: #0F172A; font-weight: 600; }
@media (max-width: 640px) {
  .sro-all .sro-region-card { padding: 20px; }
  .sro-all .sro-region-card__stats { grid-template-columns: 1fr; }
  .sro-all .sro-region-card__stat--wide { grid-column: 1; }
}

/* ---------- 3.8.X HUMAN-IN-THE-LOOP: Expert Bento & Timeline Executor ---------- */
.sro-expert-bento {
  position: relative;
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  background: rgba(251, 252, 254, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: start;
  margin-top: 48px;
  margin-bottom: 16px;
  transition: transform 0.4s var(--ease-product), box-shadow 0.4s ease;
}
.sro-expert-bento:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px -8px rgba(30, 41, 59, 0.08);
}
.sro-expert-bento::before, .sro-expert-bento::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  pointer-events: none;
  z-index: 1;
}
.sro-expert-bento::before {
  top: -1px; left: -1px;
  border-top: 2px solid var(--color-accent);
  border-left: 2px solid var(--color-accent);
  border-top-left-radius: 12px;
}
.sro-expert-bento::after {
  bottom: -1px; right: -1px;
  border-bottom: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  border-bottom-right-radius: 12px;
}
.sro-expert-bento__photo-wrap {
  position: relative;
  width: 120px;
  height: 150px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  filter: grayscale(100%) contrast(1.05);
  transition: filter 0.4s ease;
}
.sro-expert-bento:hover .sro-expert-bento__photo-wrap { filter: grayscale(0%) contrast(1); }
.sro-expert-bento__photo { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.sro-expert-bento__status-dot {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 12px;
  height: 12px;
  background: var(--primitive-green-500);
  border: 2px solid #FBFCFE;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}
.sro-expert-bento__header { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.sro-expert-bento__name {
  font-family: var(--t-headline-font, inherit);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-text-primary);
  letter-spacing: -0.01em;
  margin: 0;
}
.sro-expert-bento__role { font-size: 13px; color: #64748b; font-weight: 500; }
.sro-expert-bento__status-text {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(111, 184, 255, 0.08);
  border: 1px solid rgba(111, 184, 255, 0.2);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #1D4ED8;
  margin-bottom: 16px;
}
.sro-expert-bento__status-pulse {
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.3; } }
.sro-expert-bento__quote {
  font-size: 15px;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin: 0 0 20px 0;
  max-width: 560px;
}
.sro-expert-bento__quote::before { content: '«'; color: var(--color-accent); font-weight: 700; font-size: 18px; }
.sro-expert-bento__quote::after { content: '»'; color: var(--color-accent); font-weight: 700; font-size: 18px; }
.sro-expert-bento__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-primary);
  text-decoration: none;
  padding: 10px 16px;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  background: #FFFFFF;
  transition: all 0.2s ease;
}
.sro-expert-bento__link:hover { border-color: var(--color-accent); color: #1D4ED8; transform: translateX(4px); }
.sro-expert-bento__link svg { transition: transform 0.2s ease; }
.sro-expert-bento__link:hover svg { transform: translateX(2px); }
.sro-timeline__executor {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 6px 12px 6px 6px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}
.sro-timeline__executor-photo { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(0,0,0,0.08); }
.sro-timeline__executor span { font-size: 13px; font-weight: 500; color: var(--color-text-secondary); }
@media (max-width: 768px) {
  .sro-expert-bento { grid-template-columns: 1fr; text-align: center; padding: 24px; gap: 20px; }
  .sro-expert-bento__photo-wrap { width: 100px; height: 120px; margin: 0 auto; }
  .sro-expert-bento__header { align-items: center; }
  .sro-expert-bento__status-text { margin-left: auto; margin-right: auto; }
  .sro-expert-bento__quote { text-align: left; }
  .sro-expert-bento__link { width: 100%; justify-content: center; }
  .sro-expert-bento:hover { transform: none; box-shadow: none; }
}

/* ---------- 3.6 Секции ---------- */
.sro-all .sro-section { padding: 96px 0; border-bottom: 1px solid var(--color-border); }
@media (max-width: 640px) {
  .sro-all .sro-section { padding: 60px 0; }
  .sro-all .sro-types, .sro-all .sro-market, .sro-all .sro-cta { padding: 60px 0; }
}
.sro-all .sro-section--alt { background: var(--color-bg-secondary); }
.sro-all .sro-section h2 {
  font-family: var(--t-headline-font, inherit);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--color-text-primary);
  margin-bottom: 16px;
}
.sro-all .sro-section__intro {
  font-size: 16px;
  color: var(--color-text-secondary);
  max-width: 540px;
  margin-bottom: 52px;
  line-height: 1.6;
}

/* ---------- 3.7 Pain cards ---------- */
.sro-all .sro-pains__grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .sro-all .sro-pains__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .sro-all .sro-pains__grid { grid-template-columns: repeat(3, 1fr); } }
.sro-all .sro-pains__grid--2col { grid-template-columns: 1fr; }
@media (min-width: 640px) { .sro-all .sro-pains__grid--2col { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .sro-all .sro-pains__grid--2col { grid-template-columns: repeat(2, 1fr); } }
.sro-all .sro-pains__card {
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-secondary);
  transition: transform var(--duration-base) ease-out, box-shadow var(--duration-base) ease-out, border-color var(--duration-base) ease-out;
  transform-origin: center;
}
.sro-all .sro-pains__card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 48px -12px rgba(0,0,0,0.08);
  border-color: var(--color-accent);
}
@media (hover: none) and (pointer: coarse) {
  .sro-all .sro-pains__card:hover, .sro-all .sro-pricing__card:hover, .sro-all .sro-types__card:hover, .sro-all .sro-market__card:hover {
    transform: none !important;
    box-shadow: 0 8px 16px -8px rgba(0,0,0,0.06);
  }
}
.sro-all .sro-pains__card-icon { width: 28px; height: 28px; margin-bottom: 20px; opacity: 0.7; }
.sro-all .sro-pains__card h3 {
  font-family: var(--t-headline-font, inherit);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--color-text-primary);
  margin-bottom: 8px;
}
.sro-all .sro-pains__card p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 20px; }
.sro-all .sro-pains__loss { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; background: rgba(111,184,255,0.10); border-radius: 4px; }
.sro-all .sro-pains__loss-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }
.sro-all .sro-pains__loss .sro-micro { color: #64748b; font-size: 11px; }

/* ---------- 3.8 Reputation bento ---------- */
.sro-all .sro-reputation-bento { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 900px) {
  .sro-all .sro-reputation-bento {
    grid-template-columns: 1.15fr 1fr;
    grid-template-areas: "members social" "legal   finance";
  }
  .sro-all .sro-reputation-bento > :nth-child(1) { grid-area: members; }
  .sro-all .sro-reputation-bento > :nth-child(2) { grid-area: social; }
  .sro-all .sro-reputation-bento > :nth-child(3) { grid-area: legal; }
  .sro-all .sro-reputation-bento > :nth-child(4) { grid-area: finance; }
}

/* ---------- 3.9 Chips ---------- */
.sro-all .sro-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.sro-all .sro-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--color-text-primary);
  white-space: nowrap;
  transition: border-color var(--duration-base) ease-out, background-color var(--duration-base) ease-out;
}
.sro-all .sro-chip:hover { border-color: rgba(111,184,255,0.4); background: rgba(111,184,255,0.04); }
.sro-all .sro-chip__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--color-accent); flex-shrink: 0; }

/* Кнопка CTA рассчитать внизу экрана на мобильных */
.sro-bottom-cta { display: none; }
@media (max-width: 768px) {
  .sro-bottom-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--color-bg-overlay);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0,0,0,0.08);
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
    transform: translateY(100%);
    transition: transform 400ms var(--ease-product);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
  }
  .sro-bottom-cta.is-visible { transform: translateY(0); }
  .sro-bottom-cta__info { display: flex; flex-direction: column; }
  .sro-bottom-cta__label { font-family: 'tilda-ui', sans-serif; font-size: 11px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.05em; }
  .sro-bottom-cta__value { font-family: 'tilda-sans', 'tilda-ui', sans-serif; font-size: 18px; font-weight: 600; color: var(--color-text-primary); }
  .sro-bottom-cta__btn {
    flex-shrink: 0;
    padding: 12px 24px;
    background: var(--color-text-primary);
    color: #fff;
    border-radius: 8px;
    font-family: 'tilda-sans', 'tilda-ui', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    box-shadow: var(--shadow-sm);
    transition: transform 150ms ease-out, background-color 150ms ease-out;
    border: none;
    cursor: pointer;
  }
  .sro-bottom-cta__btn:active { transform: scale(0.96); background: var(--color-accent); color: var(--color-text-primary); }
}

/* ---------- 3.10 Timeline ---------- */
.sro-all .sro-timeline { padding-left: 40px; }
@media (max-width: 640px) {
  .sro-all .sro-timeline { padding-left: 20px; }
  .sro-all .sro-timeline__step { grid-template-columns: 60px 1fr; gap: 16px; padding: 30px 0; }
  .sro-all .sro-timeline__num { font-size: 56px; }
}
.sro-all .sro-timeline__step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid var(--color-border);
  align-items: start;
}
.sro-all .sro-timeline__step:last-child { border-bottom: 1px solid var(--color-border); }
.sro-all .sro-timeline__num {
  font-family: var(--t-headline-font, inherit);
  font-size: 80px;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  user-select: none;
}
.sro-all .sro-timeline__content { padding-top: 8px; }
.sro-all .sro-timeline__content h3 { font-family: var(--t-headline-font, inherit); font-size: 20px; font-weight: 600; color: var(--color-text-primary); margin-bottom: 8px; }
.sro-all .sro-timeline__content p { font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; }
.sro-all .sro-timeline__step--active .sro-timeline__num { color: rgba(111,184,255,0.3); }

/* ---------- 3.11 Guarantee ---------- */
.sro-all .sro-guarantee {
  padding: 32px 48px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-secondary);
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 64px;
}
@media (min-width: 768px) { .sro-all .sro-guarantee { grid-template-columns: auto 1fr; gap: 32px; align-items: center; } }
@media (max-width: 640px) {
  .sro-all .sro-guarantee { padding: 24px; grid-template-columns: 1fr; text-align: center; }
  .sro-all .sro-guarantee__icon { margin: 0 auto; }
}
.sro-all .sro-guarantee__icon { width: 40px; height: 40px; opacity: 0.6; }
.sro-all .sro-guarantee h3 { font-family: var(--t-headline-font, inherit); font-size: 18px; font-weight: 600; color: var(--color-text-primary); margin-bottom: 4px; }
.sro-all .sro-guarantee p { font-size: 14px; color: var(--color-text-secondary); line-height: 1.5; }

/* ---------- 3.12 Types ---------- */
.sro-all .sro-types { padding: 80px 0; border-bottom: 1px solid var(--color-border); }
@media (max-width: 640px) { .sro-all .sro-types { padding: 60px 0; } }
.sro-all .sro-types h2 { font-family: var(--t-headline-font, inherit); font-size: clamp(24px, 2.8vw, 32px); font-weight: 600; letter-spacing: -0.02em; color: var(--color-text-primary); margin-bottom: 16px; }
.sro-all .sro-types p { font-size: 16px; color: var(--color-text-secondary); max-width: 760px; line-height: 1.7; margin-bottom: 12px; }
.sro-all .sro-types ul { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.sro-all .sro-types ul li::before { content: '— '; color: var(--color-accent); }
.sro-all .sro-types .sro-types__grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 32px; }
@media (min-width: 768px) { .sro-all .sro-types .sro-types__grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.sro-all .sro-types .sro-types__card {
  background: var(--color-bg-secondary);
  padding: 32px 28px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  transition: transform var(--duration-base) ease-out, box-shadow var(--duration-base) ease-out;
}
.sro-all .sro-types .sro-types__card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px -8px rgba(0,0,0,0.06); }
.sro-all .sro-types .sro-types__card-icon { width: 32px; height: 32px; opacity: 0.5; margin-bottom: 20px; }
.sro-all .sro-types .sro-types__card h3 { font-family: var(--t-headline-font, inherit); font-size: 18px; font-weight: 600; color: var(--color-text-primary); margin-bottom: 8px; }
.sro-all .sro-types .sro-types__card p, .sro-all .sro-types .sro-types__card li { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; }
.sro-all .sro-types .sro-types__card ul { margin-top: 6px; }

/* ---------- 3.13 Market ---------- */
.sro-all .sro-market { padding: 80px 0; border-bottom: 1px solid var(--color-border); background: var(--color-bg-secondary); }
@media (max-width: 640px) { .sro-all .sro-market { padding: 60px 0; } }
.sro-all .sro-market h2 { font-family: var(--t-headline-font, inherit); font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; letter-spacing: -0.02em; color: var(--color-text-primary); margin-bottom: 40px; }
.sro-all .sro-market__grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .sro-all .sro-market__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .sro-all .sro-market__grid { grid-template-columns: repeat(4, 1fr); } }
.sro-all .sro-market__card {
  padding: 28px 24px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: #FFFFFF;
  text-align: center;
  transition: transform var(--duration-base) ease-out, box-shadow var(--duration-base) ease-out;
}
.sro-all .sro-market__card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px -8px rgba(0,0,0,0.06); }
.sro-all .sro-market__card-value { font-family: var(--t-headline-font, inherit); font-size: clamp(20px, 2.5vw, 28px); font-weight: 500; letter-spacing: -0.02em; color: var(--color-text-primary); line-height: 1.2; margin-bottom: 6px; }
.sro-all .sro-market__card-label { font-size: 13px; color: var(--color-text-secondary); line-height: 1.5; margin-bottom: 16px; }
.sro-all .sro-market__card-icon { width: 24px; height: 24px; opacity: 0.5; margin-bottom: 16px; }
.sro-all .sro-nrs-info { margin-top: 32px; background: var(--color-bg-secondary); padding: 24px; border-radius: 8px; border: 1px solid var(--color-border); }
.sro-all .sro-nrs-info h3 { font-family: var(--t-headline-font, inherit); font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.sro-all .sro-nrs-info p { font-size: 15px; color: var(--color-text-secondary); }
.sro-all .sro-nrs-info ul { list-style: none; display: flex; flex-direction: column; gap: 6px; font-size: 15px; color: var(--color-text-secondary); margin-top: 8px; }

/* ---------- 3.14 View toggle ---------- */
.sro-all .sro-view-toggle {
  display: inline-flex;
  padding: 4px;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  gap: 2px;
  margin-bottom: 16px;
}
.sro-all .sro-view-toggle__btn {
  padding: 8px 16px;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: background-color var(--duration-base) ease-out, color var(--duration-base) ease-out, box-shadow var(--duration-base) ease-out;
  font-family: inherit;
}
.sro-all .sro-view-toggle__btn:hover { color: var(--color-text-primary); }
.sro-all .sro-view-toggle__btn--active { background: #FFFFFF; color: var(--color-text-primary); box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.sro-all .sro-view-toggle__btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.sro-all .sro-view--hidden { display: none; }

/* ---------- 3.15 Scale view ---------- */
.sro-all .sro-scale { display: flex; flex-direction: column; gap: 12px; padding: 24px; border: 1px solid var(--color-border); border-radius: 12px; background: #FFFFFF; }
.sro-all .sro-scale__row {
  padding: 16px 20px;
  border-radius: 10px;
  background: var(--color-bg-secondary);
  border: 1px solid rgba(0,0,0,0.04);
  transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms ease-out;
}
.sro-all .sro-scale__row:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(0,0,0,0.08); border-color: var(--color-border-accent); }
.sro-all .sro-scale__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; gap: 12px; flex-wrap: wrap; }
.sro-all .sro-scale__level { font-family: var(--t-headline-font, inherit); font-size: 15px; font-weight: 600; color: var(--color-text-primary); }
.sro-all .sro-scale__limit { font-size: 12px; color: var(--color-text-primary); padding: 3px 10px; background: rgba(111,184,255,0.10); border: 1px solid rgba(111,184,255,0.15); border-radius: 6px; font-weight: 500; }
.sro-all .sro-scale__bars { display: flex; flex-direction: column; gap: 6px; }
.sro-all .sro-scale__bar { display: grid; grid-template-columns: 60px 1fr 110px; gap: 10px; align-items: center; }
.sro-all .sro-scale__bar-label { font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase; color: var(--color-text-muted); }
.sro-all .sro-scale__bar-track { height: 8px; background: rgba(148,163,184,0.12); border-radius: 4px; overflow: hidden; }
.sro-all .sro-scale__bar-fill { height: 100%; border-radius: 4px; min-width: 8px; transition: width 800ms var(--ease-out-expo); }
.sro-all .sro-scale__bar--vv .sro-scale__bar-fill { background: linear-gradient(90deg, var(--color-accent), var(--primitive-blue-300)); }
.sro-all .sro-scale__bar--odo .sro-scale__bar-fill { background: linear-gradient(90deg, var(--color-text-primary), var(--color-text-secondary)); }
.sro-all .sro-scale__bar-value { font-size: 13px; font-weight: 600; color: var(--color-text-primary); text-align: right; font-variant-numeric: tabular-nums; }
@media (max-width: 640px) {
  .sro-all .sro-scale { padding: 16px; }
  .sro-all .sro-scale__row { padding: 12px 14px; }
  .sro-all .sro-scale__bar { grid-template-columns: 1fr auto; gap: 4px 10px; }
  .sro-all .sro-scale__bar-track { grid-column: 1 / -1; }
  .sro-all .sro-scale__bar-label { font-size: 10px; }
  .sro-all .sro-scale__bar-value { font-size: 12px; }
}

/* ---------- 3.16 Table ---------- */
.sro-all .sro-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 12px; border: 1px solid var(--color-border); background: #FFFFFF; }
.sro-all .sro-table { width: 100%; border-collapse: separate; border-spacing: 0; font-size: 15px; }
.sro-all .sro-table thead { background: var(--color-bg-secondary); }
.sro-all .sro-table thead tr { border-bottom: 1px solid var(--color-border); }
.sro-all .sro-table th { padding: 16px 20px; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); text-align: left; white-space: nowrap; }
.sro-all .sro-table td { padding: 16px 20px; border-bottom: 1px solid rgba(0,0,0,0.04); color: var(--color-text-primary); vertical-align: middle; font-variant-numeric: tabular-nums; transition: background-color var(--duration-base) ease-out; }
.sro-all .sro-table td:first-child { color: var(--color-text-secondary); font-size: 14px; font-weight: 500; }
.sro-all .sro-table tbody tr:last-child td { border-bottom: none; }
.sro-all .sro-table tbody tr:hover td { background-color: rgba(111,184,255,0.03); }
.sro-all .sro-table__highlight { font-weight: 600; color: #1A2635; font-size: 15px; }
.sro-all .sro-table__badge { display: inline-flex; align-items: center; padding: 4px 10px; border-radius: 6px; background: rgba(111,184,255,0.08); border: 1px solid rgba(111,184,255,0.15); font-size: 12px; font-weight: 500; letter-spacing: 0.02em; color: #1A2635; }
@media (max-width: 768px) {
  .sro-all .sro-table-wrap { overflow-x: visible; border: none; background: transparent; }
  .sro-all .sro-table, .sro-all .sro-table thead, .sro-all .sro-table tbody, .sro-all .sro-table th, .sro-all .sro-table td, .sro-all .sro-table tr { display: block; }
  .sro-all .sro-table thead { display: none; }
  .sro-all .sro-table tr { margin-bottom: 16px; border: 1px solid var(--color-border); border-radius: 12px; padding: 20px; background: #FFFFFF; box-shadow: 0 2px 8px rgba(0,0,0,0.02); max-width: 100%; overflow: hidden; }
  .sro-all .sro-table td { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid rgba(0,0,0,0.04); text-align: right; min-width: 0; overflow-wrap: break-word; }
  .sro-all .sro-table td:last-child { border-bottom: none; padding-bottom: 0; }
  .sro-all .sro-table td:first-child { padding-top: 0; font-size: 16px; font-weight: 600; color: #1A2635; margin-bottom: 4px; border-bottom: 1px solid rgba(111,184,255,0.15); padding-bottom: 12px; }
  .sro-all .sro-table td::before { content: attr(data-label); font-size: 12px; font-weight: 500; color: var(--color-text-muted); text-align: left; margin-right: 16px; flex-shrink: 0; }
  .sro-all .sro-table td:first-child::before { display: none; }
}

/* ---------- 3.17 Region select ---------- */
.sro-all .sro-region-select {
  width: 100%;
  padding: 11px 40px 11px 14px;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  background-color: #FFFFFF;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--color-text-primary);
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  transition: border-color var(--duration-base) ease-out, box-shadow var(--duration-base) ease-out;
}
.sro-all .sro-region-select:hover { border-color: rgba(111,184,255,0.5); }
.sro-all .sro-region-select:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(111,184,255,0.12); }
.sro-all .sro-pricing__card--vip .sro-region-select {
  border-color: rgba(255,255,255,0.15);
  background-color: rgba(255,255,255,0.05);
  color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.sro-all .sro-pricing__card--vip .sro-region-select:hover { border-color: var(--color-accent); }
.sro-all .sro-pricing__card--vip .sro-region-select:focus { border-color: var(--color-accent); }
.sro-all .sro-pricing__card--vip .sro-region-select option { color: var(--color-text-primary); background: #FFFFFF; }
.sro-all .sro-region-selector { margin-top: auto; padding-top: 20px; border-top: 1px solid var(--color-border); }
.sro-all .sro-pricing__card--vip .sro-region-selector { border-top-color: rgba(255,255,255,0.1); }
.sro-all .sro-region-selector__label { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); display: block; margin-bottom: 8px; }
.sro-all .sro-pricing__card--vip .sro-region-selector__label { color: rgba(255,255,255,0.5); }
.sro-all .sro-region-selector__hint { font-size: 12px; color: var(--color-text-muted); margin-top: 8px; line-height: 1.45; }
.sro-all .sro-pricing__card--vip .sro-region-selector__hint { color: rgba(255,255,255,0.5); }
.sro-all .sro-region-selector__hint strong { color: var(--color-text-primary); }
.sro-all .sro-pricing__card--vip .sro-region-selector__hint strong { color: var(--color-accent); }

/* ---------- 3.18 Pricing ---------- */
.sro-all .sro-pricing { display: grid; grid-template-columns: 1fr; gap: 16px; align-items: stretch; }
@media (min-width: 640px) { .sro-all .sro-pricing { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) {
  .sro-all .sro-pricing { gap: 24px; }
  .sro-all .sro-pricing__card--vip { margin-top: 0; margin-bottom: 0; padding: 32px; }
}
.sro-all .sro-pricing__card {
  padding: 32px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-bg-secondary);
  transition: transform var(--duration-base) ease-out, box-shadow var(--duration-base) ease-out, border-color var(--duration-base) ease-out;
  transform-origin: center;
  display: flex;
  flex-direction: column;
}
.sro-all .sro-pricing__card:hover { transform: translateY(-8px) scale(1.015); box-shadow: 0 24px 48px -12px rgba(0,0,0,0.08); border-color: var(--color-accent); }
.sro-all .sro-pricing__card--vip { background: #1A2635; border-color: #1A2635; padding: 48px 32px; box-shadow: 0 8px 24px rgba(0,0,0,0.06); margin-top: -8px; margin-bottom: -8px; }
.sro-all .sro-pricing__card--vip:hover { border-color: var(--color-accent); box-shadow: 0 16px 40px rgba(0,0,0,0.10); }
.sro-all .sro-pricing__plan { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 16px; }
.sro-all .sro-pricing__card--vip .sro-pricing__plan { color: rgba(255,255,255,0.4); }
.sro-all .sro-pricing__name { font-family: var(--t-headline-font, inherit); font-size: 20px; font-weight: 600; color: var(--color-text-primary); margin-bottom: 8px; }
.sro-all .sro-pricing__card--vip .sro-pricing__name { color: #fff; }
.sro-all .sro-pricing__price { font-family: var(--t-headline-font, inherit); font-size: 32px; font-weight: 600; letter-spacing: -0.02em; color: var(--color-text-primary); margin-bottom: 4px; }
.sro-all .sro-pricing__card--vip .sro-pricing__price { color: var(--color-accent); }
.sro-all .sro-pricing__price-note { font-size: 13px; color: var(--color-text-muted); margin-bottom: 28px; }
.sro-all .sro-pricing__card--vip .sro-pricing__price-note { color: rgba(255,255,255,0.35); }
.sro-all .sro-pricing__divider { height: 1px; background: var(--color-border); margin-bottom: 24px; }
.sro-all .sro-pricing__card--vip .sro-pricing__divider { background: rgba(255,255,255,0.1); }
.sro-all .sro-pricing__features { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; flex: 1; padding: 0; }
.sro-all .sro-pricing__feature { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--color-text-secondary); line-height: 1.5; }
.sro-all .sro-pricing__card--vip .sro-pricing__feature { color: rgba(255,255,255,0.6); }
.sro-all .sro-pricing__feature::before { content: '—'; font-size: 12px; color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.sro-all .sro-pricing__desc { font-size: 14px; color: var(--color-text-secondary); line-height: 1.55; margin: 0 0 24px; flex: 1; }
.sro-all .sro-pricing__card--vip .sro-pricing__desc { color: rgba(255,255,255,0.7); }
.sro-all .sro-pricing__btn { width: 100%; text-align: center; justify-content: center; margin-top: 20px; }
.sro-all .sro-pricing__card--vip .sro-pricing__btn { border-color: var(--color-accent); color: #fff; }
.sro-all .sro-pricing__card--vip .sro-pricing__btn:hover { background: var(--color-accent); color: var(--color-text-primary); }
.sro-all .sro-pricing__sro-type { display: inline-block; padding: 3px 10px; border-radius: 4px; background: rgba(111,184,255,0.10); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-accent); margin-bottom: 12px; width: fit-content; }
.sro-all .sro-pricing__card--vip .sro-pricing__sro-type { background: rgba(111,184,255,0.15); color: var(--color-accent); }

/* ---------- 3.19 FAQ ---------- */
.sro-all .sro-faq { display: flex; flex-direction: column; }
.sro-all .sro-faq details { border-top: 1px solid var(--color-border); }
.sro-all .sro-faq details:last-child { border-bottom: 1px solid var(--color-border); }
.sro-all .sro-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-text-primary);
  gap: 16px;
  user-select: none;
}
@media (max-width: 640px) { .sro-all .sro-faq summary { padding: 16px 0; font-size: 15px; } }
.sro-all .sro-faq summary::-webkit-details-marker { display: none; }
.sro-all .sro-faq__arrow {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-base) ease-out;
}
.sro-all .sro-faq__arrow-icon {
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--color-text-secondary);
  border-bottom: 1.5px solid var(--color-text-secondary);
  transform: rotate(45deg);
  transition: transform var(--duration-base) ease-out;
  margin-top: -3px;
}
.sro-all .sro-faq details[open] .sro-faq__arrow { border-color: var(--color-accent); }
.sro-all .sro-faq details[open] .sro-faq__arrow-icon { transform: rotate(-135deg); margin-top: 3px; border-color: var(--color-accent); }
.sro-all .sro-faq__body { padding: 0 0 24px; font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; max-width: 720px; }
.sro-all .sro-faq__body ul { margin-top: 12px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 6px; }
.sro-all .sro-faq__body ul li::before { content: '— '; color: var(--color-accent); }

/* ---------- 3.20 CTA form ---------- */
.sro-all .sro-cta { padding: 96px 0; }
@media (max-width: 640px) { .sro-all .sro-cta { padding: 60px 0; } }
.sro-all .sro-cta__grid { display: grid; grid-template-columns: 1fr; gap: 64px; }
@media (min-width: 960px) { .sro-all .sro-cta__grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; } }
.sro-all .sro-cta h2 { font-family: var(--t-headline-font, inherit); font-size: clamp(28px, 3.5vw, 40px); font-weight: 600; letter-spacing: -0.02em; color: var(--color-text-primary); margin-bottom: 16px; }
.sro-all .sro-cta__desc { font-size: 15px; color: var(--color-text-secondary); line-height: 1.6; margin-bottom: 32px; }
.sro-all .sro-cta__promise { display: flex; flex-direction: column; gap: 16px; }
.sro-all .sro-cta__promise-item { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--color-text-secondary); }
.sro-all .sro-cta__promise-item img { width: 20px; height: 20px; opacity: 0.5; flex-shrink: 0; margin-top: 1px; }
.sro-all .sro-form { font-family: var(--sro-font); margin-top: 0; }
.sro-all .sro-form input, .sro-all .sro-form textarea, .sro-all .sro-form select { font: inherit; }
.sro-all .sro-input-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.sro-all .sro-input-group label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); }
.sro-all .sro-input-group input[type="text"], .sro-all .sro-input-group input[type="tel"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border-strong);
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  color: var(--color-text-primary);
  outline: none;
  transition: border-color var(--duration-base) ease-out;
  -webkit-appearance: none;
  box-sizing: border-box;
}
.sro-all .sro-input-group input:focus { border-color: var(--color-accent); }
.sro-all .sro-input-group.t-input_error input, .sro-all .sro-input-group.t-input_error textarea, .sro-all .sro-input-group.t-input_error select { border-color: #e53e3e; }
.sro-all .sro-input-group .t-input-error { font-size: 12px; color: #e53e3e; min-height: 16px; }
.sro-all .sro-form__submit { width: 100%; margin-top: 8px; }
.sro-all .sro-checkbox-group { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 12px 16px; margin: 0; }
.sro-all .sro-checkbox-group input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--color-accent); }
.sro-all .sro-checkbox-group label { font-size: 8px; line-height: 1.5; color: var(--color-text-secondary); flex: 1; }
.sro-all .sro-checkbox-group label a { color: var(--color-text-primary); text-decoration: underline; }
.sro-all .sro-checkbox-group label a:hover { color: var(--color-accent); }
.sro-all .sro-input-group.sro-input-group--checkbox .t-input-error { font-size: 12px; color: #e53e3e; min-height: 16px; margin-top: 4px; }
.sro-all .js-successbox { padding: 24px; border: 1px solid rgba(111,184,255,0.4); border-radius: 8px; background: rgba(111,184,255,0.08); color: var(--color-text-primary); font-size: 15px; }

/* ---------- 3.21 Анимации и Stagger ---------- */
/* Удалены разрозненные prefers-reduced-motion блоки, так как глобальный в начале файла управляет этим надежнее */
@media (prefers-reduced-motion: no-preference) {
  .sro-all .sro-animate { opacity: 1; transform: translateY(0); transition: opacity var(--duration-enter) ease-out, transform var(--duration-enter) ease-out; }
  .sro-all .sro-animate--hidden { opacity: 0; transform: translateY(20px); }
}
@media (prefers-reduced-motion: no-preference) {
  .sro-all .sro-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity 500ms var(--ease-out-expo), transform 500ms var(--ease-out-expo); }
  .sro-all .sro-stagger.sro-stagger--visible > * { opacity: 1; transform: translateY(0); }
  .sro-all .sro-stagger.sro-stagger--visible > *:nth-child(1) { transition-delay: 0ms; }
  .sro-all .sro-stagger.sro-stagger--visible > *:nth-child(2) { transition-delay: 80ms; }
  .sro-all .sro-stagger.sro-stagger--visible > *:nth-child(3) { transition-delay: 160ms; }
  .sro-all .sro-stagger.sro-stagger--visible > *:nth-child(4) { transition-delay: 240ms; }
  .sro-all .sro-stagger.sro-stagger--visible > *:nth-child(5) { transition-delay: 320ms; }
  .sro-all .sro-stagger.sro-stagger--visible > *:nth-child(6) { transition-delay: 400ms; }
}

/* ---------- 3.22 Калькулятор (scb) ---------- */
.sro-all .scb-input-group--promo {
  background: linear-gradient(135deg, rgba(111,184,255,0.06) 0%, rgba(111,184,255,0.01) 100%);
  border: 1px dashed rgba(111,184,255,0.3);
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 200ms ease-out, background 200ms ease-out, box-shadow 200ms ease-out;
}
.sro-all .scb-input-group--promo:hover { border-color: rgba(111,184,255,0.55); }
.sro-all .scb-input-group--promo.scb-promo--active {
  border-style: solid;
  border-color: var(--color-accent);
  background: linear-gradient(135deg, rgba(111,184,255,0.14) 0%, rgba(111,184,255,0.04) 100%);
  box-shadow: 0 0 0 3px rgba(111,184,255,0.1);
}
.sro-all .scb-input-group--promo.scb-promo--error {
  border-style: solid;
  border-color: rgba(249,115,22,0.5);
  background: linear-gradient(135deg, rgba(249,115,22,0.06) 0%, rgba(249,115,22,0.01) 100%);
}
.sro-all .scb-promo-head { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; }
.sro-all .scb-promo-icon {
  width: 24px; height: 24px; border-radius: 6px; background: rgba(111,184,255,0.15); color: var(--color-accent);
  display: inline-flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; flex-shrink: 0;
  transition: background-color 200ms ease-out;
}
.sro-all .scb-input-group--promo.scb-promo--active .scb-promo-icon { background: var(--color-accent); }
.sro-all .scb-promo-head-text { font-size: 12px; font-weight: 600; letter-spacing: 0.02em; color: #FFFFFF; line-height: 1.3; }
.sro-all .scb-promo-head-text span { display: block; font-weight: 400; font-size: 11px; color: var(--color-text-muted); letter-spacing: 0; margin-top: 2px; }
.sro-all .scb-promo-input-wrap { position: relative; display: flex; align-items: center; }
.sro-all .scb-promo-input {
  width: 100%; padding: 10px 40px 10px 14px; border: 1px solid rgba(148,163,184,0.2); border-radius: 8px;
  background: var(--color-text-primary); font-size: 13px; font-weight: 600; color: #FFFFFF; letter-spacing: 0.08em;
  text-transform: uppercase; outline: none; transition: border-color var(--duration-base) ease-out;
  font-family: var(--font-mono); min-height: 40px; box-sizing: border-box;
}
.sro-all .scb-promo-input:focus { border-color: var(--color-accent); }
.sro-all .scb-promo-input::placeholder { text-transform: none; letter-spacing: 0; font-family: inherit; font-weight: 400; color: var(--color-text-muted); }
.sro-all .scb-input-group--promo.scb-promo--active .scb-promo-input { border-color: var(--color-accent); color: var(--color-accent); }
.sro-all .scb-promo-check {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%); width: 20px; height: 20px;
  border-radius: 50%; background: rgba(148,163,184,0.12); color: var(--color-text-muted);
  display: inline-flex; align-items: center; justify-content: center; pointer-events: none;
  transition: background-color 200ms ease-out, color 200ms ease-out, transform 200ms ease-out;
}
.sro-all .scb-input-group--promo.scb-promo--active .scb-promo-check { background: var(--color-accent); color: #1A2635; transform: translateY(-50%) scale(1.1); }
.sro-all .scb-promo-feedback { font-size: 11px; line-height: 1.45; color: var(--color-text-muted); margin-top: 8px; transition: color 200ms ease-out; }
.sro-all .scb-input-group--promo.scb-promo--active .scb-promo-feedback { color: var(--color-accent); }
.sro-all .scb-input-group--promo.scb-promo--error .scb-promo-feedback { color: #fbbf77; }
.sro-all .scb__calc { background: #192635; border: 1px solid rgba(111,184,255,0.15); border-radius: 12px; padding: 24px 28px; color: #FFFFFF; }
@media (max-width: 640px) { .sro-all .scb__calc { padding: 16px; } }
.sro-all .scb-progress { margin-bottom: 20px; }
.sro-all .scb-progress__meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.sro-all .scb-progress__label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); }
.sro-all .scb-progress__pct { font-size: 12px; font-weight: 600; color: var(--color-accent); font-variant-numeric: tabular-nums; }
.sro-all .scb-progress__track { height: 3px; background: rgba(148,163,184,0.15); border-radius: 2px; overflow: hidden; }
.sro-all .scb-progress__fill { height: 100%; width: 0%; background: linear-gradient(90deg, var(--color-accent), var(--primitive-blue-300)); border-radius: 2px; transition: width 400ms var(--ease-out-expo); }
.sro-all .scb-input-group { grid-column: span 1; display: flex; flex-direction: column; gap: 4px; margin-bottom: 0; min-width: 0; transition: opacity 200ms ease-out, transform 200ms ease-out; }
.sro-all .scb-input-group.scb-hidden { display: none; }
.sro-all .scb-input-group--full { grid-column: span 2; }
@media (max-width: 768px) { .sro-all .scb-input-group--full, .sro-all .js-successbox { grid-column: span 1; } }
.sro-all .scb-input-group label, .sro-all .scb-input-group .scb-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 500; }
.sro-all .scb-input-group .scb-sub { font-size: 11px; color: var(--color-text-muted); line-height: 1.3; margin-top: -2px; }
.sro-all .scb-input-group select, .sro-all .scb-input-group input[type="text"], .sro-all .scb-input-group input[type="tel"] {
  width: 100%; max-width: 100%; padding: 10px 14px; border: 1px solid rgba(148,163,184,0.2); border-radius: 8px;
  background: var(--color-text-primary); font-size: 16px; color: #FFFFFF; outline: none; transition: border-color var(--duration-base) ease-out;
  -webkit-appearance: none; appearance: none; min-height: 40px; box-sizing: border-box;
}
.sro-all .scb-input-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2394A3B8' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px;
}
.sro-all .scb-input-group select:focus, .sro-all .scb-input-group input:focus { border-color: var(--color-accent); }
.sro-all .scb-input-group .t-input-error { font-size: 11px; color: var(--color-accent); min-height: 14px; }
.sro-all .scb-radios { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 2px; }
@media (max-width: 768px) { .sro-all .scb-radios { flex-direction: column; gap: 4px; } }
.sro-all .scb-radio-item {
  display: flex; align-items: center; gap: 6px; padding: 6px 12px; border: 1px solid rgba(148,163,184,0.2);
  border-radius: 6px; background: var(--color-text-primary); cursor: pointer; transition: border-color var(--duration-base) ease-out, background-color var(--duration-base) ease-out;
  font-size: 13px; color: var(--color-text-muted); user-select: none; min-width: 0; overflow-wrap: break-word; word-break: break-word;
}
@media (max-width: 768px) { .sro-all .scb-radio-item { padding: 6px 12px; } }
.sro-all .scb-radio-item:hover { border-color: var(--color-accent); }
.sro-all .scb-radio-item.scb-radio--checked { border-color: var(--color-accent); background: rgba(111,184,255,0.1); color: #FFFFFF; }
.sro-all .scb-radio-item input[type="radio"] { display: none; }
.sro-all .scb-radio-item span { line-height: 1.3; }
.sro-all .scb-bento { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 4px; }
@media (min-width: 640px) { .sro-all .scb-bento { grid-template-columns: 1fr 1.35fr; } }
.sro-all .scb-bento__total {
  padding: 20px; border-radius: 10px; background: linear-gradient(135deg, rgba(111,184,255,0.20) 0%, rgba(111,184,255,0.06) 100%);
  border: 1px solid rgba(111,184,255,0.35); display: flex; flex-direction: column; justify-content: center; position: relative; overflow: hidden; min-height: 130px;
}
.sro-all .scb-bento__total::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(111,184,255,0.22), transparent 55%); pointer-events: none; }
.sro-all .scb-bento__total > * { position: relative; z-index: 1; }
.sro-all .scb-bento__breakdown { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.sro-all .scb-bento__item {
  padding: 10px 12px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(148,163,184,0.15);
  display: flex; flex-direction: column; gap: 3px; transition: background-color 300ms ease-out, border-color 300ms ease-out;
}
.sro-all .scb-bento__item--active { background: rgba(111,184,255,0.10); border-color: rgba(111,184,255,0.3); }
.sro-all .scb-bento__item--pulse { animation: scbPulse 500ms ease-out; }
@keyframes scbPulse { 0% { transform: scale(1); } 30% { transform: scale(1.04); background: rgba(111,184,255,0.2); } 100% { transform: scale(1); } }
.sro-all .scb-bento__item-label { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); }
.sro-all .scb-bento__item-value { font-family: var(--t-headline-font, inherit); font-size: 14px; font-weight: 600; color: #FFFFFF; font-variant-numeric: tabular-nums; transition: color 300ms ease-out; }
.sro-all .scb-bento__item--active .scb-bento__item-value { color: var(--color-accent); }
.sro-all .scb-bento__coef {
  grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 8px 12px;
  border-radius: 8px; background: rgba(249,115,22,0.08); border: 1px solid rgba(249,115,22,0.2); font-size: 12px; color: #fbbf77;
}
.sro-all .scb-bento__coef.scb-hidden { display: none; }
.sro-all .scb-bento__coef-value { font-weight: 700; font-variant-numeric: tabular-nums; color: #fdba74; }
.sro-all .scb-cost-label { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-text-muted); }
.sro-all .scb-cost-value {
  font-family: var(--t-headline-font, inherit); font-size: clamp(26px, 3vw, 38px); font-weight: 600; letter-spacing: -0.02em;
  color: #FFFFFF; line-height: 1.1; font-variant-numeric: tabular-nums; margin-top: 4px;
}
.sro-all .scb-cost-currency { font-size: 16px; font-weight: 400; color: var(--color-text-muted); margin-left: 2px; }
.sro-all .scb-cost-note { font-size: 11px; color: var(--color-text-muted); margin-top: 4px; }
.sro-all .scb-cost-zero-note { display: none; font-size: 11px; color: var(--color-text-muted); margin-top: 8px; padding-top: 8px; border-top: 1px dashed rgba(148,163,184,0.2); grid-column: 1 / -1; }
.sro-all .scb-cost-zero-note.scb-visible { display: block; }
.sro-all .scb-checkbox-wrap { display: flex; align-items: flex-start; gap: 8px; padding-top: 2px; }
.sro-all .scb-checkbox-wrap input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-color: var(--color-text-primary); border: 1px solid rgba(148,163,184,0.2); border-radius: 4px; cursor: pointer; position: relative;
  transition: background-color var(--duration-base) ease-out, border-color var(--duration-base) ease-out;
}
.sro-all .scb-checkbox-wrap input[type="checkbox"]:hover { border-color: var(--color-accent); }
.sro-all .scb-checkbox-wrap input[type="checkbox"]:checked { background-color: var(--color-accent); border-color: var(--color-accent); }
.sro-all .scb-checkbox-wrap input[type="checkbox"]:checked::after {
  content: ''; position: absolute; left: 5px; top: 2px; width: 5px; height: 9px; border: solid #1A2635; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.sro-all .scb-checkbox-wrap input[type="checkbox"]:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 2px; }
.sro-all .scb-checkbox-wrap label { font-size: 8px; line-height: 1.5; color: var(--color-text-muted); }
.sro-all .scb-checkbox-wrap label a { color: #FFFFFF; text-decoration: underline; }
.sro-all .scb-checkbox-wrap label a:hover { color: var(--color-accent); }
.sro-all .scb-checkbox-wrap .t-input-error { font-size: 11px; color: var(--color-accent); min-height: 14px; }
.sro-all .scb-submit-wrap .t-submit {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border: 1px solid transparent;
  border-radius: 8px; background: var(--color-accent); color: #1A2635; font-family: inherit; font-size: 15px; font-weight: 600; line-height: 1;
  cursor: pointer; transition: background-color var(--duration-base) ease-out, color var(--duration-base) ease-out, border-color var(--duration-base) ease-out, transform var(--duration-base) ease-out; min-height: 44px;
}
.sro-all .scb-submit-wrap .t-submit:hover { background: #FFFFFF; color: #1A2635; border-color: #FFFFFF; transform: scale(1.015); }
.sro-all .scb-submit-wrap .t-submit:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 2px; }
.sro-all .js-successbox.t-form__successbox { display: block; background: rgba(111,184,255,0.1); border: 1px solid rgba(111,184,255,0.3); color: #FFFFFF; }
.sro-all .scb-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 16px; align-items: start; }
@media (max-width: 768px) { .sro-all .scb-form-grid { grid-template-columns: 1fr; gap: 10px; } .sro-all .scb-input-group, .sro-all .scb-input-group--full, .sro-all .js-successbox { grid-column: span 1; } }

/* ---------- 3.23 Verify Hub ---------- */
.sro-all .sro-verify-hub { padding: 96px 0; background: #FFFFFF; }
@media (max-width: 640px) { .sro-all .sro-verify-hub { padding: 60px 0; } }
.sro-all .scv-tool { background: #192635; border: 1px solid rgba(111,184,255,0.15); border-radius: 12px; padding: 28px; color: #FFFFFF; margin-top: 48px; }
@media (max-width: 640px) { .sro-all .scv-tool { padding: 20px; } }
.sro-all .scv-progress { margin-bottom: 24px; }
.sro-all .scv-progress__meta { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.sro-all .scv-progress__label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 500; }
.sro-all .scv-progress__pct { font-size: 12px; font-weight: 600; color: var(--color-accent); font-variant-numeric: tabular-nums; }
.sro-all .scv-progress__track { height: 3px; background: rgba(148,163,184,0.15); border-radius: 2px; overflow: hidden; }
.sro-all .scv-progress__fill { height: 100%; background: linear-gradient(90deg, var(--color-accent), var(--primitive-blue-300)); border-radius: 2px; transition: width 400ms var(--ease-out-expo); }
.sro-all .scv-bento { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 960px) { .sro-all .scv-bento { grid-template-columns: 1.2fr 1fr; gap: 24px; } }
.sro-all .scv-bento__input-section { display: flex; flex-direction: column; gap: 20px; }
.sro-all .scv-input-group { display: flex; flex-direction: column; gap: 6px; }
.sro-all .scv-input-group--full { grid-column: span 2; }
@media (max-width: 768px) { .sro-all .scv-input-group--full { grid-column: span 1; } }
.sro-all .scv-label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 500; }
.sro-all .scv-sub { font-size: 11px; color: var(--color-text-muted); line-height: 1.3; margin-top: -2px; }
.sro-all .scv-input {
  width: 100%; padding: 12px 16px; border: 1px solid rgba(148,163,184,0.2); border-radius: 8px; background: var(--color-text-primary);
  font-size: 16px; color: #FFFFFF; outline: none; transition: border-color var(--duration-base) ease-out, box-shadow var(--duration-base) ease-out;
  font-variant-numeric: tabular-nums; font-family: inherit; min-height: 44px; box-sizing: border-box;
}
.sro-all .scv-input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(111,184,255,0.15); }
.sro-all .scv-input[aria-invalid="true"] { border-color: var(--color-accent); }
.sro-all .scv-input-group .t-input-error { font-size: 11px; color: var(--color-accent); min-height: 16px; margin-top: 2px; }
.sro-all .scv-radios { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 4px; }
@media (max-width: 640px) { .sro-all .scv-radios { grid-template-columns: 1fr; gap: 8px; } }
.sro-all .scv-radio-item {
  display: flex; align-items: center; gap: 10px; padding: 14px 16px; border: 1px solid rgba(148,163,184,0.2); border-radius: 8px;
  background: var(--color-text-primary); cursor: pointer; transition: all 200ms ease-out; font-size: 14px; color: var(--color-text-muted); user-select: none;
}
.sro-all .scv-radio-item:hover { border-color: var(--color-accent); background: rgba(111,184,255,0.08); }
.sro-all .scv-radio-item.scv-radio--checked { border-color: var(--color-accent); background: rgba(111,184,255,0.15); color: #FFFFFF; box-shadow: 0 0 0 2px rgba(111,184,255,0.1); }
.sro-all .scv-radio-item input[type="radio"] { display: none; }
.sro-all .scv-submit-wrap { margin-top: 8px; }
.sro-all .scv-submit {
  width: 100%; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border: 1px solid transparent;
  border-radius: 8px; background: var(--color-accent); color: #1A2635; font-family: inherit; font-size: 15px; font-weight: 600; line-height: 1;
  cursor: pointer; transition: all 200ms ease-out; min-height: 48px;
}
.sro-all .scv-submit:hover { background: #FFFFFF; color: #1A2635; transform: translateY(-2px); box-shadow: 0 8px 16px rgba(111,184,255,0.3); }
.sro-all .scv-submit:active { transform: translateY(0); }
.sro-all .scv-submit:focus-visible { outline: 2px solid #FFFFFF; outline-offset: 2px; }
.sro-all .scv-bento__info-section { display: flex; flex-direction: column; gap: 16px; }
.sro-all .scv-bento__status {
  padding: 24px; border-radius: 10px; background: linear-gradient(135deg, rgba(111,184,255,0.20) 0%, rgba(111,184,255,0.06) 100%);
  border: 1px solid rgba(111,184,255,0.35); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  position: relative; overflow: hidden; min-height: 180px; transition: all 300ms ease-out;
}
.sro-all .scv-bento__status::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(111,184,255,0.22), transparent 55%); pointer-events: none; }
.sro-all .scv-bento__status > * { position: relative; z-index: 1; }
.sro-all .scv-bento__status-icon { font-size: 48px; line-height: 1; }
.sro-all .scv-bento__status-title { font-family: var(--t-headline-font, inherit); font-size: 20px; font-weight: 600; color: #FFFFFF; letter-spacing: -0.02em; }
.sro-all .scv-bento__status-desc { font-size: 13px; color: rgba(255,255,255,0.7); line-height: 1.5; max-width: 280px; }
.sro-all .scv-bento__status--pulse { animation: scvPulse 500ms ease-out; }
@keyframes scvPulse { 0% { transform: scale(1); } 30% { transform: scale(1.03); background: rgba(111,184,255,0.25); box-shadow: 0 0 30px rgba(111,184,255,0.4); } 100% { transform: scale(1); } }
.sro-all .scv-bento__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sro-all .scv-bento__stat {
  padding: 14px 16px; border-radius: 8px; background: rgba(255,255,255,0.04); border: 1px solid rgba(148,163,184,0.15);
  display: flex; flex-direction: column; gap: 4px; transition: all 300ms ease-out;
}
.sro-all .scv-bento__stat--wide { grid-column: 1 / -1; }
.sro-all .scv-bento__stat--active { background: rgba(111,184,255,0.12); border-color: rgba(111,184,255,0.4); }
.sro-all .scv-bento__stat-label { font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--color-text-muted); font-weight: 600; }
.sro-all .scv-bento__stat-value { font-family: var(--t-headline-font, inherit); font-size: 18px; font-weight: 600; color: #FFFFFF; font-variant-numeric: tabular-nums; letter-spacing: -0.02em; transition: color 300ms ease-out; }
.sro-all .scv-bento__stat--active .scv-bento__stat-value { color: var(--color-accent); }
.sro-all .scv-bento__stat-note { font-size: 11px; color: var(--color-text-muted); line-height: 1.3; }
.sro-all .scv-info-cards { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: 48px; }
@media (min-width: 768px) { .sro-all .scv-info-cards { grid-template-columns: 1fr 1fr; } }
.sro-all .scv-info-card {
  padding: 28px; background: #FFFFFF; border: 1px solid var(--lr-line); border-radius: 12px;
  transition: transform 250ms ease-out, box-shadow 250ms ease-out, border-color 250ms ease-out;
}
.sro-all .scv-info-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px -8px rgba(0,0,0,0.08); border-color: var(--lr-accent); }
.sro-all .scv-info-card__icon { font-size: 32px; margin-bottom: 16px; }
.sro-all .scv-info-card__title { font-family: var(--t-headline-font, inherit); font-size: 18px; font-weight: 600; color: var(--lr-text-primary); margin-bottom: 16px; line-height: 1.3; }
.sro-all .scv-info-card__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.sro-all .scv-info-card__list li { font-size: 14px; color: var(--lr-text-secondary); line-height: 1.6; padding-left: 20px; position: relative; }
.sro-all .scv-info-card__list li::before { content: '—'; position: absolute; left: 0; color: #6fb8ff; font-weight: 600; }
.sro-all .scv-faq-section { margin-top: 64px; }
.sro-all .scv-faq-title { font-family: var(--t-headline-font, inherit); font-size: clamp(22px, 3vw, 28px); font-weight: 600; color: var(--lr-text-primary); margin-bottom: 32px; text-align: center; }
@media (max-width: 640px) {
  .sro-all .scv-bento__status { min-height: 160px; padding: 20px; }
  .sro-all .scv-bento__status-icon { font-size: 40px; }
  .sro-all .scv-bento__status-title { font-size: 18px; }
  .sro-all .scv-bento__stats { grid-template-columns: 1fr; }
  .sro-all .scv-bento__stat--wide { grid-column: 1; }
}

/* ---------- 3.23 Магнитный курсор ---------- */
@media (hover: hover) and (pointer: fine) { .sro-all .js-magnetic { will-change: transform; } }

/* ---------- 3.24 Extract section ---------- */
.sro-extract-section { padding: 80px 0; background-color: #ffffff; }
.sro-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0 60px 0; }
.sro-step-card {
  position: relative; padding: 32px 24px; background: var(--color-bg-secondary); border: 1px solid rgba(0,0,0,0.04); border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sro-step-card:hover { transform: translateY(-4px); box-shadow: 0 12px 24px -8px rgba(30,41,59,0.08); border-color: var(--color-border-accent); }
.sro-step-card__num { font-family: var(--t-headline-font, sans-serif); font-size: 48px; line-height: 1; font-weight: 700; color: #E2E8F0; margin-bottom: 16px; position: relative; z-index: 1; }
.sro-step-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 12px; color: var(--color-text-primary); }
.sro-step-card p { font-size: 15px; line-height: 1.6; color: var(--color-text-secondary); margin-bottom: 20px; }
.sro-step-card__links { display: flex; flex-direction: column; gap: 8px; }
.sro-link-btn {
  display: inline-flex; align-items: center; justify-content: space-between; padding: 8px 12px; background: #ffffff;
  border: 1px solid #CBD5E1; border-radius: 6px; font-size: 13px; font-weight: 500; color: var(--color-text-primary); text-decoration: none; transition: all 0.2s ease;
}
.sro-link-btn:hover { border-color: var(--color-accent); color: var(--color-accent); background: #F0F9FF; }
.sro-link-btn svg { transition: transform 0.2s ease; }
.sro-link-btn:hover svg { transform: translateX(2px); }
.sro-step-card__hint { margin-top: auto; padding-top: 12px; border-top: 1px dashed #CBD5E1; }
.sro-step-card__status { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.sro-status-dot { width: 8px; height: 8px; background-color: var(--primitive-green-500); border-radius: 50%; box-shadow: 0 0 0 2px rgba(16,185,129,0.2); }
.sro-samples-wrapper { background: var(--color-bg-tertiary); padding: 32px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.04); }
.sro-samples-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.sro-sample-card { background: #ffffff; padding: 20px; border-radius: 8px; border: 1px solid #E2E8F0; display: flex; flex-direction: column; }
.sro-sample-card__header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.sro-sample-icon { width: 40px; height: 40px; background: #F1F5F9; border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.sro-sample-preview { flex-grow: 1; margin-bottom: 16px; min-height: 180px; display: flex; align-items: center; justify-content: center; background: var(--color-bg-tertiary); border-radius: 4px; overflow: hidden; position: relative; }
.sro-extract-note { margin-top: 32px; padding: 16px; background: #FFF7ED; border-left: 4px solid var(--primitive-orange-400); border-radius: 0 8px 8px 0; font-size: 14px; color: #7C2D12; }
@media screen and (max-width: 960px) { .sro-steps-grid { grid-template-columns: 1fr; } .sro-samples-grid { grid-template-columns: 1fr; } }

/* ---------- 3.25 Защита от обрезки на мобильных ---------- */
@media (max-width: 640px) {
  .sro-all .sro-pains__card, .sro-all .sro-types__card, .sro-all .sro-market__card, .sro-all .sro-pricing__card { max-width: 100%; overflow: hidden; }
  .sro-all .sro-table tr { max-width: 100%; overflow: hidden; }
  .sro-all .sro-table td { min-width: 0; overflow-wrap: break-word; }
  .sro-all .sro-hero__stat { max-width: 100%; overflow: hidden; }
  .sro-all .sro-hero__stat-row { flex-wrap: wrap; gap: 4px; }
}

/* ============================================================
4. БЛОК 2: .lr-article — SRO Design System Bento Architecture v4.0
============================================================ */
.lr-article {
  --lr-accent: var(--color-accent);
  --lr-accent-hover: var(--color-accent-hover);
  --lr-text-primary: var(--primitive-slate-900);
  --lr-text-secondary: var(--color-text-secondary);
  --lr-text-muted: var(--color-text-muted);
  --lr-line: var(--color-border);
  --lr-line-strong: var(--color-border-strong);
  --lr-bg-white: var(--color-bg-primary);
  --lr-bg-soft: var(--color-bg-tertiary);
  --lr-bento-gradient: linear-gradient(135deg, rgba(111, 184, 255, 0.06) 0%, rgba(111, 184, 255, 0.02) 100%);
  --lr-bento-border: 1px solid rgba(111, 184, 255, 0.15);
  --space-xs: 4px; --space-sm: 8px; --space-md: 16px; --space-lg: 24px;
  --space-xl: 32px; --space-2xl: 48px; --space-3xl: 64px; --space-4xl: 96px;
  --bento-radius: 16px; --bento-radius-sm: 12px;
  --lr-shadow-z: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
  --lr-transition: var(--ease-product);
  --sro-font: var(--font-ui);
  font-family: var(--sro-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--lr-text-primary);
  background: var(--lr-bg-white);
  -webkit-font-smoothing: antialiased;
  width: 100%;
  max-width: 100%;
}
.lr-article *, .lr-article *::before, .lr-article *::after { box-sizing: border-box; }
.lr-article :where(p, h1, h2, h3, h4, h5, h6, ul, ol) { margin: 0; padding: 0; }

/* ---------- 4.1 Hero ---------- */
.lr-hero-v2 {
  position: relative;
  padding-top: calc(115px + 48px);
  padding-bottom: var(--space-2xl);
  background-color: var(--lr-bg-soft);
  background-image: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.9) 70%, rgba(255,255,255,1) 100%), url('https://optim.tildacdn.com/tild3632-3733-4634-b739-663131616162/-/format/webp/1789211251b3e1.png.webp');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  border-bottom: 1px solid var(--lr-line);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 85%, transparent 100%);
}
.lr-hero__container { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.lr-hero__content { max-width: 780px; }
.lr-hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-sm); padding: 6px var(--space-md);
  background: var(--lr-bento-gradient); border: var(--lr-bento-border); border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #1D4ED8; margin-bottom: var(--space-lg);
}
.lr-hero__badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--lr-accent); box-shadow: 0 0 8px var(--lr-accent); }
.lr-hero__title {
  font-size: clamp(32px, 4.5vw, 52px); font-weight: 600; line-height: 1.1; letter-spacing: -0.025em;
  color: var(--lr-text-primary); margin-bottom: var(--space-lg);
}
.lr-hero__title em { font-style: normal; color: var(--lr-accent); }
.lr-hero__description { font-size: 18px; line-height: 1.65; color: var(--lr-text-secondary); max-width: 620px; margin-bottom: var(--space-xl); }
.lr-hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-md); margin-bottom: var(--space-lg); }
.lr-hero__btn-primary, .lr-cta__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-sm); padding: 14px 24px; border-radius: var(--bento-radius-sm);
  font-size: 15px; font-weight: 600; text-decoration: none; cursor: pointer; background: linear-gradient(135deg, var(--lr-accent) 0%, var(--lr-accent-hover) 100%);
  color: #0F172A; border: 1px solid rgba(111, 184, 255, 0.4); transition: all 200ms var(--lr-transition); white-space: nowrap;
}
.lr-hero__btn-primary:hover, .lr-cta__btn:hover {
  background: linear-gradient(135deg, var(--lr-accent-hover) 0%, #4a92d8 100%); transform: translateY(-2px); box-shadow: 0 8px 16px -4px rgba(111, 184, 255, 0.3);
}
.lr-hero__btn-secondary {
  display: inline-flex; align-items: center; gap: var(--space-sm); padding: 14px 24px; border-radius: var(--bento-radius-sm);
  font-size: 15px; font-weight: 500; text-decoration: none; cursor: pointer; background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  color: var(--lr-text-primary); border: 1px solid var(--lr-line-strong); transition: all 200ms var(--lr-transition); white-space: nowrap;
}
.lr-hero__btn-secondary:hover { border-color: var(--lr-accent); transform: translateY(-2px); }
.lr-hero__meta { display: flex; flex-wrap: wrap; gap: var(--space-lg); padding-top: var(--space-lg); border-top: 1px dashed var(--lr-line-strong); font-size: 13px; color: var(--lr-text-muted); }
.lr-hero__meta-item { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- 4.2 Bento Grid & Z-Axis Cards ---------- */
.lr-hero__stats { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--space-md); margin-top: var(--space-2xl); perspective: 1000px; }
.lr-stat {
  grid-column: span 12; padding: var(--space-xl); background: var(--lr-bg-white); border: 1px solid var(--lr-line);
  border-radius: var(--bento-radius); display: flex; flex-direction: column; gap: var(--space-sm); position: relative; overflow: hidden;
  transition: transform 300ms var(--lr-transition), box-shadow 300ms var(--lr-transition), border-color 300ms var(--lr-transition);
}
.lr-stat::after { content: ''; position: absolute; top: 12px; right: 12px; width: 8px; height: 8px; border-top: 1px solid var(--lr-line-strong); border-right: 1px solid var(--lr-line-strong); opacity: 0.4; transition: opacity 300ms ease; }
.lr-stat:hover { transform: translateY(-4px) translateZ(10px); box-shadow: var(--lr-shadow-z); border-color: rgba(111, 184, 255, 0.3); }
.lr-stat:hover::after { opacity: 0.8; border-color: var(--lr-accent); }
@media (min-width: 768px) { .lr-stat:nth-child(1) { grid-column: span 4; } .lr-stat:nth-child(2) { grid-column: span 4; } .lr-stat:nth-child(3) { grid-column: span 4; } }
.lr-stat__label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lr-text-muted); }
.lr-stat__value { font-size: clamp(28px, 3vw, 38px); font-weight: 600; letter-spacing: -0.02em; color: var(--lr-text-primary); line-height: 1.1; }
.lr-stat__value em { font-style: normal; color: var(--lr-accent); font-size: 0.6em; font-weight: 500; margin-left: 2px; }
.lr-stat__text { font-size: 14px; line-height: 1.55; color: var(--lr-text-secondary); margin-top: auto; }
.lr-stat--accent { background: var(--lr-bento-gradient); border: var(--lr-bento-border); }

/* ---------- 4.3 Typography & Main Layout ---------- */
.lr-article__header { max-width: 1200px; margin: 0 auto; padding: var(--space-3xl) var(--space-lg) var(--space-xl); }
.lr-article__eyebrow { display: inline-flex; align-items: center; gap: var(--space-sm); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lr-text-muted); margin-bottom: var(--space-lg); }
.lr-article__eyebrow::before { content: ''; display: block; width: 3px; height: 16px; background: var(--lr-accent); border-radius: 2px; }
.lr-article__title { font-size: clamp(28px, 3.5vw, 42px); font-weight: 600; letter-spacing: -0.025em; line-height: 1.15; color: var(--lr-text-primary); margin-bottom: var(--space-lg); max-width: 900px; }
.lr-article__meta { display: flex; flex-wrap: wrap; gap: var(--space-sm) var(--space-lg); font-size: 13px; color: var(--lr-text-muted); padding-top: var(--space-lg); border-top: 1px dashed var(--lr-line-strong); }
.lr-article__meta-author { font-weight: 500; color: var(--lr-text-primary); }
.lr-article__grid { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg) var(--space-3xl); display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); }
@media (min-width: 960px) { .lr-article__grid { grid-template-columns: 1fr 300px; grid-template-areas: "content sidebar"; gap: var(--space-3xl); padding: 0 64px var(--space-4xl); } }
.lr-article__content { grid-area: content; min-width: 0; }
.lr-article__content > * + * { margin-top: var(--space-lg); }
.lr-article__content p { font-size: 16px; line-height: 1.7; color: #334155; }
.lr-article__content p strong { color: var(--lr-text-primary); font-weight: 600; }
.lr-article__sidebar { grid-area: sidebar; display: flex; flex-direction: column; gap: var(--space-lg); }
@media (min-width: 960px) { .lr-article__sidebar { position: sticky; top: 139px; align-self: start; height: fit-content; } }
.lr-article__lead { font-size: 18px !important; line-height: 1.6 !important; color: var(--lr-text-primary) !important; padding: var(--space-lg) var(--space-xl); background: var(--lr-bento-gradient); border: var(--lr-bento-border); border-radius: var(--bento-radius-sm); margin-bottom: var(--space-xl) !important; }
.lr-article__h2 { font-size: clamp(22px, 2.5vw, 30px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.2; color: var(--lr-text-primary); margin-top: var(--space-3xl) !important; padding-top: var(--space-3xl) !important; border-top: 1px solid var(--lr-line); scroll-margin-top: 139px; }
.lr-article__h2:first-of-type { margin-top: 0 !important; padding-top: 0 !important; border-top: none; }
.lr-article__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-sm); }
.lr-article__list li { position: relative; padding-left: 24px; font-size: 15.5px; line-height: 1.65; color: #334155; }
.lr-article__list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 14px; height: 2px; background: var(--lr-accent); border-radius: 1px; }

/* ---------- 4.4 Components ---------- */
.lr-table__wrapper { border-radius: var(--bento-radius); border: 1px solid var(--lr-line); overflow: hidden; background: var(--lr-bg-white); margin-top: var(--space-md); }
.lr-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.lr-table thead { background: var(--lr-bg-soft); background-image: linear-gradient(180deg, rgba(255,255,255,0.8), rgba(255,255,255,0)); }
.lr-table th { padding: var(--space-md) var(--space-lg); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lr-text-muted); text-align: left; border-bottom: 1px solid var(--lr-line); }
.lr-table td { padding: var(--space-md) var(--space-lg); border-bottom: 1px solid var(--lr-line); color: var(--lr-text-secondary); vertical-align: top; }
.lr-table td:first-child { color: var(--lr-text-primary); font-weight: 500; }
.lr-table tbody tr:last-child td { border-bottom: none; }
.lr-table tbody tr:hover td { background-color: rgba(111,184,255,0.04); transition: background 200ms ease; }
.lr-step { position: relative; padding: var(--space-xl); background: var(--lr-bento-gradient); border: var(--lr-bento-border); border-radius: var(--bento-radius-sm); margin-top: var(--space-md) !important; transition: transform 250ms var(--lr-transition), box-shadow 250ms var(--lr-transition); }
.lr-step:hover { transform: translateY(-2px); box-shadow: var(--lr-shadow-z); background: var(--lr-bg-white); }
.lr-faq { display: flex; flex-direction: column; margin-top: var(--space-md) !important; }
.lr-faq__item { border-top: 1px solid var(--lr-line); }
.lr-faq__item:last-child { border-bottom: 1px solid var(--lr-line); }
.lr-faq__question { display: flex; align-items: flex-start; gap: var(--space-md); padding: var(--space-lg) 0; cursor: pointer; list-style: none; font-size: 16px; font-weight: 500; color: var(--lr-text-primary); transition: color 200ms ease; }
.lr-faq__question:hover { color: #1D4ED8; }
.lr-faq__marker { position: relative; width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; border: 1px solid var(--lr-line-strong); border-radius: 4px; transition: all 200ms ease; }
.lr-faq__marker::before, .lr-faq__marker::after { content: ''; position: absolute; top: 50%; left: 50%; width: 10px; height: 1.5px; background: var(--lr-text-secondary); transform: translate(-50%, -50%); transition: transform 200ms ease; }
.lr-faq__marker::after { transform: translate(-50%, -50%) rotate(90deg); }
.lr-faq__item[open] .lr-faq__marker { border-color: var(--lr-accent); background: rgba(111,184,255,0.1); }
.lr-faq__item[open] .lr-faq__marker::before, .lr-faq__item[open] .lr-faq__marker::after { background: var(--lr-accent); }
.lr-faq__item[open] .lr-faq__marker::after { transform: translate(-50%, -50%) rotate(0deg); }
.lr-faq__answer { padding: 0 0 var(--space-lg) 32px; font-size: 15px; line-height: 1.65; color: var(--lr-text-secondary); }
.lr-article__conclusion { margin-top: var(--space-2xl) !important; padding: var(--space-xl); background: var(--lr-bento-gradient); border: var(--lr-bento-border); border-radius: var(--bento-radius); position: relative; overflow: hidden; }
.lr-conclusion__label { display: inline-flex; align-items: center; gap: var(--space-sm); font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: #1D4ED8; margin-bottom: var(--space-md); }
.lr-article__conclusion p { font-size: 15.5px !important; line-height: 1.65 !important; color: var(--lr-text-secondary) !important; margin-bottom: var(--space-sm) !important; }
.lr-article__conclusion p:last-child { margin-bottom: 0 !important; }
.lr-article__signature { margin-top: var(--space-xl) !important; padding-top: var(--space-lg) !important; border-top: 1px dashed rgba(111, 184, 255, 0.3); font-size: 14px !important; color: var(--lr-text-muted) !important; font-style: italic; }
.lr-sidebar__toc, .lr-sidebar__expert, .lr-sidebar__facts { padding: var(--space-lg); background: var(--lr-bento-gradient); border: var(--lr-bento-border); border-radius: var(--bento-radius-sm); }
.lr-toc__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-xs); }
.lr-toc__list a { display: block; padding: var(--space-sm) var(--space-md); font-size: 14px; color: var(--lr-text-secondary); text-decoration: none; border-radius: 6px; transition: all 150ms ease; }
.lr-toc__list a:hover { color: var(--lr-text-primary); background: rgba(111,184,255,0.08); }
.lr-toc__list a.is-active { color: #1D4ED8; font-weight: 600; background: rgba(111,184,255,0.12); }
.lr-expert__header { display: flex; align-items: center; gap: var(--space-md); margin-bottom: var(--space-md); }
.lr-expert__avatar { width: 48px; height: 48px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: #E2E8F0; }
.lr-expert__avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lr-expert__label { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lr-text-muted); display: block; }
.lr-expert__name { font-size: 14px; font-weight: 600; color: var(--lr-text-primary); line-height: 1.3; display: block; }
.lr-expert__quote { margin: 0; padding: var(--space-md); background: var(--lr-bg-white); border: 1px solid var(--lr-line); border-radius: var(--bento-radius-sm); font-size: 13.5px; line-height: 1.55; color: var(--lr-text-secondary); font-style: italic; }
.lr-facts__title { font-size: 14px; font-weight: 600; color: var(--lr-text-primary); margin: 0 0 var(--space-md); }
.lr-facts__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--space-md); }
.lr-facts__item { display: grid; grid-template-columns: auto 1fr; gap: var(--space-sm); align-items: baseline; }
.lr-facts__num { font-size: 16px; font-weight: 700; color: var(--lr-accent); line-height: 1.2; min-width: 42px; }
.lr-facts__text { font-size: 13px; line-height: 1.5; color: var(--lr-text-secondary); }

/* ---------- 4.5 Comparison, Quiz, CTA ---------- */
.lr-comparison { padding: var(--space-3xl) 0; border-bottom: 1px solid var(--lr-line); }
.lr-comparison__inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); }
.lr-comparison__title { font-size: clamp(24px, 3vw, 34px); font-weight: 600; letter-spacing: -0.02em; color: var(--lr-text-primary); margin: 0 0 var(--space-sm); }
.lr-comparison__subtitle { font-size: 15px; color: var(--lr-text-muted); margin: 0 0 var(--space-lg); }
.lr-view-toggle { display: inline-flex; padding: 4px; background: var(--lr-bg-soft); border: 1px solid var(--lr-line); border-radius: 10px; gap: 2px; margin-bottom: var(--space-md); }
.lr-view-toggle__btn { padding: 8px 16px; border: none; background: transparent; font: inherit; font-size: 13px; font-weight: 500; color: var(--lr-text-muted); border-radius: 6px; cursor: pointer; transition: all 180ms ease; }
.lr-view-toggle__btn:hover { color: var(--lr-text-primary); }
.lr-view-toggle__btn--active { background: var(--lr-bg-white); color: var(--lr-text-primary); box-shadow: var(--lr-shadow-xs); }
.lr-view--hidden { display: none; }
.lr-compare-cards { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
@media (min-width: 900px) { .lr-compare-cards { grid-template-columns: 1fr 1fr; } }
.lr-compare-card { padding: var(--space-xl); background: var(--lr-bg-white); border: 1px solid var(--lr-line); border-radius: var(--bento-radius); display: flex; flex-direction: column; gap: var(--space-lg); transition: transform 250ms var(--lr-transition), box-shadow 250ms var(--lr-transition); }
.lr-compare-card:hover { transform: translateY(-4px); box-shadow: var(--lr-shadow-z); }
.lr-compare-card__badge { align-self: flex-start; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 999px; background: rgba(0,0,0,0.05); color: var(--lr-text-muted); }
.lr-compare-card--build .lr-compare-card__badge { background: var(--lr-text-primary); color: #fff; }
.lr-compare-card--heat .lr-compare-card__badge { background: rgba(111,184,255,0.15); color: #1D4ED8; }
.lr-compare-card__title { font-size: 18px; font-weight: 600; color: var(--lr-text-primary); margin: 0; line-height: 1.3; }
.lr-compare-card__rows { display: flex; flex-direction: column; gap: 0; }
.lr-compare-card__row { display: grid; grid-template-columns: 1fr; gap: 4px; padding: 12px 0; border-bottom: 1px solid var(--lr-line); }
.lr-compare-card__row:last-child { border-bottom: none; }
.lr-compare-card__row-label { font-size: 10px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lr-text-muted); }
.lr-compare-card__row-value { font-size: 14px; font-weight: 500; color: var(--lr-text-primary); line-height: 1.5; }
.lr-quiz { margin: var(--space-2xl) 0; background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); border-radius: var(--bento-radius); padding: var(--space-xl); color: #fff; position: relative; overflow: hidden; }
.lr-quiz::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 100% 0%, rgba(111,184,255,0.15), transparent 55%); pointer-events: none; }
.lr-quiz > * { position: relative; z-index: 1; }
.lr-quiz__badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: rgba(111,184,255,0.15); border: 1px solid rgba(111,184,255,0.3); border-radius: 999px; font-size: 10px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--lr-accent); margin-bottom: var(--space-md); }
.lr-quiz__question { font-size: clamp(18px, 2vw, 22px); font-weight: 600; line-height: 1.3; color: #fff; margin: 0 0 var(--space-lg); }
.lr-quiz__options { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
@media (min-width: 640px) { .lr-quiz__options { grid-template-columns: 1fr 1fr; } }
.lr-quiz__btn { display: flex; align-items: center; gap: var(--space-md); padding: 16px; background: rgba(255,255,255,0.04); border: 1px solid rgba(148,163,184,0.2); border-radius: 10px; cursor: pointer; font: inherit; text-align: left; color: #fff; font-size: 14.5px; font-weight: 500; line-height: 1.4; transition: all 200ms ease; }
.lr-quiz__btn:hover { border-color: rgba(111,184,255,0.5); background: rgba(111,184,255,0.06); transform: translateY(-2px); }
.lr-quiz__btn.is-selected { border-color: var(--lr-accent); background: rgba(111,184,255,0.12); box-shadow: 0 0 0 3px rgba(111,184,255,0.15); }
.lr-quiz__btn-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(111,184,255,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--lr-accent); }
.lr-quiz__result { margin-top: var(--space-lg); padding: var(--space-lg); background: rgba(111,184,255,0.08); border: 1px solid rgba(111,184,255,0.3); border-radius: var(--bento-radius-sm); animation: lrQuizReveal 400ms cubic-bezier(0.16,1,0.3,1); }
@keyframes lrQuizReveal { 0% { opacity: 0; transform: translateY(10px); } 100% { opacity: 1; transform: translateY(0); } }
.lr-quiz__result-text { font-size: 15px; line-height: 1.6; color: #fff; margin: 0 0 var(--space-md); }
.lr-quiz__cta { display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; background: var(--lr-accent); color: #1A2635; border-radius: 8px; border: 1px solid var(--lr-accent); font-family: inherit; font-size: 14px; font-weight: 600; text-decoration: none; transition: all 180ms ease; }
.lr-quiz__cta:hover { background: #fff; border-color: #fff; transform: scale(1.02); }
.lr-cta { padding: var(--space-4xl) 0; background: var(--lr-bg-soft); border-top: 1px solid var(--lr-line); }
.lr-cta__inner { max-width: 1200px; margin: 0 auto; padding: 0 var(--space-lg); display: grid; grid-template-columns: 1fr; gap: var(--space-2xl); align-items: start; }
@media (min-width: 960px) { .lr-cta__inner { grid-template-columns: 1fr 1fr; gap: var(--space-3xl); padding: 0 64px; } }
.lr-cta__title { font-size: clamp(26px, 3.2vw, 38px); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; color: var(--lr-text-primary); margin: 0 0 var(--space-sm); }
.lr-cta__subtitle { font-size: 16px; line-height: 1.6; color: var(--lr-text-secondary); margin: 0; }
.lr-form { display: flex; flex-direction: column; gap: var(--space-md); padding: var(--space-xl); background: var(--lr-bento-gradient); border: var(--lr-bento-border); border-radius: var(--bento-radius); }
.lr-input-group { display: flex; flex-direction: column; gap: var(--space-sm); }
.lr-input-group__label { font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--lr-text-muted); }
.lr-input-group input[type="text"], .lr-input-group input[type="tel"] { width: 100%; padding: 12px 16px; border: 1px solid var(--lr-line-strong); border-radius: var(--bento-radius-sm); background: var(--lr-bg-white); font-size: 16px; color: var(--lr-text-primary); outline: none; transition: border-color 180ms ease, box-shadow 180ms ease; -webkit-appearance: none; }
.lr-input-group input[type="text"]:focus, .lr-input-group input[type="tel"]:focus { border-color: var(--lr-accent); box-shadow: 0 0 0 3px rgba(111,184,255,0.12); }
.lr-input-group .t-input-error { font-size: 12px; color: #e53e3e; min-height: 14px; }
.lr-checkbox { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: flex-start; cursor: pointer; font-size: 13px; line-height: 1.55; color: var(--lr-text-secondary); }
.lr-checkbox input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }
.lr-checkbox__box { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; background: var(--lr-bg-white); border: 1px solid var(--lr-line-strong); border-radius: 4px; position: relative; transition: all 180ms ease; }
.lr-checkbox:hover .lr-checkbox__box { border-color: var(--lr-accent); }
.lr-checkbox input[type="checkbox"]:checked + .lr-checkbox__box { background: var(--lr-accent); border-color: var(--lr-accent); }
.lr-checkbox input[type="checkbox"]:checked + .lr-checkbox__box::after { content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.lr-checkbox__text a { color: var(--lr-text-primary); text-decoration: underline; text-underline-offset: 2px; }
.lr-checkbox__text a:hover { color: var(--lr-accent); }
.lr-form__disclaimer { font-size: 12px; line-height: 1.5; color: var(--lr-text-muted); margin: 0; text-align: center; }
.lr-article .js-successbox { padding: 20px; background: rgba(111,184,255,0.08); border: 1px solid rgba(111,184,255,0.3); border-radius: 10px; font-size: 15px; color: var(--lr-text-primary); }

/* ---------- 4.6 .lr-article — Responsive ---------- */
@media (max-width: 960px) {
  .lr-article__grid { grid-template-columns: 1fr; grid-template-areas: "sidebar" "content"; gap: var(--space-xl); }
  .lr-article__sidebar { position: static; top: auto; align-self: auto; }
}
@media (max-width: 767px) {
  .lr-article { --space-3xl: 48px; --space-4xl: 64px; }
  .lr-hero-v2 { padding-top: calc(115px + 24px); padding-bottom: var(--space-xl); }
  .lr-hero__container { padding: 0 var(--space-md); }
  .lr-hero__actions { flex-direction: column; }
  .lr-hero__btn-primary, .lr-hero__btn-secondary, .lr-cta__btn { width: 100%; justify-content: center; }
  .lr-article__header { padding: var(--space-xl) var(--space-md) var(--space-lg); }
  .lr-article__grid { padding: 0 var(--space-md) var(--space-2xl); }
  .lr-article__h2 { margin-top: var(--space-2xl) !important; padding-top: var(--space-2xl) !important; }
  .lr-comparison { padding: var(--space-2xl) 0; }
  .lr-comparison__inner { padding: 0 var(--space-md); }
  .lr-quiz { padding: var(--space-lg); margin: var(--space-2xl) 0; }
  .lr-quiz__options { grid-template-columns: 1fr; }
  .lr-cta { padding: var(--space-2xl) 0; }
  .lr-cta__inner { padding: 0 var(--space-md); gap: var(--space-xl); }
  .lr-form { padding: var(--space-lg); }
  .lr-table__wrapper { border: none; background: transparent; overflow: visible; }
  .lr-table, .lr-table tbody, .lr-table tr, .lr-table td { display: block; width: 100%; }
  .lr-table thead { display: none; }
  .lr-table tr { padding: var(--space-lg); margin-bottom: var(--space-md); background: var(--lr-bg-white); border: 1px solid var(--lr-line); border-radius: var(--bento-radius-sm); }
  .lr-table td { padding: var(--space-sm) 0; border-bottom: 1px solid var(--lr-line); display: flex; justify-content: space-between; gap: var(--space-md); font-size: 14px; }
  .lr-table td:last-child { border-bottom: none; }
  .lr-table td::before { content: attr(data-label); font-size: 11px; font-weight: 600; text-transform: uppercase; color: var(--lr-text-muted); flex-shrink: 0; }
  .lr-table td:first-child { display: block; padding-bottom: var(--space-md); font-size: 15px; font-weight: 600; color: var(--lr-text-primary); border-bottom: 1px solid rgba(111, 184, 255, 0.2); margin-bottom: var(--space-xs); }
  .lr-table td:first-child::before { display: none; }
}
@media (max-width: 480px) {
  .lr-article__meta { flex-direction: column; align-items: flex-start; gap: 4px; }
  .lr-article__meta-date::before, .lr-article__meta-reading::before { content: none; }
}

/* ============================================================
5. БЛОК 3: ОБЩИЕ УТИЛИТЫ
============================================================ */
/* ---------- 5.1 Tilda-кнопки ---------- */
.t-btnflex {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 0; border: none; cursor: pointer;
  font-family: var(--sro-font); font-weight: 500; text-decoration: none; transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.25s var(--lr-transition);
  background: var(--lr-accent); color: #fff; border-radius: var(--lr-radius-btn); line-height: 1;
}
.t-btnflex:hover { background: var(--lr-accent-hover); color: #fff; text-decoration: none; box-shadow: var(--lr-shadow-sm); transform: translateY(-1px); }
.t-btnflex:active { transform: translateY(0); box-shadow: var(--lr-shadow-xs); }
.t-btnflex__text { display: inline-block; }
.t-btnflex_md { font-size: 15px; padding: 14px 28px; }
.t-btnflex_lg { font-size: 16px; padding: 16px 36px; }
.t-form__successbox { background: #f0fdf4; color: #166534; padding: 16px 20px; border-radius: var(--lr-radius-btn); font-size: 15px; margin-bottom: 20px; text-align: center; border: 1px solid #bbf7d0; }

/* ---------- 5.2 Tilda-хедер (T3113 override) ---------- */
#rec3682125301 .t-menu-base {
  max-width: 1200px !important; margin-left: auto !important; margin-right: auto !important; left: 0 !important; right: 0 !important;
  border: 1px solid var(--lr-line) !important; border-radius: var(--lr-radius-btn) !important; background-color: var(--lr-bg-soft) !important;
}

/* ============================================================
6. RESPONSIVE — порядок: 960 → 767 → 640 → 480
============================================================ */
@media (max-width: 960px) {
  .lr-toc__toggle { display: flex; margin-bottom: 0; }
  .lr-toc__list { max-height: 0; overflow: hidden; transition: max-height 300ms ease-out; margin-top: 0; }
  .lr-toc__list.is-open { max-height: 500px; margin-top: 16px; }
}
@media screen and (max-width: 960px) {
  #rec3682125301 .t-menu-base { max-width: calc(100vw - 20px) !important; margin-left: 10px !important; margin-right: 10px !important; }
  #rec3682125301 .t-menu-base__mobile-menu { border: 1px solid var(--lr-line) !important; border-radius: var(--lr-radius-btn) !important; background-color: var(--lr-bg-soft) !important; }
}
@media (max-width: 767px) {
  .lr-article { padding: 0; font-size: 16px; line-height: 1.75; }
  .lr-hero-v2 { padding: 100px 0 40px; margin: 0; border-radius: 0; background-position: center top; background-size: 140% auto; }
  .lr-hero__container { padding: 0 16px; }
  .lr-hero__title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .lr-hero__description { font-size: 15px; }
  .lr-hero__actions { flex-direction: column; width: 100%; }
  .lr-hero__btn-primary, .lr-hero__btn-secondary { width: 100%; justify-content: center; }
  .lr-comparison { padding: 32px 0; }
  .lr-comparison__inner { padding: 0 16px; }
  .lr-article__header { padding: 40px 16px 24px; }
  .lr-article__title { font-size: clamp(1.4rem, 5.5vw, 1.75rem); }
  .lr-article__meta { font-size: 13px; gap: 8px 16px; }
  .lr-article__grid { gap: 32px; padding: 0 16px 56px; }
  .lr-article__sidebar { order: 0; margin-bottom: 0; }
  .lr-article__content { order: 1; }
  .lr-sidebar__toc { position: sticky; top: 96px; z-index: 100; padding: 12px 16px; margin: 0 -16px; border-radius: 0; background: #fff; border: none; border-bottom: 1px solid var(--lr-line); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
  .lr-toc__list { padding-top: 12px; border-top: 1px solid var(--lr-line); }
  .lr-toc__list a { padding: 10px 0; font-size: 15px; }
  .lr-sidebar__expert { margin-top: 24px; }
  .lr-quiz { padding: 24px 20px; margin: 32px 0 !important; border-radius: 12px; }
  .lr-quiz__btn { padding: 14px 16px; font-size: 14px; }
  .lr-step { padding: 20px 22px; }
  .lr-article__conclusion { padding: 24px; border-radius: 14px; }
  .lr-cta { padding: 48px 0; }
  .lr-cta__inner { padding: 0 16px; gap: 32px; }
  .lr-cta__btn { width: 100% !important; justify-content: center; }
  .lr-form { padding: 24px; }
  .lr-article__h2 { margin-top: 36px !important; padding-top: 36px !important; }
  .lr-article__h2:first-of-type { margin-top: 0 !important; padding-top: 0 !important; }
  .lr-faq__question { font-size: 15px; }
  .lr-faq__answer { padding-left: 24px; font-size: 14px; }
}
@media (max-width: 640px) {
  .lr-quiz__options { grid-template-columns: 1fr; }
  .lr-article__content .lr-table__wrapper { overflow-x: visible; border: none; background: transparent; }
  .lr-article__content .lr-table { display: block; min-width: 0; }
  .lr-article__content .lr-table thead { display: none; }
  .lr-article__content .lr-table tbody, .lr-article__content .lr-table tr, .lr-article__content .lr-table td { display: block; width: 100%; }
  .lr-article__content .lr-table tr { padding: 16px; margin-bottom: 12px; background: #FFFFFF; border: 1px solid var(--color-border); border-radius: 10px; }
  .lr-article__content .lr-table td { padding: 8px 0; border-bottom: 1px solid rgba(0,0,0,0.04); display: flex; justify-content: space-between; gap: 12px; font-size: 14px; }
  .lr-article__content .lr-table td:last-child { border-bottom: none; }
  .lr-article__content .lr-table td::before { content: attr(data-label); font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: #94A3B8; flex-shrink: 0; }
  .lr-article__content .lr-table td:first-child { display: block; padding-top: 0; padding-bottom: 12px; font-size: 15px; font-weight: 600; color: #0F172A; border-bottom: 1px solid rgba(111,184,255,0.15); margin-bottom: 4px; }
  .lr-article__content .lr-table td:first-child::before { display: none; }
  .lr-article .lr-stat, .lr-article .lr-compare-card, .lr-article .lr-step, .lr-article .lr-article__conclusion, .lr-article .lr-quiz { max-width: 100%; overflow: hidden; }
}
@media (max-width: 640px) {
  .sro-all .sro-hero__actions { flex-direction: column; align-items: stretch; width: 100%; gap: 12px; }
  .sro-all .sro-hero__actions .sro-btn, .sro-all .sro-form__submit, .sro-all .sro-pricing__btn, .sro-all .scb-submit-wrap .t-submit, .sro-all .scv-submit { width: 100%; justify-content: center; min-height: 48px; padding: 14px 24px; font-size: 16px; }
  .sro-all .sro-hero__actions .sro-btn:not(.sro-btn--filled) { background: #FFFFFF; border-color: rgba(0,0,0,0.12); }
  .sro-all .t-btnflex { width: 100%; justify-content: center; min-height: 48px; }
}
@media (max-width: 480px) {
  .lr-article__header { padding: 32px 16px 20px; }
  .lr-article__meta { flex-direction: column; align-items: flex-start; gap: 4px; }
  .lr-article__meta-date::before, .lr-article__meta-reading::before { content: none; margin-right: 0; }
  .lr-article__lead { font-size: 17px !important; }
  .lr-comparison { padding: 24px 0; }
  .lr-quiz { padding: 20px 16px; }
  .lr-step { padding: 16px 18px; }
  .lr-hero-v2 { padding: 100px 0 32px; }
  .lr-checkbox__text { font-size: 12px; }
}

/* ============================================================
SRO FOOTER v2 — Dark closing section
============================================================ */
.sro-footer { background: #1A2635; color: #FFFFFF; padding: 80px 0 40px; position: relative; font-family: var(--sro-font); border-top: 1px solid rgba(111, 184, 255, 0.18); }
.sro-footer__top { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; align-items: start; }
@media (min-width: 960px) { .sro-footer__top { grid-template-columns: 1.4fr 1fr; gap: 80px; } }
.sro-footer__label { display: inline-block; margin-bottom: 12px; color: var(--lr-accent); font-weight: 600; }
.sro-footer__title { font-family: var(--t-headline-font, inherit); font-size: clamp(22px, 2.6vw, 30px); font-weight: 600; line-height: 1.2; letter-spacing: -0.02em; color: #FFFFFF; margin: 0 0 16px; max-width: 520px; }
.sro-footer__desc { font-size: 14.5px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); max-width: 460px; margin: 0; }
.sro-footer__contact { display: flex; flex-direction: column; gap: 6px; padding: 24px 28px; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 12px; }
.sro-footer__contact-label { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); }
.sro-footer__phone { font-family: var(--t-headline-font, inherit); font-size: clamp(24px, 2.4vw, 30px); font-weight: 600; letter-spacing: -0.01em; color: #FFFFFF; text-decoration: none; line-height: 1.1; transition: color 180ms ease-out; font-variant-numeric: tabular-nums; }
.sro-footer__phone:hover { color: var(--lr-accent); }
.sro-footer__contact-note { font-size: 13px; color: rgba(255, 255, 255, 0.4); margin-top: 2px; }
.sro-footer__divider { height: 1px; background: rgba(255, 255, 255, 0.08); margin: 0 0 48px; }
.sro-footer__nav-grid { display: grid; grid-template-columns: 1fr; gap: 40px 24px; margin-bottom: 48px; }
@media (min-width: 640px) { .sro-footer__nav-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .sro-footer__nav-grid { grid-template-columns: repeat(4, 1fr); } }
.sro-footer__col-title { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.4); margin: 0 0 20px; display: block; }
.sro-footer__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.sro-footer__list a { font-size: 14px; color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color 180ms ease-out; display: inline-block; }
.sro-footer__list a:hover { color: var(--lr-accent); }
.sro-footer__link-accent { color: var(--lr-accent) !important; font-weight: 500; }
.sro-footer__bottom { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: start; padding-top: 32px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
@media (min-width: 768px) { .sro-footer__bottom { grid-template-columns: 1.6fr 1fr; gap: 48px; } }
.sro-footer__company-name { font-family: var(--t-headline-font, inherit); font-size: 16px; font-weight: 600; color: #FFFFFF; margin: 0 0 12px; }
.sro-footer__legal-grid { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.sro-footer .sro-mono { font-family: var(--font-mono); font-size: 12px; font-weight: 500; color: rgba(255, 255, 255, 0.75); background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.08); padding: 4px 10px; border-radius: 4px; white-space: nowrap; letter-spacing: 0; }
.sro-footer__address { font-size: 13px; color: rgba(255, 255, 255, 0.5); line-height: 1.55; margin: 0; max-width: 480px; }
.sro-footer__copyright { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; text-align: left; }
.sro-footer__copyright .sro-micro { color: rgba(255, 255, 255, 0.4); margin: 0; }
.sro-footer__bottom-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.sro-footer__bottom-links li { display: block; }
.sro-footer__bottom-links a { font-size: 12px; line-height: 1.4; color: rgba(255, 255, 255, 0.5); text-decoration: none; transition: color 180ms ease-out; display: inline-block; }
.sro-footer__bottom-links a:hover { color: var(--lr-accent); }
@media (max-width: 640px) {
  .sro-footer { padding: 60px 0 32px; }
  .sro-footer__top { margin-bottom: 40px; gap: 32px; }
  .sro-footer__nav-grid { gap: 32px 24px; margin-bottom: 40px; }
  .sro-footer__contact { padding: 20px; }
  .sro-footer__title { font-size: 22px; }
}