/* ========================================
   ДИЗАЙН-ТОКЕНЫ
   ======================================== */
:root {
  --bg:           #ffffff;
  --bg-alt:       #f7f5f3;
  --bg-card:      #ffffff;
  --red:          #e2230c;
  --red-dark:     #c01d09;
  --red-light:    #fff1f0;
  --green:        #1a7d43;
  --green-light:  #edf7f1;
  --text:         #1a1208;
  --text-muted:   #6b6259;
  --border:       #e8e0da;
  --border-dark:  #d0c8c0;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.06);
  --shadow-md:    0 4px 24px rgba(0,0,0,.10);
  --shadow-lg:    0 12px 48px rgba(0,0,0,.16);
  --radius:       12px;
  --radius-lg:    20px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Manrope", -apple-system, sans-serif;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}
.container { max-width: 1160px; margin: 0 auto; padding: 0 20px; }
[id] { scroll-margin-top: 96px; }
section { padding: 88px 0; }
section.alt { background: var(--bg-alt); }
section.tight { padding: 56px 0; }
h1 { font-family: var(--font-display); font-size: clamp(28px, 5vw, 54px); font-weight: 700; line-height: 1.12; }
h2 { font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 38px); font-weight: 600; line-height: 1.2; margin-bottom: 8px; }
h3 { font-size: 18px; font-weight: 700; line-height: 1.3; }
.section-eyebrow { font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; display: inline-flex; align-items: center; gap: 8px; }
.section-eyebrow::before { content: ""; width: 20px; height: 2px; background: var(--red); border-radius: 2px; }
.section-sub { font-size: 17px; color: var(--text-muted); margin-bottom: 40px; max-width: 640px; }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }
a { color: var(--red); }
img { max-width: 100%; display: block; }

/* ========================================
   АНИМАЦИИ ПОЯВЛЕНИЯ
   ======================================== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .03s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .09s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .15s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .21s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .27s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .39s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .45s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__float, .cta-band__price { animation: none !important; }
  .calc-chart__bar { transition: none !important; }
}
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }

/* ========================================
   КНОПКИ
   ======================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 10px; padding: 14px 26px;
  font-family: var(--font-body); font-size: 16px; font-weight: 700;
  cursor: pointer; text-decoration: none; transition: all .18s ease;
  position: relative; overflow: hidden;
}
.btn--primary { background: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(226,35,12,.38); }
.btn--primary:active { transform: translateY(0); }
.btn--ghost { background: transparent; border: 2px solid var(--border-dark); color: var(--text); }
.btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-2px); }
.btn--block { width: 100%; }
.btn--sm { padding: 10px 18px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 18px; }
.link-social {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  color: var(--text); text-decoration: none; transition: color .15s, transform .15s;
}
.link-social:hover { color: var(--red); transform: translateX(2px); }
.link-social img { width: 22px; height: 22px; object-fit: contain; }
.link-social--lg { font-size: 17px; }
.hero--dark .link-social, .consultant-cta .link-social { color: #fff; }
.hero--dark .link-social:hover, .consultant-cta .link-social:hover { color: #ff8a72; }

/* ========================================
   DEV NOTE
   ======================================== */
.dev-note {
  background: #fffbe6; border: 1px dashed #f5a623;
  font-size: 12px; color: #7a5c00; padding: 10px 20px; text-align: center;
}

/* ========================================
   ШАПКА
   ======================================== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}
.header__inner {
  display: flex; align-items: center; gap: 18px; padding: 10px 20px; max-width: 1160px; margin: 0 auto;
}
.header__logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.header__logo img { height: 34px; width: auto; }
.header__logo-text { font-family: var(--font-body); font-size: 21px; font-weight: 800; letter-spacing: -.01em; color: var(--text); line-height: 1; white-space: nowrap; }
.header__logo-text span { color: var(--red); }

.header__meta { display: flex; align-items: center; gap: 14px; flex: 1; min-width: 0; }
.city-select {
  border: 1px solid var(--border); background: var(--bg-alt); color: var(--text);
  border-radius: 8px; padding: 7px 10px; font-family: var(--font-body); font-size: 13px; cursor: pointer; flex-shrink: 0;
}
.header__hours { font-size: 13px; color: var(--text-muted); white-space: nowrap; display: flex; align-items: center; gap: 6px; }
.header__hours::before { content: "🕒"; font-size: 12px; }
@media (max-width: 1023px) { .header__hours { display: none; } }

.header__nav { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.header__nav a {
  font-size: 14px; font-weight: 600; color: var(--text); text-decoration: none; white-space: nowrap;
  transition: color .15s;
}
.header__nav a:hover { color: var(--red); }
@media (max-width: 900px) { .header__nav { display: none; } }

@media (max-width: 768px) { .header__meta { display: none; } }

.header__phone { font-weight: 700; font-size: 17px; color: var(--text); text-decoration: none; white-space: nowrap; flex-shrink: 0; }
.header__phone:hover { color: var(--red); }
@media (max-width: 768px) { .header__phone { display: none; } }
.header__cta { white-space: nowrap; flex-shrink: 0; }

.header__social { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.header__social a {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s, opacity .2s;
}
.header__social a img, .header__social a svg { width: 44px; height: 44px; object-fit: contain; }
.header__social a:hover { transform: translateY(-2px); opacity: .85; }
@media (max-width: 480px) {
  .header__social a { width: 29px; height: 29px; }
  .header__social a img, .header__social a svg { width: 29px; height: 29px; }
}

/* ========================================
   HERO
   ======================================== */
