
    /* ─── TOKENS ──────────────────────────────────── */
    :root {
      --bg:        #f5f2ed;
      --surface:   #ffffff;
      --ink:       #1a1714;
      --muted:     #7a6f65;
      --accent:    #c0392b;
      --accent2:   #e8d5b0;
      --border:    #e0d9d0;
      --green:     #2d6a4f;
      --green-bg:  #eaf4ee;
      --mono:      'IBM Plex Mono', monospace;
      --serif:     'Playfair Display', serif;
      --sans:      'Manrope', sans-serif;
      --gap:       1.25rem;
    }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--ink); font-family: var(--sans); font-size: 0.95rem; line-height: 1.75; }

    /* ─── SKIP LINK (доступность + SEO) ──────────────── */
    .skip-link {
      position: absolute; top: -100px; left: 1rem;
      background: var(--accent); color: #fff; padding: 0.6rem 1.2rem;
      font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.1em;
      text-transform: uppercase; text-decoration: none; z-index: 9999;
      border-radius: 0 0 4px 4px; transition: top 0.2s;
    }
    .skip-link:focus { top: 0; outline: 3px solid var(--accent2); }

    /* ─── FOCUS STYLES (keyboard navigation) ─────────── */
    :focus-visible {
      outline: 2px solid var(--accent); outline-offset: 3px;
    }
    button:focus-visible, a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

    /* ─── IMAGES ──────────────────────────────────────── */
    /* Пример: <img src="photo.jpg" alt="..." loading="lazy" decoding="async" width="600" height="400"> */
    img { display: block; max-width: 100%; height: auto; }
    img[loading="lazy"] { content-visibility: auto; }
    img.lazy { opacity: 0; transition: opacity 0.4s ease; }
    img.lazy-loaded { opacity: 1; }
    a { color: inherit; text-decoration: none; }

    /* ─── PRINT STYLES ────────────────────────────────── */
    @media print {
      .site-header, .mobile-nav, .burger, .hero-btns,
      .cta-banner, .slider-arrow, .slider-dots,
      .widget-cta, #videoPopup, #formPopup,
      .vpopup, .fpopup, footer .footer-social { display: none !important; }
      body { font-size: 12pt; color: #000; background: #fff; }
      a { color: #000; text-decoration: underline; }
      .container { max-width: 100%; padding: 0; }
      .section-title { font-size: 16pt; }
    }

    /* ─── UTILITY ─────────────────────────────────── */
    .container { max-width: 1160px; margin: 0 auto; padding: 0 1rem; }
    .hero-container { padding: 0 0.2rem; }
    .section-title {
      font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 700; line-height: 1.2; margin-bottom: 0.4rem;
    }
    .section-eyebrow {
      font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--muted); margin-bottom: 0.75rem;
    }
    .section-divider {
      display: flex; align-items: center; gap: 1rem; margin: 0.5rem 0 2.5rem;
    }
    .section-divider span {
      font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.15em;
      text-transform: uppercase; color: var(--muted); white-space: nowrap;
    }
    .section-divider::before, .section-divider::after {
      content: ''; flex: 1; height: 1px; background: var(--border);
    }

    /* ─── HEADER ──────────────────────────────────── */
    .site-header {
      background: var(--ink); color: #fff;
      padding: 0.9rem 2rem;
      display: flex; justify-content: space-between; align-items: center;
      border-bottom: 3px solid var(--accent);
      position: sticky; top: 0; z-index: 300;
    }
    .logo { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: #fff; }
    .site-nav { display: flex; align-items: center; }
    .site-nav a {
      color: rgba(255,255,255,0.65); font-size: 0.75rem; font-weight: 600;
      letter-spacing: 0.1em; text-transform: uppercase; margin-left: 1.5rem;
      transition: color 0.2s; white-space: nowrap;
    }
    .site-nav a:hover { color: var(--accent2); }
    .site-nav .btn-nav {
      background: var(--accent); color: #fff; padding: 0.45rem 1.1rem;
      border-radius: 0; margin-left: 1.5rem; font-size: 0.72rem;
      letter-spacing: 0.1em; text-transform: uppercase; transition: background 0.2s;
      white-space: nowrap; border: none; cursor: pointer; font-family: var(--mono);
      font-weight: 600; appearance: none;
    }
    .site-nav .btn-nav:hover { background: #a93226; }
    /* Бургер-кнопка */
    .burger {
      display: none; flex-direction: column; justify-content: center; gap: 5px;
      width: 40px; height: 40px; background: none; border: none; cursor: pointer;
      padding: 6px; z-index: 400; flex-shrink: 0;
    }
    .burger span {
      display: block; width: 100%; height: 2px; background: #fff;
      border-radius: 2px; transition: transform 0.28s ease, opacity 0.2s ease, width 0.2s ease;
      transform-origin: center;
    }
    .burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    /* Мобильное меню-дровер */
    .mobile-nav {
      display: none; position: fixed; inset: 0; top: 0;
      background: var(--ink); z-index: 250;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(.22,1,.36,1);
      padding: 5.5rem 2rem 2rem;
      border-left: 3px solid var(--accent);
    }
    .mobile-nav.open { transform: translateX(0); }
    .mobile-nav a {
      display: block; color: rgba(255,255,255,0.75); font-size: 1.1rem;
      font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
      padding: 1rem 0; border-bottom: 1px solid rgba(255,255,255,0.07);
      text-decoration: none; transition: color 0.2s;
      font-family: var(--mono);
    }
    .mobile-nav a:hover { color: var(--accent2); }
    .mobile-nav .mob-cta {
      display: block; margin-top: 2rem; background: var(--accent); color: #fff;
      text-align: center; padding: 1rem; font-family: var(--mono); font-size: 0.82rem;
      letter-spacing: 0.12em; text-transform: uppercase;
      border: none; cursor: pointer; width: 100%;
      transition: background 0.2s; appearance: none;
    }
    .mobile-nav .mob-cta:hover { background: #a93226; }
    @media (max-width: 768px) {
      .site-nav { display: none; }
      .burger { display: flex; }
      .mobile-nav { display: flex; }
      body.nav-open { overflow: hidden; }
    }

    /* ─── HERO ────────────────────────────────────── */
    .hero {
      background: var(--ink); color: #fff;
      padding: 5rem 2rem 4.5rem; position: relative; overflow: hidden;
    }
    .hero::before {
      content: ''; position: absolute; inset: 0;
      background: repeating-linear-gradient(-55deg, transparent, transparent 38px,
        rgba(255,255,255,0.018) 38px, rgba(255,255,255,0.018) 39px);
      pointer-events: none;
    }
    .hero-accent-line {
      position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 50%, var(--accent) 100%);
    }
    .hero-inner { position: relative; z-index: 1; max-width: 680px; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 0.6rem;
      font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.16em;
      text-transform: uppercase; color: var(--accent2); margin-bottom: 1.25rem;
    }
    .hero-eyebrow::before { content: ''; display: block; width: 24px; height: 1px; background: var(--accent2); opacity: 0.5; }
    .hero h1 {
      font-family: var(--serif); font-size: clamp(1.7rem, 5vw, 3.4rem);
      font-weight: 700; line-height: 1.1; margin-bottom: 1.5rem;
    }
    .hero h1 em { font-style: italic; color: var(--accent2); }
    .hero-checklist { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 2.25rem; }
    .hero-checklist li {
      display: flex; align-items: flex-start; gap: 0.7rem;
      font-size: 0.95rem; color: rgba(255,255,255,0.85);
    }
    .hero-checklist li::before {
      content: '✓'; color: var(--accent2); font-family: var(--mono);
      font-weight: 700; margin-top: 1px; flex-shrink: 0;
    }
    .hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }
    .btn {
      display: inline-block; padding: 0.7rem 1.5rem; text-align: center;
      font-family: var(--mono); font-size: 0.75rem; font-weight: 500;
      letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      border-radius: 2px; text-decoration: none; appearance: none;
      -webkit-appearance: none; line-height: normal;
    }
    .btn-primary { background: var(--accent); color: #fff; border: 2px solid var(--accent); }
    .btn-primary:hover { background: #a93226; border-color: #a93226; }
    .btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.35); }
    .btn-outline:hover { border-color: var(--accent2); color: var(--accent2); }
    .btn-dark { background: var(--ink); color: #fff; border: 2px solid #fff; }
    .btn-dark:hover { background: #fff; color: var(--ink); }
    .btn-whatsapp { background: #25d366; color: #fff; border: 2px solid #25d366; position: relative; overflow: hidden; }
    .btn-whatsapp:hover { background: #1ebe5d; border-color: #1ebe5d; }
    .btn-telegram { background: #2aabee; color: #fff; border: 2px solid #2aabee; position: relative; overflow: hidden; }
    .btn-telegram:hover { background: #1a9de0; border-color: #1a9de0; }

    /* Перелив — бегущий блик */
    .btn-whatsapp::after, .btn-telegram::after {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 60%; height: 100%;
      background: linear-gradient(
        105deg,
        transparent 20%,
        rgba(255,255,255,0.45) 50%,
        transparent 80%
      );
      animation: btnShimmer 2.2s ease-in-out infinite;
      pointer-events: none;
    }
    .btn-telegram::after { animation-delay: 0.7s; }

    @keyframes btnShimmer {
      0%   { left: -80%; }
      60%  { left: 130%; }
      100% { left: 130%; }
    }

    /* ─── CONTENT + SIDEBAR ───────────────────────── */
    .content-section { padding: 3.5rem 0; }
    .content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; }
    
     /* ═══════════════════════════════════════════════
       ARTICLE: стили по тегам — без классов.
       Контент-менеджер вставляет чистый HTML внутри
       <article>. Классы не нужны — всё подхватывается
       автоматически через селектор "article тег".
    ═══════════════════════════════════════════════ */
    
    .content_more {
        padding: 20px 20px 20px 30px;
        background: #f5f5f5;
    }
 
    /* Базовые параметры текста статьи */
    article {
      font-size: 0.95rem;
      color: #2d2926;
      line-height: 1.8;
    }
 
    /* Параграфы */
    article p {
      margin-bottom: 1.1rem;
    }
    article p:last-child { margin-bottom: 0; }
 
    /* Жирный текст */
    article strong { font-weight: 700; color: var(--ink); }
 
    /* Курсив — с засечками, как в редакционном стиле */
    article em { font-family: var(--serif); font-style: italic; }
 
    /* Ссылки внутри статьи */
    article a {
      color: var(--accent);
      text-decoration: underline;
      text-underline-offset: 3px;
    }
    article a:hover { color: #a93226; }
 
    /* ── Заголовки ─────────────────────────────────
       h2 — заголовок раздела внутри статьи
       h3 — подраздел
       h4 — метка/рубрика (мелкий моно-шрифт)
    ─────────────────────────────────────────────── */
    article h2 {
      font-family: var(--serif);
      font-size: 1.4rem; font-weight: 700; line-height: 1.25;
      margin: 1.75rem 0 0.75rem; color: var(--ink);
    }
    article h3 {
      font-family: var(--serif);
      font-size: 1.15rem; font-weight: 700; line-height: 1.3;
      margin: 1.5rem 0 0.6rem; color: var(--ink);
    }
    article h4 {
      font-family: var(--mono);
      font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
      text-transform: uppercase; margin: 1.25rem 0 0.5rem; color: var(--muted);
    }
 
    /* ── Маркированный список (ul) ─────────────────
       Каждый пункт получает красный круг с галочкой.
       Вёрстка: <ul><li>Текст пункта</li></ul>
    ─────────────────────────────────────────────── */
    article ul {
      list-style: none;
      display: flex; flex-direction: column; gap: 0.55rem;
      margin: 1rem 0 1.25rem; padding: 0;
    }
    article ul li {
      /* Буллет — абсолютно, текст — как единый блок с отступом слева.
         strong, em, a внутри li теперь просто инлайн внутри одного блока */
      position: relative;
      padding-left: calc(20px + 0.65rem);
      font-size: 0.9rem;
      line-height: 1.7;
    }
    article ul li::before {
      content: '';
      position: absolute;
      left: 0; top: 3px;
      width: 20px; height: 20px; border-radius: 50%;
      background:
        var(--accent)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 6l2.8 2.8 4.2-4.6' stroke='white' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
        center / 10px no-repeat;
    }
 
    /* ── Нумерованный список (ol) ──────────────────
       Счётчик через CSS counter — красный моно-номер.
       Вёрстка: <ol><li>Пункт</li></ol>
    ─────────────────────────────────────────────── */
    article ol {
      list-style: none;
      counter-reset: article-ol;
      display: flex; flex-direction: column; gap: 0.5rem;
      margin: 1rem 0 1.25rem; padding: 0;
    }
    article ol li {
      position: relative;
      padding-left: calc(22px + 0.65rem);
      font-size: 0.9rem;
      line-height: 1.7;
      counter-increment: article-ol;
    }
    article ol li::before {
      content: counter(article-ol) '.';
      position: absolute;
      left: 0; top: 3px;
      font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
      color: var(--accent);
    }
    article ol li::before {
      /* Генерируем "1." "2." через CSS-счётчик */
      content: counter(article-ol) '.';
      font-family: var(--mono); font-size: 0.75rem; font-weight: 700;
      color: var(--accent); min-width: 18px; margin-top: 3px; flex-shrink: 0;
    }
 
    /* ── Цитата (blockquote) ───────────────────────
       Вёрстка: <blockquote><p>Текст цитаты</p></blockquote>
    ─────────────────────────────────────────────── */
    article blockquote {
      border-left: 3px solid var(--accent);
      padding: 0.9rem 1.4rem 0.9rem 2.75rem;
      background: var(--surface); margin: 1.5rem 0; position: relative;
    }
    article blockquote::before {
      /* Декоративная открывающая кавычка */
      content: '\201C';
      font-family: var(--serif); font-size: 3rem;
      color: var(--accent2); line-height: 0.5;
      position: absolute; top: 1.1rem; left: 0.9rem; opacity: 0.5;
    }
    article blockquote p {
      font-family: var(--serif); font-style: italic;
      font-size: 1rem; color: var(--muted); margin: 0; padding: 0;
    }
 
    /* ── Изображения ───────────────────────────────
       Вёрстка: <img src="..." alt="..." loading="lazy" decoding="async">
       Или с подписью: <figure><img ...><figcaption>Подпись</figcaption></figure>
    ─────────────────────────────────────────────── */
    article img {
      width: 100%; height: auto; object-fit: cover;
      display: block; margin: 1.5rem 0;
    }
    article figure { margin: 1.5rem 0; }
    article figure img { margin: 0; } /* убираем двойной отступ внутри figure */
    article figcaption {
      font-family: var(--mono); font-size: 0.72rem;
      color: var(--muted); padding: 0.5rem 0.25rem;
      letter-spacing: 0.04em; border-bottom: 1px solid var(--border);
    }
 
    /* ── Таблица ───────────────────────────────────
       Вёрстка: стандартный <table><thead><tbody>
    ─────────────────────────────────────────────── */
    article table {
      width: 100%; border-collapse: collapse;
      margin: 1.5rem 0; font-size: 0.88rem;
    }
    article table thead tr { background: var(--accent); color: #fff; }
    article table th {
      padding: 0.65rem 1rem; text-align: left;
      font-family: var(--mono); font-size: 0.72rem;
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    article table td { padding: 0.65rem 1rem; border-bottom: 1px solid var(--border); }
    article table tbody tr:hover { background: rgba(192,57,43,0.04); }
 
    /* ── Горизонтальный разделитель ────────────────
       Вёрстка: <hr>
    ─────────────────────────────────────────────── */
    article hr { border: none; border-top: 2px solid var(--border); margin: 2rem 0; }
 
    /* ── Инлайн-код и блок кода ────────────────────
       Вёрстка: <code>текст</code> и <pre><code>...</code></pre>
    ─────────────────────────────────────────────── */
    article code {
      font-family: var(--mono); font-size: 0.85em;
      background: var(--bg); border: 1px solid var(--border);
      padding: 0.15em 0.4em; border-radius: 2px;
    }
    article pre {
      background: var(--ink); color: #e8e0d5;
      padding: 1.5rem; overflow-x: auto; margin: 1.5rem 0;
      font-family: var(--mono); font-size: 0.85rem; line-height: 1.6;
    }
    article pre code { background: none; border: none; padding: 0; color: inherit; }
 
    /* ── Зелёный инфо-блок ─────────────────────────
       Для особых заметок используйте класс .note:
       <p class="note">Текст заметки</p>
       — единственный класс, который нужен контент-менеджеру
    ─────────────────────────────────────────────── */
    article .note {
      background: #eaf4ee; border: 1px dashed #52b788;
      padding: 1.1rem 1.3rem; font-family: var(--serif); font-style: italic;
      font-size: 0.92rem; color: #1a3d2b; line-height: 1.7;
      margin: 1.25rem 0; display: block;
    }

    /* ─── SIDEBAR ──────────────────────────────────── */
    .sidebar { display: flex; flex-direction: column; gap: 1.5rem; }
    .widget { background: var(--surface); border: 1px solid var(--border); }
    .widget-head {
      background: var(--ink); color: #fff;
      padding: 0.75rem 1.25rem;
      font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase;
    }
    .category-list { list-style: none; }
    .category-list li { border-bottom: 1px solid var(--border); }
    .category-list li:last-child { border-bottom: none; }
    .category-list a {
      display: flex; align-items: center; gap: 0.75rem;
      padding: 0.75rem 1.25rem; font-size: 0.83rem; font-weight: 600;
      letter-spacing: 0.04em; text-transform: uppercase; transition: background 0.15s, color 0.15s;
    }
    .category-list a:hover { background: var(--bg); color: var(--accent); }
    .cat-icon {
      width: 32px; height: 32px; border-radius: 50%;
      background: var(--accent2); display: flex; align-items: center;
      justify-content: center; font-size: 1rem; flex-shrink: 0;
    }
    .widget-text { padding: 1.25rem; font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
    .widget-text a { color: var(--accent); font-weight: 600; }
    .widget-cta {
      background: var(--ink); border: 1px solid var(--ink);
      padding: 1.25rem;
    }
    .widget-cta p { color: rgba(255,255,255,0.75); font-size: 0.88rem; margin-bottom: 0.75rem; line-height: 1.6; }
    .widget-cta .btn { width: 100%; text-align: center; display: block; }

    /* ─── FEATURES 3-COL ───────────────────────────── */
    .features-section { background: var(--surface); padding: 4rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .features-title { text-align: center; margin-bottom: 2.5rem; }
    .features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
    .feature-card {
      padding: 2.5rem 2rem; border-right: 1px solid var(--border);
      display: flex; flex-direction: column; gap: 0;
      transition: background 0.2s;
    }
    .feature-card:last-child { border-right: none; }
    .feature-card:hover { background: var(--bg); }
    .feature-card-title {
      font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--ink); margin-bottom: 1rem; line-height: 1.45;
    }
    .feature-card-text { font-size: 0.88rem; color: var(--muted); line-height: 1.7; flex: 1; margin-bottom: 1.75rem; }
    .feature-icon { font-size: 2.5rem; opacity: 0.6; }
    .feature-card-num {
      font-family: var(--serif); font-size: 4rem; font-weight: 900;
      color: rgba(192,57,43,0.08); line-height: 1; margin-bottom: 0.75rem;
    }

    /* ─── SPLIT SECTION ────────────────────────────── */
    .split-section { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
    .split-img {
      background: #c4b9aa; position: relative; overflow: hidden;
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem; color: rgba(255,255,255,0.3);
    }
    .split-img img { width: 100%; height: 100%; object-fit: cover; }
    .split-img .play-btn {
      position: absolute; width: 64px; height: 64px;
      background: var(--accent); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.4rem; cursor: pointer; z-index: 2;
      transition: transform 0.2s, background 0.2s;
    }
    .split-img .play-btn:hover { transform: scale(1.08); background: #a93226; }
    .split-content {
      background: var(--surface); padding: 4rem 3rem;
      display: flex; flex-direction: column; justify-content: center;
      border: 1px solid var(--border); border-left: none;
    }
    .split-content .section-eyebrow { margin-bottom: 0.5rem; }
    .split-content .section-title { margin-bottom: 1.25rem; }
    .split-content p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
    .split-content .btn { margin-top: 1rem; }

    /* ─── STATS BAR ────────────────────────────────── */
    .stats-bar { background: var(--ink); padding: 3rem 0; }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .stat-item {
      text-align: center; padding: 1rem 1.5rem;
      border-right: 1px solid rgba(255,255,255,0.08);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem);
      font-weight: 700; color: #fff; line-height: 1; margin-bottom: 0.5rem;
      letter-spacing: -0.02em;
    }
    .stat-num span { color: var(--accent); }
    .stat-label {
      font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: rgba(255,255,255,0.4); line-height: 1.4;
    }

    /* ─── CTA BANNER ───────────────────────────────── */
    .cta-banner {
      background: var(--surface); border: 1px solid var(--border);
      padding: 2.5rem; margin: 2.5rem 0;
      display: flex; flex-direction: column; align-items: center;
      text-align: center; gap: 1rem;
    }
    .cta-banner p { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); line-height: 1.4; }
    .cta-banner .btns { display: flex; flex-wrap: wrap; gap: 0.65rem; justify-content: center; }

    /* ─── REVIEWS ──────────────────────────────────── */
    .reviews-section { background: var(--ink); padding: 4.5rem 0; }
    .reviews-title { color: #fff; margin-bottom: 2.5rem; }
    .reviews-title .section-eyebrow { color: var(--accent2); }
    .reviews-title .section-title { color: #fff; }
    .reviews-layout { display: grid; grid-template-columns: 240px 1fr; gap: 3rem; align-items: start; }
    .reviewers-list { display: flex; flex-direction: column; gap: 0; }
    .reviewer {
      display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
      padding: 1.25rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.08);
      cursor: pointer; transition: background 0.15s; text-align: center;
    }
    .reviewer:hover, .reviewer.active { background: rgba(255,255,255,0.05); }
    .reviewer-avatar {
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--accent2); display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; border: 2px solid rgba(255,255,255,0.1);
    }
    .reviewer-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
    .reviewer-name { font-size: 0.85rem; font-weight: 600; color: #fff; }
    .reviewer-age { font-family: var(--mono); font-size: 0.68rem; color: rgba(255,255,255,0.4); }
    .review-body {
      background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
      padding: 2.5rem;
    }
    .review-text {
      font-family: var(--serif); font-style: italic; font-size: 1.05rem;
      line-height: 1.8; color: rgba(255,255,255,0.85); margin-bottom: 1.5rem;
      position: relative;
    }
    .review-text::before {
      content: '\201C'; font-size: 4rem; color: var(--accent2);
      line-height: 0; position: relative; top: 0.5rem; margin-right: 0.2rem; opacity: 0.5;
    }
    .review-date { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.3); }

    /* ─── CARDS GRID ───────────────────────────────── */
    .cards-section { padding: 4.5rem 0; }
    .cards-section-title { text-align: center; margin-bottom: 3rem; }
    .cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); }
    .person-card {
      background: var(--surface); display: flex; flex-direction: column;
      transition: box-shadow 0.2s;
    }
    .person-card:hover { box-shadow: 0 0 0 2px var(--accent); z-index: 1; }
    .person-card-img {
      width: 100%; aspect-ratio: 3/4; object-fit: cover;
      background: #c4b9aa; display: flex; align-items: center;
      justify-content: center; font-size: 4rem; color: rgba(255,255,255,0.4); overflow: hidden;
    }
    .person-card-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.3); }
    .person-card-body { padding: 1.25rem 1.5rem; text-align: center; }
    .person-card-name {
      font-family: var(--mono); font-size: 0.72rem; font-weight: 700;
      letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.3rem;
    }
    .person-card-salary { font-size: 0.83rem; color: var(--muted); }
    .person-card-salary strong { color: var(--accent); font-weight: 700; }

    /* ─── IMAGE + TEXT ─────────────────────────────── */
    .about-section { padding: 0; border-top: 1px solid var(--border); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; }
    .about-img {
      background: #2a2520; min-height: 480px;
      display: flex; align-items: center; justify-content: center;
      font-size: 5rem; overflow: hidden; position: relative;
    }
    .about-img img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) brightness(0.7); }
    .about-content {
      background: var(--surface); padding: 4.5rem 3.5rem;
      display: flex; flex-direction: column; justify-content: center;
    }
    .about-content .section-title { margin-bottom: 1.25rem; white-space: nowrap; }
    .about-content p { font-size: 0.95rem; color: var(--muted); line-height: 1.75; margin-bottom: 1rem; }
    .about-content p strong { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }

    /* ─── BLOG CARDS ───────────────────────────────── */
    .blog-section { background: var(--bg); padding: 4.5rem 0; }
    .blog-section-title { text-align: center; margin-bottom: 3rem; }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
    .blog-card { background: var(--surface); border: 1px solid var(--border); transition: box-shadow 0.2s; }
    .blog-card:hover { box-shadow: 4px 4px 0 var(--accent2); }
    .blog-card-img {
      width: 100%; aspect-ratio: 16/9; object-fit: cover;
      background: #d4c5ae; overflow: hidden;
      display: flex; align-items: center; justify-content: center; font-size: 3rem;
    }
    .blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
    .blog-card:hover .blog-card-img img { transform: scale(1.04); }
    .blog-card-body { padding: 1.25rem 1.5rem 1.5rem; }
    .blog-card-tag {
      font-family: var(--mono); font-size: 0.67rem; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; display: block;
    }
    .blog-card-title {
      font-family: var(--serif); font-size: 1.1rem; font-weight: 700;
      line-height: 1.3; margin-bottom: 0.5rem; color: var(--ink);
    }
    .blog-card-excerpt { font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin-bottom: 1rem; }
    .blog-card-meta { font-family: var(--mono); font-size: 0.67rem; color: var(--muted); }
    .dots-nav { display: flex; justify-content: center; gap: 0.4rem; margin-top: 2rem; }
    .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: background 0.15s; }
    .dot.active, .dot:hover { background: var(--accent); }

    /* ─── CITIES ───────────────────────────────────── */
    .cities-section { background: var(--surface); padding: 4rem 0; border-top: 3px solid var(--border); }
    .cities-title { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
    .cities-grid, .cities-section nav[aria-label] {
          display: grid;
          grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
          gap: 0.35rem 1rem;
        }
        .city-link {
          white-space: nowrap;
          overflow: hidden;
          text-overflow: ellipsis;
        }
    .city-link:hover { color: var(--accent); }
    .city-link.featured { font-weight: 700; color: var(--ink); }

    /* ─── FOOTER ───────────────────────────────────── */
    .site-footer { background: var(--ink); color: rgba(255,255,255,0.45); padding: 3rem 2rem 2rem; border-top: 3px solid var(--accent); }
    .footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 1.5rem; }
    .footer-brand .logo { display: block; margin-bottom: 0.75rem; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.6; }
    .footer-col h4 { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 1rem; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
    .footer-col ul a { color: rgba(255,255,255,0.55); font-size: 0.85rem; transition: color 0.15s; }
    .footer-col ul a:hover { color: #fff; }
    .footer-bottom { max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; }
    .footer-bottom span { font-family: var(--mono); font-size: 0.7rem; }
    .footer-social { display: flex; gap: 0.6rem; }
    .social-btn { width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.75rem; color: rgba(255,255,255,0.5); transition: background 0.15s, color 0.15s; cursor: pointer; }
    .social-btn:hover { background: var(--accent); color: #fff; }
    
    .expert-review {
        background: rgb(245, 241, 248);
        border-radius: 4px;
        margin: 2em 0px;
    }
    
    .expert-review--color-red-1 {
        background: rgb(250, 242, 244);
    }
    
    .expert-review--color-purple-1 {
        background: rgb(245, 241, 248);
    }
    
    .expert-review--color-green-2 {
        background: rgb(244, 247, 241);
    }
    
    .expert-review-qa {
        position: relative;
        padding: 25px 15px 10px;
    }
    
    .expert-review-qa-header {
        margin-bottom: 0.8em;
        font-weight: 700;
        font-size: 1.3em;
        color: rgb(92, 10, 147);
    }
    
    .expert-review--color-red-1 .expert-review-qa-header {
        color: rgb(188, 32, 66);
    }
    
    .expert-review-qa__question {
        font-weight: 400;
        line-height: 1.5;
        font-size: 1.1em;
        margin-bottom: 20px;
    }
    
    .expert-review-qa__answer {
        font-weight: 400;
        line-height: 1.5;
        display: flex;
        margin-bottom: 35px;
        font-size: 16px;
    }
    
    .expert-review-qa__avatar {
        position: relative;
        width: 100%;
        -webkit-box-flex: 1;
        flex-grow: 1;
        flex-basis: 0px;
        max-width: 100%;
    }
    
    .expert-review-qa__avatar {
        width: 40px;
        height: 40px;
        -webkit-box-flex: 0;
        max-width: 40px;
        margin-right: 20px;
        background-size: 25px;
        flex: 0 0 40px;
        border-radius: 50%;
        overflow: hidden;
    }
    
    .expert-review-qa__avatar img {
        max-width: 100%;
        height: auto;
        margin: 0px;
    }
    
    .expert-review-qa__text {
        position: relative;
        box-shadow: rgba(146, 123, 165, 0.1) 0px 1px 10px;
        font-size: 0.9em;
        background: rgb(255, 255, 255);
        padding: 20px;
        border-radius: 6px;
    }
    
    .expert-review-qa__text::before {
        content: "";
        position: absolute;
        top: 16px;
        left: -12px;
        width: 0px;
        height: 0px;
        border-style: solid;
        border-width: 9px 12px 9px 0px;
        border-color: transparent rgb(255, 255, 255) transparent transparent;
    }
    
    .expert-review-score {
        position: relative;
        padding: 15px;
    }
    
    .expert-review-score-line {
        display: flex;
        -webkit-box-pack: justify;
        justify-content: space-between;
        -webkit-box-align: center;
        align-items: center;
        margin: 15px 0px;
    }
    
    .expert-review-score-line__name {
        -webkit-box-flex: 0;
        max-width: 44%;
        margin-right: 1%;
        font-size: 1.1em;
        flex: 0 0 44%;
    }
    
    .expert-review-score-line__progress {
        -webkit-box-flex: 0;
        max-width: 40%;
        flex: 0 0 40%;
    }
    .expert-review-score-line__progress-container {
        height: 17px;
        box-shadow: rgba(146, 123, 165, 0.1) 0px 1px 10px;
        background: rgb(255, 255, 255);
        border-radius: 4px;
        overflow: hidden;
    }
    .expert-review--color-green-2 .expert-review-score-line__progress-fill {
        background: linear-gradient(to right, rgb(81, 143, 17), rgb(102, 190, 10)) rgb(81, 143, 17);
    }
    
    .expert-review-score-summary {
        margin: 30px 0px 15px;
    }
    
    .expert-review-score-summary__label {
        font-size: 1.1em;
        font-weight: 700;
        margin-bottom: 15px;
    }
    
    .expert-review-score-summary__label, .expert-review-score-summary__text {
        position: relative;
        width: 100%;
        -webkit-box-flex: 1;
        flex-grow: 1;
        flex-basis: 0px;
        max-width: 100%;
    }
    .expert-review-score-summary__content {
        font-size: 1em;
        line-height: 1.5;
    }
    .expert-review-score-summary__average {
        width: 50px;
        height: 50px;
        margin-top: -5px;
        margin-right: 15px;
        margin-bottom: 15px;
        line-height: 50px;
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 1.2em;
        font-weight: 700;
        background: rgb(92, 10, 147);
        border-radius: 50%;
    }

    /* ─── RESPONSIVE ───────────────────────────────── */
    @media (max-width: 900px) {
      .content-layout, .split-section, .about-grid { grid-template-columns: 1fr; }
      .features-grid, .cards-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .cities-grid { grid-template-columns: repeat(4, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .reviews-layout { grid-template-columns: 1fr; }
      .split-content { border-left: 1px solid var(--border); }
      .reviewers-list {
        flex-direction: row;
        justify-content: center;
        gap: 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
      }
      .reviewer {
        flex: 1;
        min-width: 90px;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.08);
        padding: 1rem 0.75rem;
      }
      .reviewer:last-child { border-right: none; }
      /* Активный — подчёркивание снизу вместо фона */
      .reviewer.active {
        background: rgba(255,255,255,0.05);
        box-shadow: inset 0 -3px 0 var(--accent);
      }
      .reviewer-avatar { width: 44px; height: 44px; font-size: 1.1rem; }
      .reviewer-name { font-size: 0.8rem; }
    }
    @media (max-width: 600px) {
      .features-grid, .cards-grid, .blog-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .cities-grid, .cities-section nav[aria-label] {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      }
      .footer-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; }
      .cta-banner .btns { flex-direction: column; }
    }
    @media (max-width: 767px) { 
        .hidden-xs { 
            display: none !important; 
        } 
    } 
    @media (min-width: 768px) {
        .expert-review-qa {
            padding: 25px 30px 15px;
        }
        .expert-review-qa__avatar {
            width: 50px;
            height: 50px;
            -webkit-box-flex: 0;
            max-width: 50px;
            margin-right: 30px;
            flex: 0 0 50px;
        }
        .expert-review-qa__text {
            font-size: 0.9em;
        }
        .expert-review-score-line__name {
            -webkit-box-flex: 0;
            max-width: 29%;
            flex: 0 0 29%;
        }
        .expert-review-score-line__progress {
            -webkit-box-flex: 0;
            max-width: 60%;
            flex: 0 0 60%;
        }
    }
    @media (min-width: 576px) {
        .expert-review-score-line__name {
            -webkit-box-flex: 0;
            max-width: 39%;
            flex: 0 0 39%;
        }
        .expert-review-score-line__progress {
            -webkit-box-flex: 0;
            max-width: 50%;
            flex: 0 0 50%;
        }
        .expert-review-score-summary {
            display: flex;
            -webkit-box-pack: justify;
            justify-content: space-between;
        }
        .expert-review-score-summary__label {
            -webkit-box-flex: 0;
            max-width: 30%;
            margin-bottom: 0px;
            flex: 0 0 30%;
        }
        .expert-review-score-summary__content {
            display: flex;
            -webkit-box-flex: 0;
            max-width: 70%;
            flex: 0 0 70%;
        }
        .expert-review-score-summary__average {
            margin-bottom: 0px;
        }
    }