.hero { padding: 56px 0 72px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -180px; right: -180px; width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(226,35,12,.08), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: flex-end; position: relative; z-index: 1; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-light); color: var(--green);
  border-radius: 100px; padding: 6px 14px; font-size: 13px; font-weight: 700;
  margin-bottom: 20px;
}
.hero__eyebrow::before { content: "●"; font-size: 8px; animation: pulse-dot 1.8s ease-in-out infinite; }
@keyframes pulse-dot { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.hero__h1 { margin-bottom: 16px; }
.hero__sub { font-size: 18px; color: var(--text-muted); margin-bottom: 28px; line-height: 1.55; }

.price-pill {
  display: inline-flex; align-items: baseline; gap: 4px;
  font-family: var(--font-display); font-size: 40px; font-weight: 700;
  color: var(--green); margin-right: 4px;
}
.price-pill small { font-size: 16px; color: var(--text-muted); font-family: var(--font-body); font-weight: 400; }

.hero__confidential {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12.5px; font-weight: 700; color: var(--green);
  background: var(--green-light); border-radius: 100px; padding: 5px 12px; margin-bottom: 12px;
}
.hero--dark .hero__confidential { color: #6fe3a0; background: rgba(111,227,160,.14); }
.hero__city-note { font-size: 13px; color: rgba(255,255,255,.72); margin: 8px 0 4px; }
.hero__city-note:empty { display: none; margin: 0; }

.hero__cta-group { display: flex; flex-direction: column; gap: 10px; }
.hero__cta-row { display: flex; gap: 10px; flex-wrap: wrap; }

.hero__media { position: relative; animation: fadeIn 1s var(--ease); }
@media (min-width: 769px) {
  .hero__media { width: calc(100% + 8vw); margin-left: auto; }
}
.hero__photo-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(145deg, #fff1ee, #ffe0da 55%, #ffd2ca);
  aspect-ratio: 4/5; display: flex; align-items: flex-end; justify-content: center;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero__photo-wrap img { width: 88%; height: auto; max-height: 96%; object-fit: contain; object-position: bottom; filter: drop-shadow(0 12px 20px rgba(0,0,0,.18)); }
.hero__photo-name {
  position: absolute; left: 20px; bottom: 20px; background: rgba(255,255,255,.92);
  backdrop-filter: blur(6px); border-radius: 10px; padding: 10px 14px; box-shadow: var(--shadow-sm);
  font-size: 13px; z-index: 2;
}
.hero__photo-name strong { display: block; font-size: 14px; }
.hero__badge-group { position: absolute; top: 56%; right: -16px; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; z-index: 2; }
.hero__badge {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-md);
  animation: floaty 5s ease-in-out infinite;
}
.hero__badge:nth-child(2) { animation-delay: -2.5s; }
.hero__badge-score { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--red); line-height: 1; }
.hero__badge-text { font-size: 12px; color: var(--text-muted); line-height: 1.4; }
.hero__badge-text strong { display: block; color: var(--text); font-size: 13px; }
.hero__badge-icon { width: 20px; height: 20px; object-fit: contain; margin-left: auto; flex-shrink: 0; }

.hero__proof-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border);
}
.hero__proof-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px 14px;
}
.hero__proof-icon {
  width: 42px; height: 42px; min-width: 42px; border-radius: 12px;
  background: var(--red-light); display: flex; align-items: center; justify-content: center;
}
.hero__proof-icon img { width: 22px; height: 22px; object-fit: contain; }
.hero__proof-icon--star { font-size: 20px; }
.hero__proof-text { font-size: 13.5px; font-weight: 700; color: var(--text); line-height: 1.35; }
.hero--dark .hero__proof-grid { border-top-color: rgba(255,255,255,.14); }
.hero--dark .hero__proof-item { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); }
.hero--dark .hero__proof-icon { background: rgba(255,255,255,.1); }
.hero--dark .hero__proof-icon img { filter: brightness(0) invert(1); }
.hero--dark .hero__proof-text { color: #fff; }
@media (max-width: 560px) {
  .hero__proof-grid { grid-template-columns: 1fr; }
}

/* ========================================
   КВИЗ
   ======================================== */
.quiz-section { background: var(--bg-alt); position: relative; }
.quiz-wrap { max-width: 620px; margin: 0 auto; min-width: 0; }
.quiz-box {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md); min-width: 0;
}
.quiz-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.quiz-progress__step { flex: 1; height: 5px; border-radius: 3px; background: var(--border); transition: background .3s; }
.quiz-progress__step.active { background: var(--red); }
.cursor { display: inline-block; width: 2px; height: 14px; background: var(--red); vertical-align: middle; margin-left: 2px; animation: blink 0.9s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }
.quiz-trust-line { display: flex; align-items: center; gap: 14px; font-size: 12px; color: var(--text-muted); margin-bottom: 22px; flex-wrap: wrap; }
.quiz-trust-line a { display: inline-flex; align-items: center; gap: 5px; color: var(--text-muted); text-decoration: none; font-weight: 600; }
.quiz-trust-line a:hover { color: #2AABEE; }
.quiz-trust-line a img { height: 16px; width: 16px; }
.quiz-question { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.quiz-hint { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.quiz-options { display: grid; gap: 10px; }
.quiz-option {
  text-align: left; background: #fff; border: 1.5px solid var(--border);
  border-radius: 10px; padding: 13px 16px; color: var(--text);
  cursor: pointer; font-family: var(--font-body); font-size: 15px; transition: all .15s;
}
.quiz-option:hover { border-color: var(--red); color: var(--red); background: var(--red-light); transform: translateX(2px); }
.quiz-option--warn { border-color: #ffa500; background: #fffbe6; color: #7a5c00; }
.quiz-option--warn:hover { border-color: #e08800; }
.quiz-option--multi { position: relative; padding-left: 44px; }
.quiz-option--multi::before { content: ""; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 18px; height: 18px; border: 2px solid var(--border); border-radius: 4px; }
.quiz-option--multi.selected { border-color: var(--red); background: var(--red-light); }
.quiz-option--multi.selected::before { background: var(--red); border-color: var(--red); content: "✓"; color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.quiz-next-btn { margin-top: 16px; }
.quiz-back { background: none; border: none; color: var(--text-muted); font-size: 13px; margin-top: 14px; cursor: pointer; padding: 0; font-family: var(--font-body); }
.quiz-back:hover { color: var(--red); }
.quiz-step { display: none; }
.quiz-step.active { display: block; animation: fadeIn .35s var(--ease); }
.quiz-result-icon { width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; }
.quiz-result-icon.ok { background: var(--green-light); }
.quiz-result-icon.info { background: #fffbe6; }
.quiz-form { margin-top: 20px; display: grid; gap: 12px; }
.quiz-input {
  border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 16px;
  font-family: var(--font-body); font-size: 15px; color: var(--text); background: #fff;
  width: 100%;
}
.quiz-input:focus { outline: none; border-color: var(--red); }
.quiz-input::placeholder { color: var(--text-muted); }
.quiz-contact-options { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.quiz-contact-option {
  border: 1.5px solid var(--border); border-radius: 10px; padding: 10px 8px;
  text-align: center; cursor: pointer; font-size: 13px; transition: all .15s;
  background: #fff; color: var(--text); display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.quiz-contact-option img { height: 20px; width: 20px; object-fit: contain; }
.quiz-contact-option.selected, .quiz-contact-option:hover { border-color: var(--red); background: var(--red-light); color: var(--red); }
.quiz-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--text-muted); }
.quiz-checkbox input { margin-top: 2px; flex-shrink: 0; }
.quiz-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* ========================================
   КАЛЬКУЛЯТОР
   ======================================== */
.calc-box {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  max-width: 900px; margin: 0 auto; box-shadow: var(--shadow-sm); overflow: hidden;
}
.calc-label { display: block; font-weight: 600; margin-bottom: 8px; }
.calc-input-wrap { position: relative; }
.calc-input {
  border: 2px solid var(--border); border-radius: 10px; padding: 14px 50px 14px 16px;
  font-family: var(--font-body); font-size: 22px; font-weight: 700; color: var(--text);
  width: 100%;
}
.calc-input:focus { outline: none; border-color: var(--red); }
.calc-input-unit { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 18px; color: var(--text-muted); font-weight: 700; }
.calc-result {
  margin-top: 20px; padding: 20px; background: var(--green-light);
  border-radius: var(--radius); border-left: 4px solid var(--green);
  display: none;
}
.calc-result.visible { display: block; animation: fadeIn .4s var(--ease); }
.calc-result__big { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: var(--green); }
.calc-result__text { font-size: 14px; color: var(--text-muted); margin-top: 4px; }
.calc-disclaimer { font-size: 12px; color: var(--text-muted); margin-top: 12px; }

/* ========================================
   ДИСКЛЕЙМЕР
   ======================================== */
.disclaimer-bar {
  background: #f0ece8; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 14px 0;
}
.disclaimer-bar p { font-size: 11.5px; color: var(--text-muted); line-height: 1.6; max-width: 900px; }

/* ========================================
   ЦИФРЫ / КАК МЫ РАБОТАЕМ
   ======================================== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; }
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stat-card__num { font-family: var(--font-display); font-size: 38px; font-weight: 700; color: var(--red); line-height: 1; margin-bottom: 6px; }
.stat-card__label { font-size: 14px; color: var(--text-muted); }

.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative; margin-top: 44px; }
.steps-grid::before { content: ""; position: absolute; top: 108px; left: 10%; right: 10%; height: 2px; background: linear-gradient(to right, var(--red), var(--border)); z-index: 0; }
.step-item { text-align: center; padding: 0 12px; position: relative; z-index: 1; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; background: var(--red); color: #fff;
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 14px;
  box-shadow: 0 0 0 4px #fff, 0 0 0 5px var(--border);
  transition: transform .25s;
}
.step-item:hover .step-num { transform: scale(1.12); }
.step-title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.step-text { font-size: 13px; color: var(--text-muted); }

/* ========================================
   ПРЕИМУЩЕСТВА / ЗАКРЫТИЕ СТРАХОВ
   ======================================== */
.icon-tile { width: 64px; height: 64px; border-radius: 16px; background: var(--red-light); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; transition: transform .25s var(--ease); }
.icon-tile img { width: 30px; height: 30px; }
.icon-tile.green { background: var(--green-light); }
.icon-tile:hover { transform: scale(1.08); }
.icon-tile--sm { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 0; }
.icon-tile--sm img { width: 24px; height: 24px; }

/* ========================================
   ВИЗУАЛЬНЫЕ УТИЛИТЫ
   ======================================== */
.section-wave { position: relative; }
.section-wave::after {
  content: ""; display: block; width: 100%; height: 48px; margin-top: -1px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48V24C200 0 400 48 600 24S1000 0 1200 24V48z' fill='%23f7f5f3'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
}
.section-wave--to-white::after { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 48' preserveAspectRatio='none'%3E%3Cpath d='M0 48V24C200 0 400 48 600 24S1000 0 1200 24V48z' fill='%23ffffff'/%3E%3C/svg%3E"); }
section.alt { position: relative; overflow: hidden; }
section.alt::before {
  content: ""; position: absolute; top: -120px; right: -80px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(226,35,12,.06), transparent 70%); pointer-events: none;
}
section.alt::after {
  content: ""; position: absolute; bottom: -100px; left: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,125,67,.05), transparent 70%); pointer-events: none;
}
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.bento-grid { display: grid; gap: 16px; }
.bento-grid--stats { grid-template-columns: repeat(4, 1fr); grid-template-rows: auto auto; }
.visual-panel { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.visual-panel img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Причины — светлая секция */
.section-reasons { position: relative; padding: 88px 0; background: var(--bg-alt); }
.section-reasons .section-eyebrow { color: var(--red); }
.section-reasons .section-eyebrow::before { background: var(--red); }
.section-reasons h2 { color: var(--text); }
.section-reasons .section-sub { color: var(--text-muted); }
.section-reasons .center p { color: var(--text-muted); }
.reasons-bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.reason-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 22px 20px; box-shadow: var(--shadow-sm);
  transition: all .25s var(--ease); cursor: default;
}
.reason-card:hover { border-color: var(--red); box-shadow: 0 8px 32px rgba(226,35,12,.18); transform: translateY(-4px); }
.reason-card--large { grid-column: span 2; padding: 28px 24px; }
.reason-card:nth-child(7),
.reason-card:nth-child(8) { grid-column: span 2; }
.reason-card__icon-wrap { margin-bottom: 14px; }
.reason-card__title { font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.reason-card--large .reason-card__title { font-size: 17px; }
.reason-card__text { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Калькулятор — split */
.calc-box { display: grid; grid-template-columns: 1fr 1fr; gap: 0; padding: 0; overflow: hidden; max-width: 900px; }
.calc-box__input { padding: 36px; }
.calc-box__chart {
  padding: 36px 32px; background: linear-gradient(160deg, var(--green-light), #fff);
  border-left: 1px solid var(--border); display: flex; flex-direction: column; justify-content: center; gap: 20px;
}
.calc-chart__row { display: flex; flex-direction: column; gap: 6px; }
.calc-chart__label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; }
.calc-chart__bar-wrap { height: 28px; background: #fff; border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.calc-chart__bar { height: 100%; border-radius: 7px; transition: width .6s cubic-bezier(.16,.84,.44,1); min-width: 8px; }
.calc-chart__row.is-updated .calc-chart__val { animation: calcPop .4s ease; }
@keyframes calcPop { 0% { transform: scale(1); } 50% { transform: scale(1.06); } 100% { transform: scale(1); } }
.calc-chart__bar--now { background: linear-gradient(90deg, var(--red), #ff6b52); }
.calc-chart__bar--after { background: linear-gradient(90deg, var(--green), #2ecc71); }
.calc-chart__val { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.calc-chart__val--now { color: var(--red); }
.calc-chart__val--after { color: var(--green); }
.calc-chart__saving { margin-top: 8px; padding: 14px; background: #fff; border-radius: 10px; border: 2px solid var(--green); text-align: center; opacity: 0; transition: opacity .4s; }
.calc-chart__saving.visible { opacity: 1; }
.calc-chart__saving-num { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--green); }

/* Статистика — bento */
.bento-grid--stats {
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
}
.bento-grid--stats .stat-card--hero {
  grid-column: 1 / 3; grid-row: 1 / 3; position: relative; overflow: hidden;
  min-height: 220px; display: flex; flex-direction: column; justify-content: flex-end;
  background: linear-gradient(160deg, rgba(26,18,8,.82), rgba(26,18,8,.55)), url('/images/decor/banner-trust.jpg') center / cover no-repeat;
  border: none; color: #fff;
}
.bento-grid--stats .stat-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.bento-grid--stats .stat-card:nth-child(3) { grid-column: 4; grid-row: 1; }
.bento-grid--stats .stat-card:nth-child(4) { grid-column: 3 / 5; grid-row: 2; }
.bento-grid--stats .stat-card--live {
  grid-column: 1 / 5; grid-row: 3;
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px; background: linear-gradient(90deg, #fff 0%, var(--green-light) 100%);
  border-color: #c8e6d4;
}
.stat-card--hero .stat-card__num { color: #fff; font-size: 52px; }
.stat-card--hero .stat-card__label { color: rgba(255,255,255,.8); }
.stat-card--hero .stat-card__icon { width: 40px; height: 40px; margin-bottom: 10px; opacity: .85; filter: brightness(0) invert(1); }
.stat-card__num[data-count] { display: inline-block; }
.stat-card--live .live-counter__pulse { margin: 0; }
.stat-card--live .live-counter__body { flex: 1; }
.stat-card--live .live-counter__updated { margin-left: auto; }

/* Шаги — иллюстрации */
.section-steps { position: relative; }
.section-steps::before {
  content: ""; position: absolute; top: 40px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(226,35,12,.05), transparent 70%); pointer-events: none;
}
.steps-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; margin: 0 -20px; padding: 0 20px 8px; }
.steps-scroll::-webkit-scrollbar { display: none; }
.step-item__illus { width: 80px; height: 80px; margin: 0 auto 12px; border-radius: 16px; overflow: hidden; background: var(--bg-alt); box-shadow: var(--shadow-sm); }
.step-item__illus img { width: 100%; height: 100%; object-fit: cover; }

/* Преимущества */
.benefit-card { border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); transition: transform .25s, box-shadow .25s; position: relative; overflow: hidden; }
.benefit-card:nth-child(even) { background: var(--red-light); border-color: #ffd2ca; }
.benefit-card:nth-child(odd) { background: #fff; }
.benefit-card:nth-child(3n) { background: var(--green-light); border-color: #c8e6d4; }
.benefit-card::after {
  content: ""; position: absolute; right: -20px; bottom: -20px; width: 100px; height: 100px;
  background: url('/images/icons/court.svg') center / contain no-repeat; opacity: .04; pointer-events: none;
}
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card__title { font-weight: 700; margin-bottom: 6px; font-size: 17px; }
.benefit-card__text { font-size: 14px; color: var(--text-muted); }
.benefit-card .icon-tile { width: 64px; height: 64px; }

/* Критерии */
.eligibility-visual {
  border-radius: var(--radius-lg); overflow: visible; box-shadow: var(--shadow-md);
  background: var(--bg-alt); padding: 16px 20px; display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.eligibility-visual img { width: 100%; height: auto; max-height: 360px; object-fit: contain; object-position: center; }
.debts-col li::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; }

/* Конфиденциальность */
.confidential-box {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start;
  background: linear-gradient(120deg, #1a1208, #2a1c11); border-radius: var(--radius-lg);
  padding: 48px; color: #fff; border: none; position: relative; overflow: hidden;
}
.confidential-box::before {
  content: ""; position: absolute; top: -80px; right: -40px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(226,35,12,.2), transparent 70%); pointer-events: none;
}
.confidential-left h2 { color: #fff; }
.confidential-left p { color: rgba(255,255,255,.72) !important; }
.confidential-illus { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; margin-bottom: 20px; border: 3px solid rgba(255,255,255,.15); box-shadow: var(--shadow-md); }
.confidential-illus img { width: 100%; height: 100%; object-fit: cover; }
.confidential-item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 12px; padding: 16px; display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; }
.confidential-item--yes { border-left: 3px solid var(--green); }
.confidential-item--no { border-left: 3px solid var(--red); }
.confidential-item__badge.yes { background: rgba(26,125,67,.25); color: #6fe3a0; }
.confidential-item__badge.no { background: rgba(226,35,12,.2); color: #ff9c8c; }
.confidential-item__title { color: #fff; }
.confidential-item__text { color: rgba(255,255,255,.65); }

/* Предупреждение — сравнение */
.warning-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 2px solid var(--border); }
.warning-compare__col { padding: 36px; }
.warning-compare__col--bad { background: linear-gradient(160deg, #fff5f4, #fff); border-right: 1px solid var(--border); }
.warning-compare__col--good { background: linear-gradient(160deg, var(--green-light), #fff); }
.warning-compare__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.warning-compare__status { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800; flex-shrink: 0; }
.warning-compare__status--bad { background: var(--red-light); color: var(--red); }
.warning-compare__status--good { background: var(--green-light); color: var(--green); }
.warning-compare__col h3 { font-size: 18px; margin: 0; }
.risk-item__icon { width: 48px; height: 48px; min-width: 48px; border-radius: 12px; }
.risk-item__icon img { width: 24px; height: 24px; }

/* Услуги */
.service-card--hero { grid-column: span 2; grid-row: span 2; }
.service-card__media { padding: 0; aspect-ratio: 16/10; }
.service-card--hero .service-card__media { aspect-ratio: 16/11; }
.service-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,.55) 0%, transparent 50%); pointer-events: none;
}
.service-card__media img { object-fit: cover; width: 100%; height: 100%; }
.service-card:hover .service-card__media img { transform: scale(1.08); }

/* Кейсы / клиенты */
.doc-thumb:hover { border-color: var(--green); border-width: 3px; }
.doc-thumb__caption { font-family: var(--font-display); font-size: 15px; font-weight: 700; }
.clients-grid { grid-template-rows: masonry; }
.client-photo:nth-child(3) { aspect-ratio: 1/1.2; }
.client-photo:nth-child(5) { aspect-ratio: 1/0.9; }

/* Hero декор — убран */
.quiz-modal-box--inline { border-top: 4px solid; border-image: linear-gradient(90deg, var(--red), #ff6b52) 1; }
.quiz-modal-side { background: linear-gradient(160deg, #1a1208, #2a1c11), url('/images/decor/bg-reasons.jpg') center / cover; background-blend-mode: overlay; }
.quiz-modal-side__social { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.quiz-modal-side__social a {
  width: 56px; height: 56px; border-radius: 50%; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center; transition: transform .2s, background .2s;
}
.quiz-modal-side__social a img, .quiz-modal-side__social a svg { width: 32px; height: 32px; }
.quiz-modal-side__social a:hover { background: var(--red); border-color: var(--red); transform: scale(1.08); }

/* Форма захвата — скрин №3 */
.lead-capture {
  display: grid; grid-template-columns: 1.15fr 260px minmax(300px, 360px); gap: 0; align-items: stretch;
  background: linear-gradient(120deg, #1a1208 55%, #f0ece8 55%); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-lg); position: relative; min-height: 420px;
}
.lead-capture__info { padding: 44px 40px; color: #fff; z-index: 1; }
.lead-capture__info h2 { font-family: var(--font-display); font-size: clamp(22px, 3vw, 30px); color: #fff; margin-bottom: 12px; line-height: 1.2; }
.lead-capture__info > p { color: rgba(255,255,255,.75); font-size: 15px; margin-bottom: 20px; }
.lead-capture__list { list-style: none; display: grid; gap: 12px; }
.lead-capture__list li { font-size: 14px; color: rgba(255,255,255,.85); padding-left: 18px; position: relative; line-height: 1.5; }
.lead-capture__list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }
.lead-capture__photo { position: relative; z-index: 2; display: flex; align-items: flex-end; justify-content: center; margin-bottom: -20px; }
.lead-capture__photo img { width: 100%; max-height: 440px; object-fit: contain; object-position: bottom; filter: drop-shadow(0 12px 24px rgba(0,0,0,.35)); }
.lead-capture__nameplate { position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%); text-align: center; white-space: nowrap; }
.lead-capture__nameplate strong { display: block; background: var(--red); color: #fff; font-size: 14px; padding: 8px 20px; border-radius: 8px 8px 0 0; }
.lead-capture__nameplate span { display: block; background: #fff; color: var(--text); font-size: 12px; padding: 6px 20px; border-radius: 0 0 8px 8px; box-shadow: var(--shadow-sm); }
.lead-capture__form-card {
  background: #fff; margin: 28px 28px 28px 0; border-radius: var(--radius-lg); padding: 28px 26px;
  box-shadow: var(--shadow-md); align-self: center; z-index: 3; min-width: 0; max-width: 100%;
  overflow: hidden; box-sizing: border-box;
}
.lead-capture__form-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 16px; line-height: 1.35; }
.lead-capture__messengers { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.lead-messenger {
  display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px;
  border: 2px solid #2AABEE; border-radius: 10px; color: #2AABEE; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: all .15s;
}
.lead-messenger:hover { background: #eaf6fd; }
.lead-messenger--max { border-color: #7b61ff; color: #7b61ff; }
.lead-messenger--max:hover { background: #f3efff; }
.lead-messenger img { width: 24px; height: 24px; }
.lead-capture__or { font-size: 13px; color: var(--text-muted); text-align: center; margin-bottom: 12px; }
.lead-capture__phone { display: flex; align-items: center; gap: 8px; border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 14px; margin-bottom: 14px; background: var(--bg-alt); }
.lead-capture__phone span { font-weight: 700; color: var(--text-muted); font-size: 15px; }
.lead-capture__phone input { border: none; background: transparent; font-family: var(--font-body); font-size: 16px; font-weight: 600; width: 100%; outline: none; }
.lead-capture__submit {
  width: 100%; background: #1a1208; color: #fff; border: none; border-radius: 10px; padding: 16px;
  font-family: var(--font-body); font-size: 14px; font-weight: 800; letter-spacing: .04em; cursor: pointer;
  transition: background .15s, transform .15s;
}
.lead-capture__submit:hover { background: var(--red); transform: translateY(-1px); }
.lead-capture__consent { display: flex; gap: 8px; align-items: flex-start; font-size: 11px; color: var(--text-muted); margin-top: 12px; margin-bottom: 18px; }
.lead-capture__consent input { margin-top: 2px; accent-color: var(--red); flex-shrink: 0; }
/* Invisible SmartCaptcha — контейнер почти не занимает место и не раздувает карточку */
.captcha-holder {
  margin: 0; min-height: 0; max-width: 100%; width: 100%;
  overflow: hidden; line-height: 0;
}
.captcha-holder:empty { margin: 0; min-height: 0; }
.captcha-holder > div { max-width: 100% !important; }
.captcha-holder iframe { max-width: 100%; }

/* Услуги v2 — как bankrotstvo-42.ru/low (3+6 / 3×4 / 6+3+3) */
.services-grid-v2 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.service-card-v2 {
  position: relative; border-radius: 10px; overflow: hidden; min-height: 240px;
  text-decoration: none; color: inherit; display: block; transition: transform .25s, box-shadow .25s;
  padding: 24px 22px 20px; box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.service-card-v2:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.1); }
.services-grid-v2 > .service-card-v2:nth-child(1),
.services-grid-v2 > .service-card-v2:nth-child(2) { grid-column: span 3; }
.services-grid-v2 > .service-card-v2:nth-child(3) { grid-column: span 6; }
.services-grid-v2 > .service-card-v2:nth-child(n+4):nth-child(-n+7) { grid-column: span 3; }
.services-grid-v2 > .service-card-v2:nth-child(8) { grid-column: span 6; }
.services-grid-v2 > .service-card-v2:nth-child(9),
.services-grid-v2 > .service-card-v2:nth-child(10) { grid-column: span 3; }
.service-card-v2--consumer { background: linear-gradient(0.5turn, #b23232 0%, rgba(137,84,84,.88) 100%); color: #fff; }
.service-card-v2--bankruptcy { background: linear-gradient(180deg, #f7f7f7 0%, #e6e6e6 99%); color: var(--text); }
.service-card-v2--dtp { background: #dce9f2; color: var(--text); }
.service-card-v2--housing { background: linear-gradient(180deg, #878787 0%, #222 100%); color: #fff; }
.service-card-v2--labor { background: #dce9f2; color: var(--text); }
.service-card-v2--inheritance { background: linear-gradient(0.5turn, #a02d2d 0%, #dc9797 100%); color: #fff; }
.service-card-v2--land { background: linear-gradient(180deg, #f7f7f7 0%, #e6e6e6 99%); color: var(--text); }
.service-card-v2--court { background: linear-gradient(180deg, #f7f7f7 0%, #e6e6e6 99%); color: var(--text); }
.service-card-v2--debt { background: linear-gradient(180deg, #878787 0%, #222 100%); color: #fff; }
.service-card-v2--family { background: #dce9f2; color: var(--text); }
.service-card-v2--active { box-shadow: inset 0 0 0 2px rgba(226,35,12,.35), 0 2px 12px rgba(0,0,0,.06); }
.service-card-v2__title { font-weight: 700; font-size: 16px; line-height: 1.3; max-width: 52%; position: relative; z-index: 2; }
.service-card-v2__btn {
  display: inline-block; margin-top: 16px; background: #fff; color: var(--text);
  font-size: 13px; font-weight: 700; padding: 10px 20px; border-radius: 8px; position: relative; z-index: 2;
}
.service-card-v2--consumer .service-card-v2__btn,
.service-card-v2--inheritance .service-card-v2__btn { color: var(--red); }
.service-card-v2__img {
  position: absolute; right: -4px; bottom: 0; width: 54%; height: 92%;
  object-fit: contain; object-position: bottom right; pointer-events: none; z-index: 1;
}
.service-card-v2--dtp .service-card-v2__img,
.service-card-v2--court .service-card-v2__img { width: 48%; height: 95%; }
.service-card-v2--dtp .service-card-v2__img { width: 55%; right: 8px; }
.cases-disclaimer {
  margin-top: 20px; padding: 14px 18px; background: #fff8f0; border: 1px solid #f0dcc8;
  border-radius: 10px; font-size: 12.5px; color: var(--text-muted); line-height: 1.55; text-align: center;
}
.case-card__thumb img { object-position: center 15%; }
.chat-strip__avatar,
.chat-panel__head img,
.chat-panel__head .chat-avatar-face {
  object-fit: cover; object-position: center 30%;
}
.team-card__photo img { object-position: top center; }

/* Дисклеймер о банкротстве — в ширину контейнера, без «карточки» */
.legal-note {
  padding: 36px 0 8px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.legal-note__inner { padding: 0; }
.legal-note__label {
  font-size: 12px; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--text-muted); margin: 0 0 10px;
}
.legal-note__lead {
  font-size: 14.5px; color: var(--text); line-height: 1.5; margin: 0 0 14px;
  max-width: 720px;
}
.legal-note__list {
  margin: 0 0 14px; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px;
}
.legal-note__list li {
  position: relative; padding-left: 18px;
  font-size: 13.5px; color: var(--text-muted); line-height: 1.45;
}
.legal-note__list li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.legal-note__foot {
  margin: 0; font-size: 12px; color: var(--text-muted); line-height: 1.45;
}
@media (max-width: 700px) {
  .legal-note__list { grid-template-columns: 1fr; }
}

/* CTA финальный */
.cta-final-wrap { padding: 56px 0; background: var(--bg-alt); }
.cta-final {
  background: linear-gradient(120deg, #1a1208 0%, #2a1c11 50%, #1a1208 100%);
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-final__grid { display: grid; grid-template-columns: 1fr 300px 340px; gap: 0; align-items: stretch; min-height: 400px; max-width: 100%; }
.cta-final__copy { padding: 56px 48px; color: #fff; display: flex; flex-direction: column; justify-content: center; }
.cta-final__copy h2 { font-family: var(--font-display); font-size: clamp(26px, 4vw, 38px); color: #fff; margin-bottom: 14px; }
.cta-final__copy p { color: rgba(255,255,255,.75); font-size: 17px; margin-bottom: 24px; }
.cta-final__price-block { margin-top: 8px; }
.cta-final__price { font-family: var(--font-display); font-size: 52px; font-weight: 700; color: #6fe3a0; line-height: 1; }
.cta-final__price-note { font-size: 14px; color: rgba(255,255,255,.6); margin-top: 4px; }
.cta-final__photo { display: flex; align-items: flex-end; justify-content: center; position: relative; }
.cta-final__photo img { max-height: 100%; width: auto; object-fit: contain; object-position: bottom; filter: drop-shadow(0 16px 32px rgba(0,0,0,.4)); }
.cta-final .lead-capture__form-card { margin: 32px 32px 32px 0; }

.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.fears-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.fear-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: box-shadow .2s; }
.fear-card:hover { box-shadow: var(--shadow-sm); }
.fear-card__q { font-weight: 700; color: var(--text); margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.fear-card__q::before { content: "?"; min-width: 22px; height: 22px; background: #fff3f2; color: var(--red); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 800; margin-top: 1px; }
.fear-card__a { font-size: 14px; color: var(--text-muted); }

/* ========================================
   КОМУ ПОДХОДИТ / ДОЛГИ
   ======================================== */
.eligibility-box {
  background: #fff; border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow-sm);
}
.eligibility-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.check-list { list-style: none; margin-top: 16px; }
.check-list li { padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 15px; display: flex; align-items: flex-start; gap: 10px; }
.check-list li:last-child { border-bottom: none; }
.check-list li::before { content: "✓"; min-width: 22px; height: 22px; background: var(--green-light); color: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800; margin-top: 1px; }

.debts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.debts-col h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 12px; }
.debts-col ul { list-style: none; }
.debts-col li { padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 14px; display: flex; align-items: center; gap: 8px; }
.debts-col li::before { content: "→"; color: var(--red); font-size: 12px; }

/* ========================================
   ПРЕДУПРЕЖДЕНИЕ
   ======================================== */
.warning-box {
  background: #fff; border: 2px solid #ffccc8; border-radius: var(--radius-lg);
  padding: 40px; position: relative; overflow: hidden;
}
.warning-box::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(to right, var(--red), #ff6b52); }
.warning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.warning-list { list-style: none; margin: 16px 0; }
.warning-list li { padding: 9px 0; border-bottom: 1px solid #ffe4e1; font-size: 14px; color: var(--text-muted); display: flex; align-items: flex-start; gap: 10px; }
.warning-list li::before { content: "⚠"; color: var(--red); min-width: 20px; }
.warning-alert { background: #fff1f0; border: 1px solid #ffccc8; border-radius: 10px; padding: 14px 16px; font-size: 14px; font-weight: 700; color: var(--red-dark); margin-top: 16px; }
.warning-right { background: var(--bg-alt); border-radius: var(--radius); padding: 24px; }
.warning-right h3 { margin-bottom: 14px; font-size: 16px; }
.risk-items { display: grid; gap: 10px; }
.risk-item { display: flex; gap: 10px; align-items: center; font-size: 14px; }
.risk-item__icon { width: 36px; height: 36px; min-width: 36px; background: #fff; border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.risk-item__icon img { width: 18px; height: 18px; }

/* ========================================
   ФОТО-БАННЕР (СВОБОДА)
   ======================================== */
.photo-band { position: relative; padding: 0; overflow: hidden; height: 380px; display: flex; align-items: center; }
.photo-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.photo-band--relief img { object-position: 65% center; }
.photo-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(26,18,8,.82) 10%, rgba(26,18,8,.35) 55%, rgba(26,18,8,.1) 100%); }
.photo-band__content { position: relative; z-index: 1; color: #fff; max-width: 520px; }
.photo-band__content .section-eyebrow { color: #ffb4a8; }
.photo-band__content .section-eyebrow::before { background: #ffb4a8; }
.photo-band__content h2 { color: #fff; }
.photo-band__content p { color: rgba(255,255,255,.85); font-size: 16px; margin-top: 10px; }

/* ========================================
   КЕЙСЫ
   ======================================== */
.cases-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.case-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 0; box-shadow: var(--shadow-sm); transition: all .2s;
  display: flex; flex-direction: column; min-height: 100%; overflow: hidden;
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--border-dark); }
.case-card__thumb { width: 100%; height: 240px; overflow: hidden; background: var(--bg-alt); flex-shrink: 0; }
.case-card__thumb img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.case-card__body { padding: 18px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.case-card__badge { display: inline-block; background: var(--green-light); color: var(--green); font-size: 11px; font-weight: 700; border-radius: 100px; padding: 3px 10px; margin-bottom: 12px; }
.case-card__sum { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.case-card__meta { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.case-card__text { font-size: 14px; color: var(--text-muted); }
.case-card__result { margin-top: auto; padding-top: 12px; font-size: 13px; font-weight: 700; color: var(--green); display: flex; align-items: center; gap: 6px; }

.clients-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.client-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); aspect-ratio: 1/1; box-shadow: var(--shadow-sm); cursor: zoom-in; transition: transform .2s, box-shadow .2s; }
.client-photo img { width: 100%; height: 100%; object-fit: cover; }
.client-photo:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md); }
.client-photo--wide { grid-column: span 2; aspect-ratio: 2/1; }
@media (max-width: 860px) {
  .clients-grid { grid-template-columns: repeat(2, 1fr); }
  .client-photo--wide { grid-column: span 2; aspect-ratio: 2/1; }
}
@media (max-width: 520px) {
  .clients-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .client-photo--wide { grid-column: span 2; aspect-ratio: 16/9; }
}

.docs-strip { margin-top: 40px; max-width: 100%; }
.docs-strip__head { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.docs-strip__head h3 { font-size: 16px; }
.docs-strip__head span { font-size: 12px; color: var(--text-muted); background: var(--bg-alt); border-radius: 100px; padding: 3px 10px; }
.docs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.doc-thumb { border-radius: 10px; overflow: hidden; border: 1px solid var(--border); cursor: zoom-in; aspect-ratio: 3/4; position: relative; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; background: #fff; }
.doc-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doc-thumb:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-md); }
.doc-thumb::after { content: "🔍"; position: absolute; bottom: 6px; right: 6px; background: rgba(255,255,255,.9); border-radius: 50%; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 12px; }
.doc-lightbox { display: none; position: fixed; inset: 0; background: rgba(10,7,4,.88); z-index: 300; align-items: center; justify-content: center; padding: 24px; }
.doc-lightbox.open { display: flex; animation: fadeIn .2s ease; }
.doc-lightbox img { max-width: min(560px, 90vw); max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.doc-lightbox__close { position: absolute; top: 22px; right: 26px; background: rgba(255,255,255,.15); border: none; color: #fff; width: 40px; height: 40px; border-radius: 50%; font-size: 18px; cursor: pointer; }

/* ========================================
   ОТЗЫВЫ
   ======================================== */
.reviews-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 28px;
  align-items: start;
}
.reviews-score-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.reviews-score-card__num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.reviews-score-card__stars {
  color: #f5a623;
  font-size: 20px;
  margin: 6px 0;
}
.reviews-score-card__label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.reviews-score-card__platforms {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reviews-platform-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  text-decoration: none;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  transition: all .15s;
}
.reviews-platform-btn:hover { border-color: var(--red); color: var(--red); }
.reviews-platform-btn--active { border-color: var(--border-dark); }
.reviews-platform-btn__icon { width: 18px; height: 18px; object-fit: contain; }
.reviews-platform-btn__score { margin-left: auto; font-family: var(--font-display); font-size: 16px; color: var(--red); }
.reviews-cta-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
}
.reviews-cta-block p { margin-bottom: 10px; }
.reviews-widget-wrap { min-height: 700px; }
.city-map-widget { margin-bottom: 16px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.city-map-widget > div { width: 100% !important; }
.city-map-widget iframe { display: block; width: 100% !important; border-radius: var(--radius); }
.city-reviews-widget { border-radius: var(--radius); overflow: hidden; }
.city-reviews-widget > div { width: 100% !important; }

/* ========================================
   ЮРИДИЧЕСКИЕ УСЛУГИ
   ======================================== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  text-decoration: none; color: var(--text); overflow: hidden;
  transition: all .25s; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.service-card:hover { border-color: var(--red); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-card--active { border-color: var(--red); }
.service-card__media { aspect-ratio: 4/3; overflow: hidden; position: relative; background: var(--bg-alt); padding: 0; box-sizing: border-box; }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.06); }
.service-card__body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.service-card__head { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.service-card__head .icon-tile { width: 36px; height: 36px; min-width: 36px; border-radius: 10px; margin-bottom: 0; }
.service-card__head .icon-tile img { width: 18px; height: 18px; }
.service-card__title { font-weight: 700; font-size: 15px; }
.service-card__text { font-size: 13px; color: var(--text-muted); flex: 1; }
.service-card__cta { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--red); display: flex; align-items: center; gap: 4px; }
.service-card--active .service-card__cta::before { content: "✓ "; color: var(--green); }

/* ========================================
   КОМАНДА
   ======================================== */
.section-team {
  background: #1a1a1d;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
}
.section-team__decor {
  position: absolute;
  top: -84px;
  right: 0;
  width: 361px;
  height: 361px;
  pointer-events: none;
  z-index: 0;
}
.section-team__decor span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
}
.section-team__decor span:nth-child(1) { opacity: .4; }
.section-team__decor span:nth-child(2) { inset: 30px; opacity: .3; }
.section-team__decor span:nth-child(3) { inset: 60px; opacity: .2; }
.section-team__decor span:nth-child(4) { inset: 90px; opacity: .1; }
.section-team::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 55%;
  height: 100%;
  opacity: .1;
  pointer-events: none;
  background: url('/images/team/team-themis.jpg') left center / cover no-repeat;
}
.section-team h2 {
  color: #fff;
  font-size: clamp(28px, 3.2vw, 42px);
  line-height: 1.25;
  font-weight: 400;
}
.section-team__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}
.section-team__head h2 { margin-bottom: 0; max-width: 700px; }
.section-team__head h2 strong { font-weight: 700; }
.section-team__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid rgba(190,190,190,.55);
  border-radius: 30px;
  color: #bebebe;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.section-team__badge:hover { border-color: #fff; color: #fff; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.team-card { background: transparent; border: none; border-radius: 0; overflow: visible; box-shadow: none; }
.team-card:hover { transform: none; box-shadow: none; }
.team-card__photo-wrap { position: relative; margin-bottom: 14px; }
.team-card__photo {
  aspect-ratio: 260 / 320;
  overflow: hidden;
  background: #333;
  border-radius: 10px;
}
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card__exp {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 5px;
  z-index: 1;
  line-height: 1.4;
}
.team-card__name { font-weight: 700; font-size: 20px; margin-bottom: 6px; color: #fff; line-height: 1.3; }
.team-card__role { font-size: 16px; color: #fff; font-weight: 400; line-height: 1.45; }

/* ========================================
   О КОМПАНИИ
   ======================================== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); position: relative; }
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-list { list-style: none; margin: 20px 0; }
.about-list li { padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 15px; display: flex; gap: 10px; }
.about-list li::before { content: "→"; color: var(--red); }

/* ========================================
   CTA ПОЛОСА
   ======================================== */
.cta-band { position: relative; color: #fff; padding: 72px 0; overflow: hidden; }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.cta-band__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(194,20,8,.96) 30%, rgba(226,35,12,.86) 70%, rgba(226,35,12,.7)); }
.cta-band h2 { color: #fff; font-family: var(--font-display); }
.cta-band p { color: rgba(255,255,255,.85); margin: 12px 0 28px; font-size: 18px; }
.cta-band .btn--primary { background: #fff; color: var(--red); }
.cta-band .btn--primary:hover { background: #f7f7f7; }
.cta-band__inner { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 1; }

/* ========================================
   ПЛАВАЮЩИЙ ЧАТ
   ======================================== */
.chat-strip {
  position: fixed; right: 22px; bottom: 22px; z-index: 250;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--border); border-radius: 100px;
  padding: 6px 8px 6px 16px; cursor: pointer;
  box-shadow: 0 8px 28px rgba(0,0,0,.14);
  transition: transform .2s, box-shadow .2s, bottom .3s var(--ease);
  max-width: calc(100vw - 44px);
}
.chat-strip:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,0,0,.18); }
.chat-strip__pulse {
  width: 10px; height: 10px; min-width: 10px; border-radius: 50%;
  background: var(--green); position: relative; flex-shrink: 0;
}
.chat-strip__pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  background: var(--green); opacity: .3; animation: pulse 1.8s ease-in-out infinite;
}
.chat-strip__text { font-size: 13px; font-weight: 700; color: var(--text); white-space: nowrap; }
.chat-strip__avatar {
  width: 48px; height: 48px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border);
}
.chat-launcher { display: none; }
.chat-panel {
  position: fixed; right: 22px; bottom: 88px; z-index: 250; width: 340px; max-width: calc(100vw - 44px);
  background: #fff; border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden;
  display: none; flex-direction: column; border: 1px solid var(--border);
  transition: bottom .3s var(--ease);
}
.chat-panel.open { display: flex; animation: fadeIn .25s var(--ease); }
.chat-panel__head { background: var(--text); color: #fff; padding: 16px; display: flex; align-items: center; gap: 12px; }
.chat-panel__head img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.chat-panel__head strong { display: block; font-size: 14px; }
.chat-panel__head span { font-size: 12px; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 5px; }
.chat-panel__head span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.chat-panel__close { margin-left: auto; background: rgba(255,255,255,.12); border: none; color: #fff; width: 28px; height: 28px; border-radius: 50%; cursor: pointer; }
.chat-panel__body { padding: 16px; background: var(--bg-alt); }
.chat-bubble { background: #fff; border-radius: 12px; border-bottom-left-radius: 2px; padding: 12px 14px; font-size: 13.5px; box-shadow: var(--shadow-sm); margin-bottom: 12px; min-height: 20px; }
.chat-panel__actions { display: grid; gap: 8px; }
.chat-action { display: flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid var(--border); border-radius: 10px; padding: 11px 14px; font-size: 13.5px; font-weight: 600; text-decoration: none; color: var(--text); cursor: pointer; transition: all .15s; }
.chat-action:hover { border-color: var(--red); color: var(--red); background: var(--red-light); }
.chat-action img { width: 18px; height: 18px; object-fit: contain; }

/* ========================================
   ФУТЕР
   ======================================== */
.footer { background: #1a1208; color: #c8bdb4; padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo img { height: 34px; width: auto; }
.footer__logo-text { font-family: var(--font-body); font-size: 22px; font-weight: 800; letter-spacing: -.01em; color: #fff; }
.footer__logo-text span { color: var(--red); }
.footer__desc { font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.footer__offices { list-style: none; font-size: 13px; line-height: 1.6; margin-bottom: 16px; }
.footer__offices strong { color: #fff; font-weight: 700; }
.footer__phone { color: #fff; font-size: 18px; font-weight: 700; text-decoration: none; display: block; margin-bottom: 8px; }
.footer__col-title { font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #fff; margin-bottom: 14px; }
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 10px; }
.footer__links a { color: #c8bdb4; text-decoration: none; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; }
.footer__links a:hover { color: #fff; }
.footer__links a img { width: 16px; height: 16px; object-fit: contain; }
.footer__social { display: flex; gap: 12px; margin-top: 16px; }
.footer__social a {
  width: 44px; height: 44px; border-radius: 50%; background: #2a2019;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, transform .2s; text-decoration: none;
}
.footer__social a:hover { background: var(--red); transform: translateY(-3px); }
.footer__social a img { width: 24px; height: 24px; object-fit: contain; filter: none; }
.footer__bottom { border-top: 1px solid #332823; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 12px; }
.footer__legal { color: #6b5e55; }
.footer__legal a { color: #8a7a70; }

/* ========================================
   СЧЁТЧИК ДЕЛ В РАБОТЕ
   ======================================== */
.live-counter {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 24px;
  box-shadow: var(--shadow-sm);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}
.live-counter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,125,67,.04) 0%, transparent 60%);
  pointer-events: none;
}
.live-counter__pulse {
  width: 12px;
  height: 12px;
  min-width: 12px;
  border-radius: 50%;
  background: var(--green);
  position: relative;
}
.live-counter__pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green);
  opacity: .25;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: .25; }
  50%       { transform: scale(1.7); opacity: 0; }
}
.live-counter__body {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  flex: 1;
}
.live-counter__num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  min-width: 48px;
}
.live-counter__label {
  font-size: 15px;
  color: var(--text-muted);
}
.live-counter__updated {
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
  opacity: .6;
}

@media (max-width: 600px) {
  .live-counter { flex-wrap: wrap; }
  .live-counter__updated { width: 100%; margin-top: 4px; }
}

.popup-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 200; align-items: center; justify-content: center; padding: 16px; }
.popup-overlay.open { display: flex; }
.popup-box { background: #fff; border-radius: var(--radius-lg); padding: 36px; width: 100%; max-width: 440px; position: relative; box-shadow: var(--shadow-md); }
.popup-box--lead { max-width: 420px; padding: 32px 28px; }
.popup-box--lead h3 { font-size: 18px; margin-bottom: 6px; }
.popup-box--lead > p, .popup-box--lead #popupForm > p { font-size: 14px; color: var(--text-muted); margin-bottom: 16px; }
.popup-close { position: absolute; top: 14px; right: 16px; background: var(--bg-alt); border: none; border-radius: 50%; width: 32px; height: 32px; font-size: 18px; cursor: pointer; color: var(--text-muted); display: flex; align-items: center; justify-content: center; }
.popup-close:hover { background: var(--border); color: var(--text); }
.popup-box h3 { margin-bottom: 6px; }
.popup-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 20px; }

/* Exit / timed попап → квиз */
.popup-box--exit { max-width: 440px; padding: 28px 26px 22px; }
.exit-quiz__badge {
  display: inline-block; margin-bottom: 14px;
  font-size: 11px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  color: var(--red); background: #fff3f2; border-radius: 100px; padding: 5px 10px;
}
.exit-quiz__head { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
.exit-quiz__head img {
  width: 56px; height: 56px; border-radius: 50%; object-fit: cover; flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0,0,0,.12);
}
.exit-quiz__eyebrow {
  font-size: 12px; font-weight: 700; color: var(--text-muted);
  margin: 0 0 4px; letter-spacing: .02em;
}
.popup-box--exit h3 {
  font-family: var(--font-display); font-size: clamp(20px, 3.5vw, 24px);
  line-height: 1.25; margin: 0; color: var(--text);
}
.exit-quiz__text {
  font-size: 14.5px; color: var(--text-muted); line-height: 1.5; margin: 0 0 14px;
}
.exit-quiz__points {
  list-style: none; margin: 0 0 18px; padding: 0; display: grid; gap: 7px;
}
.exit-quiz__points li {
  position: relative; padding-left: 18px;
  font-size: 13.5px; color: var(--text); line-height: 1.4;
}
.exit-quiz__points li::before {
  content: ""; position: absolute; left: 0; top: .55em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--red);
}
.popup-box--exit .lead-capture__submit { width: 100%; margin: 0; }
.exit-quiz__skip {
  display: block; width: 100%; margin-top: 10px; padding: 10px;
  background: transparent; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 13px; color: var(--text-muted);
  text-decoration: underline; text-underline-offset: 2px;
}
.exit-quiz__skip:hover { color: var(--text); }

/* ========================================
   COOKIE CONSENT
   ======================================== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 280;
  max-width: 720px; margin: 0 auto;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px 44px 20px 22px;
  transform: translateY(calc(100% + 32px));
  transition: transform .35s var(--ease);
  pointer-events: none; visibility: hidden;
}
.cookie-banner.open {
  transform: translateY(0);
  pointer-events: auto; visibility: visible;
}
.cookie-banner__text { font-size: 13px; color: var(--text-muted); line-height: 1.55; margin-bottom: 14px; }
.cookie-banner__text a { color: var(--text); text-decoration: underline; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner__btn {
  border: none; border-radius: 9px; padding: 10px 18px; font-family: var(--font-body);
  font-size: 13px; font-weight: 700; cursor: pointer; transition: all .15s ease;
}
.cookie-banner__btn--accept { background: var(--text); color: #fff; }
.cookie-banner__btn--accept:hover { background: var(--red); }
.cookie-banner__btn--decline { background: transparent; border: 1.5px solid var(--border-dark); color: var(--text); }
.cookie-banner__btn--decline:hover { border-color: var(--red); color: var(--red); }
.cookie-banner__btn--settings { background: transparent; color: var(--text-muted); text-decoration: underline; padding: 10px 4px; }
.cookie-banner__close {
  position: absolute; top: 12px; right: 12px; background: var(--bg-alt); border: none; border-radius: 50%;
  width: 26px; height: 26px; font-size: 14px; cursor: pointer; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
}
.cookie-banner__close:hover { background: var(--border); color: var(--text); }
@media (max-width: 768px) {
  .cookie-banner {
    left: 10px; right: 10px;
    /* Над нижней sticky-панелью + safe-area iOS */
    bottom: calc(70px + env(safe-area-inset-bottom, 0px));
    max-height: min(62vh, calc(100dvh - 90px - env(safe-area-inset-bottom, 0px)));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px 40px 16px 16px;
  }
  .cookie-banner__actions { flex-direction: column; }
  .cookie-banner__btn { width: 100%; }
  .cookie-banner__btn--settings { text-align: center; }
}
.cookie-settings-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 261; align-items: center; justify-content: center; padding: 16px; }
.cookie-settings-overlay.open { display: flex; }
.cookie-settings-box { background: #fff; border-radius: var(--radius-lg); padding: 32px 28px; width: 100%; max-width: 440px; position: relative; box-shadow: var(--shadow-md); }
.cookie-settings-box h3 { margin-bottom: 16px; }
.cookie-settings__row { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; padding: 14px 0; border-top: 1px solid var(--border); }
.cookie-settings__row strong { display: block; font-size: 14px; margin-bottom: 4px; }
.cookie-settings__row p { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.cookie-settings__row input[type="checkbox"] { margin-top: 3px; accent-color: var(--red); width: 18px; height: 18px; flex-shrink: 0; }
.cookie-settings-box .btn { margin-top: 18px; }
.form-field { margin-bottom: 12px; }
.form-input { border: 1.5px solid var(--border); border-radius: 10px; padding: 13px 16px; font-family: var(--font-body); font-size: 15px; color: var(--text); background: #fff; width: 100%; }
.form-input:focus { outline: none; border-color: var(--red); }
.form-checkbox { display: flex; gap: 10px; align-items: flex-start; font-size: 12px; color: var(--text-muted); margin: 14px 0; }
.form-checkbox input { margin-top: 2px; }
.form-success { text-align: center; padding: 20px 0; }
.form-success__icon { font-size: 48px; margin-bottom: 12px; }
.form-success h3 { margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--text-muted); }

/* ========================================
   STICKY MOBILE CTA
   ======================================== */
@media (max-width: 768px) {
  .sticky-mob {
    display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150;
    border-top: 1px solid var(--border); box-shadow: 0 -4px 16px rgba(0,0,0,.1);
  }
  body { padding-bottom: 62px; }
  .chat-strip { right: 12px; bottom: 74px; padding: 5px 6px 5px 12px; }
  .chat-strip__text { font-size: 12px; max-width: 140px; white-space: normal; line-height: 1.2; }
  .chat-strip__avatar { width: 42px; height: 42px; }
  .chat-panel { bottom: 138px; }
}
.sticky-mob { display: none; }
.sticky-mob__call, .sticky-mob__form { flex: 1; text-align: center; padding: 15px; font-weight: 700; border: none; font-size: 15px; font-family: var(--font-body); cursor: pointer; }
.sticky-mob__call { background: #fff; color: var(--text); text-decoration: none; border-right: 1px solid var(--border); }
.sticky-mob__form { background: var(--red); color: #fff; }

/* ========================================
   АДАПТИВ
   ======================================== */
@media (max-width: 980px) {
  .stats-grid, .bento-grid--stats { grid-template-columns: repeat(2, 1fr); }
  .bento-grid--stats .stat-card--hero { grid-column: 1 / 3; grid-row: span 1; min-height: 160px; }
  .bento-grid--stats .stat-card:nth-child(2),
  .bento-grid--stats .stat-card:nth-child(3) { grid-column: span 1; grid-row: auto; }
  .bento-grid--stats .stat-card:nth-child(4) { grid-column: 1 / 3; grid-row: auto; }
  .bento-grid--stats .stat-card--live { grid-column: 1 / 3; }
  .reasons-bento { grid-template-columns: repeat(2, 1fr); }
  .reason-card--large { grid-column: span 2; }
  .calc-box { grid-template-columns: 1fr; }
  .calc-box__chart { border-left: none; border-top: 1px solid var(--border); }
  .split-section { grid-template-columns: 1fr; }
  .services-grid, .services-grid-v2 { grid-template-columns: repeat(2, 1fr); }
  .service-card-v2,
  .services-grid-v2 > .service-card-v2:nth-child(n) { grid-column: span 1 !important; }
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-capture { grid-template-columns: 1fr 1fr; background: #1a1208; min-height: auto; }
  .lead-capture__photo { display: none; }
  .lead-capture__form-card { margin: 20px; grid-column: span 2; }
  .cta-final__grid { grid-template-columns: 1fr; }
  .cta-final__photo { display: none; }
  .cta-final__copy { padding: 36px 28px 20px; }
  .cta-final .lead-capture__form-card { margin: 0 20px 20px; }
  .warning-compare { grid-template-columns: 1fr; }
  .warning-compare__col--bad { border-right: none; border-bottom: 1px solid var(--border); }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-score-card__platforms { flex-direction: row; }
  .reviews-platform-btn { flex: 1; justify-content: center; }
  .reviews-platform-btn__score { margin-left: 4px; }
}
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .section-reasons { padding: 56px 0; }
  .hero__grid, .about-grid, .cta-band__inner, .eligibility-grid, .warning-grid, .confidential-box { grid-template-columns: 1fr !important; }
  .hero__photo-wrap { aspect-ratio: 3/2; }
  .hero__badge-group { position: static; transform: none; flex-direction: row; flex-wrap: wrap; margin-top: 16px; }
  .benefits-grid, .fears-grid { grid-template-columns: 1fr; }
  .debts-grid { grid-template-columns: 1fr !important; }
  .eligibility-visual { margin-top: 24px; }
  .header__inner { grid-template-columns: auto 1fr auto; }
  .header__city-wrap, .header__cta, .header__phone { display: none; }
  .header__logo img { height: 28px; }
  .header__logo-text { font-size: 17px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card--hero { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1fr; }
  .section-team__head { flex-direction: column; align-items: flex-start; }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-band { height: 320px; }
  .photo-band__content { max-width: 100%; }
  .quiz-contact-options { grid-template-columns: repeat(2,1fr); }
  .steps-grid { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 8px; margin: 44px -20px 0; padding-left: 20px; padding-right: 20px; }
  .steps-grid::-webkit-scrollbar { display: none; }
  .step-item { flex: 0 0 220px; scroll-snap-align: start; }
  .reasons-bento { grid-template-columns: 1fr; }
  .reason-card--large,
  .reason-card:nth-child(7),
  .reason-card:nth-child(8) { grid-column: span 1; }
  section.alt::before, section.alt::after { display: none; }
  .lead-capture { grid-template-columns: 1fr; }
  .lead-capture__form-card { margin: 0 20px 20px; grid-column: span 1 !important; padding: 24px 20px; }
  .services-grid-v2 { grid-template-columns: 1fr; }
  .service-card-v2,
  .services-grid-v2 > .service-card-v2:nth-child(n) { grid-column: span 1 !important; min-height: 190px; }
  .confidential-box { padding: 28px; gap: 28px; }
  .calc-box__input, .calc-box__chart { padding: 24px; }

  /* Карусели на мобильных — свайп пальцем вправо/влево */
  .cases-grid, .clients-grid, .team-grid {
    display: flex !important; grid-template-columns: none !important; gap: 16px;
    overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
    scrollbar-width: none; margin: 0 -20px; padding: 4px 20px 12px; max-width: none;
  }
  .cases-grid::-webkit-scrollbar, .clients-grid::-webkit-scrollbar, .team-grid::-webkit-scrollbar { display: none; }
  .cases-grid > .case-card { flex: 0 0 260px; scroll-snap-align: start; }
  .clients-grid > .client-photo { flex: 0 0 170px; scroll-snap-align: start; }
  .clients-grid > .client-photo--wide { flex: 0 0 320px; }
  .team-grid > .team-card { flex: 0 0 190px; scroll-snap-align: start; }
}
@media (max-width: 480px) {
  .quiz-contact-options { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr 1fr; }
  .chat-panel { right: 12px; left: 12px; width: auto; }
  .chat-strip { right: 12px; }
  .bento-grid--stats .stat-card--live { flex-wrap: wrap; }
  .stat-card--live .live-counter__updated { width: 100%; margin-left: 0; margin-top: 4px; }
}

/* ========================================
   БУРГЕР-МЕНЮ (МОБИЛЬНАЯ ШАПКА)
   ======================================== */
.header__burger {
  display: none; width: 40px; height: 40px; border: none; background: transparent;
  cursor: pointer; align-items: center; justify-content: center; position: relative;
}
.header__burger span, .header__burger span::before, .header__burger span::after {
  content: ""; display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s;
}
.header__burger span::before { position: absolute; transform: translateY(-7px); }
.header__burger span::after { position: absolute; transform: translateY(7px); }
.header__burger.open span { background: transparent; }
.header__burger.open span::before { transform: translateY(0) rotate(45deg); }
.header__burger.open span::after { transform: translateY(0) rotate(-45deg); }

.mobile-drawer {
  position: fixed; inset: 0; z-index: 190; display: none;
}
.mobile-drawer.open { display: block; }
.mobile-drawer__backdrop { position: absolute; inset: 0; background: rgba(10,7,4,.55); animation: fadeIn .2s ease; }
.mobile-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(320px, 84vw);
  background: #fff; box-shadow: var(--shadow-lg); padding: 24px; overflow-y: auto;
  display: flex; flex-direction: column; gap: 18px;
  animation: drawerIn .3s var(--ease);
}
@keyframes drawerIn { from { transform: translateX(100%); } to { transform: translateX(0); } }
.mobile-drawer__close { align-self: flex-end; width: 34px; height: 34px; border-radius: 50%; border: none; background: var(--bg-alt); font-size: 16px; cursor: pointer; color: var(--text-muted); }
.mobile-drawer__city { display: flex; flex-direction: column; gap: 8px; }
.mobile-drawer__city label { font-size: 12px; color: var(--text-muted); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.mobile-drawer__hours { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.mobile-drawer__hours::before { content: "🕒"; }
.mobile-drawer__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-drawer__nav a {
  display: block; padding: 12px 0; font-size: 16px; font-weight: 700; color: var(--text);
  text-decoration: none; border-bottom: 1px solid var(--border);
}
.mobile-drawer__nav a:hover { color: var(--red); }
.mobile-drawer__phone { font-family: var(--font-display); font-size: 22px; font-weight: 700; color: var(--text); text-decoration: none; }
.mobile-drawer__social { display: flex; gap: 10px; flex-wrap: wrap; }
.mobile-drawer__social a {
  width: 50px; height: 50px; border-radius: 50%; background: var(--bg-alt); display: flex; align-items: center; justify-content: center;
  color: var(--text); font-weight: 800; font-size: 13px; text-decoration: none; transition: background .2s, transform .2s;
}
.mobile-drawer__social a img { width: 26px; height: 26px; object-fit: contain; }
.mobile-drawer__social a:hover { background: var(--red); color: #fff; transform: translateY(-2px); }
.mobile-drawer__social a:hover img { filter: brightness(0) invert(1); }
@media (max-width: 768px) {
  .header__burger { display: flex; }
}

/* ========================================
   HERO — ТЁМНАЯ ВЕРСИЯ
   ======================================== */
.hero--dark {
  background: linear-gradient(120deg, rgba(8,6,4,.82), rgba(18,12,7,.74)), url('/images/services/themis.jpg') center 35% / cover no-repeat;
  color: #fff;
}
.hero--dark::before { background: radial-gradient(circle, rgba(226,35,12,.22), transparent 70%); }
.hero--dark .hero__eyebrow { background: rgba(26,125,67,.22); color: #6fe3a0; }
.hero--dark .hero__h1 { color: #fff; }
.hero--dark .hero__sub { color: rgba(255,255,255,.72); }

.hero__photo-wrap--plain {
  background: none; box-shadow: none; aspect-ratio: auto; align-items: flex-end;
  height: min(800px, 86vh);
  margin-bottom: -72px;
}
.hero__photo-wrap--plain img {
  width: 100%; height: 100%; max-width: none; max-height: none; margin: 0 auto;
  object-fit: contain; object-position: bottom center;
  filter: drop-shadow(0 24px 32px rgba(0,0,0,.45));
}
@media (max-width: 1180px) {
  .hero__photo-wrap--plain { height: min(560px, 72vh); margin-bottom: -56px; }
}
@media (max-width: 768px) {
  .hero__photo-wrap--plain { height: 440px; aspect-ratio: auto; margin-bottom: 0; }
}
.hero__name-tags { position: absolute; left: 50%; bottom: 8px; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; }
.hero__name-tag { background: var(--red); color: #fff; font-weight: 800; font-size: 15px; padding: 8px 22px; border-radius: 8px 8px 0 0; white-space: nowrap; }
.hero__role-tag { background: #fff; color: var(--text); font-size: 12.5px; font-weight: 600; padding: 7px 22px; border-radius: 0 0 8px 8px; white-space: nowrap; box-shadow: var(--shadow-sm); }

/* ========================================
   ПЛАШКА С КОНСУЛЬТАНТОМ (CTA БАННЕР)
   ======================================== */
.consultant-cta {
  background: linear-gradient(120deg, #1a1208, #2a1c11); color: #fff;
  border-radius: var(--radius-lg); padding: 40px 44px; position: relative; overflow: hidden;
}
.consultant-cta::before {
  content: ""; position: absolute; top: -120px; left: -60px; width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(226,35,12,.25), transparent 70%); pointer-events: none;
}
.consultant-cta__grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; position: relative; z-index: 1; }
.consultant-cta h2 { color: #fff; }
.consultant-cta p { color: rgba(255,255,255,.72); font-size: 15px; margin: 10px 0 20px; max-width: 480px; }
.consultant-cta .btn--primary:hover { box-shadow: 0 8px 24px rgba(226,35,12,.5); }
.consultant-card { display: flex; align-items: center; gap: 16px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 16px 20px; min-width: 280px; }
.consultant-card__photo { width: 64px; height: 64px; border-radius: 50%; overflow: hidden; position: relative; flex-shrink: 0; }
.consultant-card__photo img { width: 100%; height: 100%; object-fit: cover; }
.consultant-card__online { position: absolute; bottom: 2px; right: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--green); border: 2px solid #1a1208; }
.consultant-card__name { font-weight: 700; font-size: 14px; }
.consultant-card__role { font-size: 12px; color: rgba(255,255,255,.6); margin-bottom: 6px; }
.consultant-card__social { display: flex; gap: 6px; }
.consultant-card__social a { width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; }
.consultant-card__social a img, .consultant-card__social a svg { width: 15px; height: 15px; }
.consultant-card__social a:hover { background: var(--red); }
@media (max-width: 768px) {
  .consultant-cta { padding: 28px; }
  .consultant-cta__grid { grid-template-columns: 1fr; }
  .consultant-card { min-width: 0; }
}

/* ========================================
   КВИЗ — ТИЗЕР + МОДАЛЬНОЕ ОКНО
   ======================================== */
.quiz-teaser__box {
  background: linear-gradient(120deg, #1a1208, #2a1c11); border-radius: var(--radius-lg);
  padding: 44px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; color: #fff;
}
.quiz-teaser__box h2 { color: #fff; }
.quiz-teaser__box .section-sub { color: rgba(255,255,255,.7); }
.quiz-teaser__trust { display: flex; gap: 16px; margin-top: 16px; font-size: 13px; color: rgba(255,255,255,.6); flex-wrap: wrap; }
.quiz-teaser__avatar { width: 140px; height: 140px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,.15); flex-shrink: 0; }
.quiz-teaser__avatar img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 768px) {
  .quiz-teaser__box { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; }
  .quiz-teaser__avatar { margin: 0 auto; }
  .quiz-teaser__trust { justify-content: center; }
}

.quiz-modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 260; background: rgba(10,7,4,.72);
  align-items: center; justify-content: center; padding: 20px;
}
.quiz-modal-overlay.open { display: flex; animation: fadeIn .2s ease; }
.quiz-modal-slot {
  position: relative; width: 100%; max-width: 920px; max-height: 92vh;
}
.quiz-modal-slot .quiz-modal-box {
  max-height: 92vh; box-shadow: var(--shadow-lg);
}
.quiz-modal-overlay .quiz-modal-close {
  position: absolute; top: 10px; right: 10px; z-index: 5;
  width: 36px; height: 36px; border-radius: 50%;
  background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-sm);
  font-size: 16px; cursor: pointer; color: var(--text-muted);
  display: flex; align-items: center; justify-content: center;
}
.quiz-modal-overlay .quiz-modal-close:hover { background: var(--bg-alt); color: var(--text); }
body.quiz-modal-open { overflow: hidden; }
.quiz-modal-box {
  background: #fff; border-radius: var(--radius-lg); width: 100%; max-width: 920px; max-height: 92vh;
  display: grid; grid-template-columns: 1fr 300px; overflow: hidden; box-shadow: var(--shadow-lg); position: relative;
}
.quiz-modal-box--inline { margin: 0 auto; max-height: none; box-shadow: var(--shadow-md); }
.quiz-modal-box--inline .quiz-modal-main,
.quiz-modal-box--inline .quiz-modal-side { max-height: none; overflow: visible; }
.quiz-modal-close {
  position: absolute; top: 14px; right: 14px; z-index: 3; width: 34px; height: 34px; border-radius: 50%;
  background: rgba(0,0,0,.06); border: none; font-size: 16px; cursor: pointer; color: var(--text-muted);
}
.quiz-modal-close:hover { background: var(--border); color: var(--text); }
.quiz-modal-main { padding: 40px; overflow-y: auto; max-height: 92vh; min-width: 0; }
.quiz-modal-side {
  background: linear-gradient(160deg, #1a1208, #2a1c11); color: #fff; padding: 32px 26px;
  display: flex; flex-direction: column; align-items: center; text-align: center; overflow-y: auto;
  min-width: 0;
}
.quiz-modal-side__badge {
  display: inline-flex; align-items: center; gap: 6px; background: rgba(26,125,67,.22); color: #6fe3a0;
  font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 100px; margin-bottom: 18px;
}
.quiz-modal-side__badge::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #2ecc71; animation: pulse-dot 1.8s ease-in-out infinite; }
.quiz-modal-side__photo {
  width: 128px; height: 128px; border-radius: 50%; overflow: hidden; border: 3px solid rgba(255,255,255,.18);
  box-shadow: 0 12px 30px rgba(0,0,0,.35); margin-bottom: 16px;
}
.quiz-modal-side__photo img { width: 100%; height: 100%; object-fit: cover; }
.quiz-modal-side__name { font-family: var(--font-display); font-size: 19px; font-weight: 700; }
.quiz-modal-side__role { font-size: 12.5px; color: #ff9c8c; font-weight: 700; margin: 4px 0 14px; }
.quiz-modal-side__text { font-size: 13px; color: rgba(255,255,255,.68); line-height: 1.6; margin-bottom: 20px; }
.quiz-modal-side__phone { display: block; font-family: var(--font-display); font-size: 18px; color: #fff; text-decoration: none; margin-bottom: 16px; }
.quiz-modal-side__phone:hover { color: #ff9c8c; }
@media (max-width: 860px) {
  .quiz-modal-box { grid-template-columns: 1fr; max-height: 94vh; }
  .quiz-modal-side { flex-direction: row; text-align: left; align-items: center; gap: 16px; padding: 20px 24px; overflow: visible; }
  .quiz-modal-side__photo { width: 68px; height: 68px; margin-bottom: 0; flex-shrink: 0; }
  .quiz-modal-side__badge { position: absolute; top: 14px; left: 20px; margin-bottom: 0; }
  .quiz-modal-side__text, .quiz-modal-side__phone { display: none; }
  .quiz-modal-side__social { justify-content: flex-start; }
  .quiz-modal-main { padding: 28px 20px 24px; order: 2; }
  .quiz-box { padding: 24px; }
}
/* Всплывающий квиз на мобилке — только вопросы, без шапки с Натальей и соцсетями */
@media (max-width: 768px) {
  .quiz-modal-overlay {
    padding: 8px;
    align-items: flex-end;
  }
  .quiz-modal-slot {
    max-height: calc(100dvh - 12px - env(safe-area-inset-bottom, 0px));
    width: 100%;
  }
  .quiz-modal-slot .quiz-modal-box,
  .quiz-modal-overlay .quiz-modal-box {
    max-height: calc(100dvh - 12px - env(safe-area-inset-bottom, 0px));
    border-radius: 16px 16px 12px 12px;
  }
  .quiz-modal-overlay .quiz-modal-side { display: none !important; }
  .quiz-modal-overlay .quiz-modal-main {
    padding: 20px 14px 16px;
    max-height: calc(100dvh - 12px - env(safe-area-inset-bottom, 0px));
    order: 0;
  }
  .quiz-modal-overlay .quiz-box { padding: 16px 12px; }
  .quiz-modal-overlay .quiz-trust-line { flex-wrap: wrap; gap: 8px; font-size: 12px; }
  .quiz-modal-overlay .quiz-modal-close { top: 8px; right: 8px; }
}
@media (max-width: 480px) {
  .quiz-modal-box { max-width: 100%; }
  .quiz-modal-main { padding: 24px 16px 20px; }
  .quiz-box { padding: 20px 16px; }
}

/* ========================================
   ГАЛЕРЕЯ ДОКУМЕНТОВ — ПОДПИСИ
   ======================================== */
.doc-thumb { display: flex; flex-direction: column; }
.doc-thumb img { flex: 1; }
.doc-thumb__caption {
  background: #1a1208; color: #fff; font-size: 11.5px; font-weight: 700; text-align: center;
  padding: 6px 4px; line-height: 1.3;
}
.doc-thumb__caption span { display: block; font-weight: 400; color: rgba(255,255,255,.6); font-size: 10.5px; }

/* ========================================
   LANDING PAGES (search ads)
   ======================================== */
.landing-faq { display: grid; gap: 12px; max-width: 820px; margin: 0 auto; }
.landing-faq__item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 20px; }
.landing-faq__item summary { cursor: pointer; font-weight: 700; font-size: 16px; list-style: none; }
.landing-faq__item summary::-webkit-details-marker { display: none; }
.landing-faq__item p { margin-top: 12px; color: var(--text-muted); font-size: 15px; line-height: 1.55; }
.landing-form-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 32px; align-items: center; }
.landing-disclaimer { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,.7); line-height: 1.5; }
.landing-price { font-size: 42px; font-weight: 800; color: var(--red); margin: 16px 0; }
.footer__copy { font-size: 12px; color: #6b5e55; margin-top: 8px; border-top: 1px solid #332823; padding-top: 24px; }
@media (max-width: 900px) {
  .landing-form-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .benefits-grid { grid-template-columns: 1fr; }
}

.lead-capture.alt {
  display: block;
  background: linear-gradient(120deg, #1a1208 0%, #2a1c10 55%, #3a2818 100%);
  border-radius: 0;
  box-shadow: none;
  min-height: 0;
  padding: 64px 0;
}
.lead-capture.alt .landing-form-grid { align-items: stretch; }
.lead-capture.alt .lead-capture__form-card { margin: 0; }
@media (max-width: 900px) {
  .lead-capture.alt { padding: 40px 0; }
}
