    /* === ПАЛИТРА И БАЗА === */
    :root {
      --c-deep: #223831;
      --c-deep-soft: #2D4940;
      --c-brand: #32724C;
      --c-brand-hover: #285D3D;
      --c-bright: #A8D85E;
      --c-bright-hover: #95C44A;
      --c-sage: #89AC76;
      --c-pale: #D7E8E3;
      --c-gold: #B5945A;
      --c-gold-deep: #8B6F3F;
      --c-bg: #FAFAF7;
      --c-bg-warm: #F0EAE0;
      --c-text: #1A1A1A;
      --c-text-sec: #6B6B6B;
      --c-text-mute: #9B9690;
      --c-border: #E5E1D8;
      --c-white: #FFFFFF;

      --font-h: 'Manrope', system-ui, sans-serif;
      --font-b: 'Inter', system-ui, sans-serif;

      --r-sm: clamp(6px, 0.8vw, 8px);
      --r-md: clamp(12px, 1.4vw, 16px);
      --r-lg: clamp(16px, 2vw, 24px);
      --r-xl: clamp(20px, 2.5vw, 32px);

      --shadow-sm: 0 2px 8px rgba(34,56,49,0.06);
      --shadow-md: 0 8px 24px rgba(34,56,49,0.08);
      --shadow-lg: 0 16px 48px rgba(34,56,49,0.12);

      --container: 100%;                          /* контейнер всегда на всю ширину экрана */
      --container-narrow: 100%;

      /* === FLUID-РАЗМЕРЫ === */
      --pad-x: clamp(16px, 5vw, 120px);          /* боковые отступы контейнера - растут с экраном */
      --pad-section: clamp(48px, 8vw, 100px);    /* верт. отступы секций */
      --gap-grid: clamp(16px, 2.5vw, 32px);      /* между карточками */
      --gap-grid-sm: clamp(12px, 1.6vw, 20px);   /* мелкий gap */
      --gap-grid-lg: clamp(24px, 4vw, 64px);     /* крупный gap */

      /* === FLUID-ТИПОГРАФИКА === */
      --fs-h1: clamp(32px, 6vw, 72px);
      --fs-h2: clamp(28px, 4.5vw, 52px);
      --fs-h3: clamp(20px, 2.2vw, 28px);
      --fs-h4: clamp(18px, 1.8vw, 24px);
      --fs-lead: clamp(16px, 1.6vw, 21px);       /* лид-абзац */
      --fs-subhead: clamp(15px, 1.3vw, 18px);    /* подзаголовок секций (единый) */
      --fs-body: clamp(15px, 1.2vw, 17px);
      --fs-small: clamp(13px, 1vw, 15px);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-b);
      font-size: 17px;
      line-height: 1.6;
      color: var(--c-text);
      background: var(--c-bg);
      -webkit-font-smoothing: antialiased;
      hyphens: manual;
    }
    /* Современная защита от висячих слов и плохих переносов */
    p, h1, h2, h3, h4, h5, h6, li, blockquote, figcaption,
    .why-item-text, .card-title, .card-loc, .blog-title, .blog-excerpt,
    .founder-quote, .team-spec, .office-feature, .footer-about,
    .hero-tag, .section-tag, .stat-label {
      text-wrap: pretty;
    }
    h1, h2, h3 { text-wrap: balance; }
    h1, h2, h3, h4, h5, h6 { font-family: var(--font-h); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    /* === 12-КОЛОНОЧНАЯ СЕТКА === */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--pad-x);
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      column-gap: clamp(16px, 1.5vw, 32px);
      row-gap: 0;
      align-items: start;
    }
    /* Прямые дочерние элементы по умолчанию занимают все 12 колонок */
    .container > * { grid-column: 1 / -1; min-width: 0; }

    .container-narrow {
      max-width: var(--container-narrow);
      margin: 0 auto;
      padding: 0 var(--pad-x);
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      column-gap: clamp(16px, 1.5vw, 32px);
    }
    .container-narrow > * { grid-column: 1 / -1; min-width: 0; }

    /* Утилиты для колоночных диапазонов */
    .col-12 { grid-column: span 12; }
    .col-10 { grid-column: span 10; }
    .col-9 { grid-column: span 9; }
    .col-8 { grid-column: span 8; }
    .col-7 { grid-column: span 7; }
    .col-6 { grid-column: span 6; }
    .col-5 { grid-column: span 5; }
    .col-4 { grid-column: span 4; }
    .col-3 { grid-column: span 3; }

    /* Защита от переполнения сетки - карточки никогда не «выпирают» за границы */
    .card, .founder, .team-card, .blog-card, .office-card, .trust-card, .loc-card, .stat {
      min-width: 0;
      box-sizing: border-box;
      max-width: 100%;
    }

    .section { padding: var(--pad-section) 0; }
    .section-tight { padding: calc(var(--pad-section) * 0.6) 0; }

    /* === КНОПКИ === */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 16px 28px;
      border-radius: var(--r-md);
      font-weight: 600;
      font-size: 16px;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--c-bright);
      color: var(--c-deep);
    }
    .btn-primary:hover {
      background: var(--c-bright-hover);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }
    .btn-secondary {
      background: var(--c-white);
      color: var(--c-deep);
      border: 1.5px solid var(--c-border);
    }
    .btn-secondary:hover {
      border-color: var(--c-brand);
      color: var(--c-brand);
    }
    .btn-ghost {
      background: transparent;
      color: var(--c-bg);
      border: 1.5px solid rgba(250,250,247,0.25);
    }
    .btn-ghost:hover {
      background: rgba(250,250,247,0.08);
      border-color: rgba(250,250,247,0.5);
    }
    .btn-gold {
      background: var(--c-gold);
      color: var(--c-white);
    }
    .btn-gold:hover {
      background: var(--c-gold-deep);
    }
    .btn-lg { padding: 20px 36px; font-size: 17px; }
    .btn-sm {
      padding: 10px 18px;
      font-size: 14px;
      border-radius: var(--r-sm);
    }
    .btn-link {
      color: var(--c-brand);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap 0.2s;
    }
    .btn-link:hover { gap: 12px; }

    /* === ШАПКА === */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250,250,247,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--c-border);
    }
    /* Шапка использует flex поверх грид-контейнера (логотип слева, CTA справа) */
    .header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 11px var(--pad-x);
      gap: 32px;
    }
    .header-inner { /* класс остаётся, но базовый layout сверху */ }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      flex-shrink: 0;
      text-decoration: none;
    }
    .logo-img {
      height: 48px;
      width: auto;
      display: block;
    }
    .logo-subtitle {
      font-family: var(--font-h);
      font-size: 11px;
      font-weight: 600;
      color: var(--c-text-sec);
      letter-spacing: 0.08em;
      text-transform: uppercase;
      line-height: 1.2;
      max-width: 130px;
      padding-left: 14px;
      border-left: 1px solid var(--c-border);
    }
    .nav {
      display: flex;
      gap: 28px;
      flex: 1;
      justify-content: center;
    }
    .nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--c-text);
      transition: color 0.15s;
    }
    .nav a:hover { color: var(--c-brand); }
    .header-cta {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }
    .phone {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 17px;
      color: var(--c-deep);
    }
    .phone-label {
      font-size: 11px;
      color: var(--c-text-sec);
      text-transform: uppercase;
      letter-spacing: 0.05em;
      margin-bottom: 2px;
    }

    /* === HERO === */
    .hero {
      position: relative;
      background: var(--c-deep);
      color: var(--c-bg);
      overflow: hidden;
      min-height: clamp(440px, 70vh, 660px);  /* адаптивная минимальная высота: 70% viewport, но не меньше 440 и не больше 660 */
      display: flex;
      align-items: center;
    }
    /* Десктоп: первый блок на 60px выше — добавляем по 30px отступа сверху и снизу (мобильная версия не меняется) */
    @media (min-width: 861px) {
      .hero { padding-top: 30px; padding-bottom: 30px; }
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(34,56,49,0.88) 0%, rgba(34,56,49,0.58) 50%, rgba(34,56,49,0.42) 100%),
        url('/assets/images/zapadnoe-poberezhye-kryma-hero.jpg') center/cover;
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      padding: clamp(40px, 6vw, 60px) 0 clamp(60px, 10vw, 100px) 0;  /* верх: 40px моб → 60px десктоп */
      grid-column: span 7;       /* занимает 7 из 12 колонок */
      min-width: 0;
    }
    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      background: rgba(168,216,94,0.15);
      border: 1px solid rgba(168,216,94,0.3);
      border-radius: 100px;
      font-size: 14px;
      font-weight: 500;
      color: var(--c-bright);
      margin-bottom: 24px;
    }
    .hero-tag .dot {
      width: 8px; height: 8px;
      background: var(--c-bright);
      border-radius: 50%;
    }
    /* По умолчанию (десктоп) показываем длинную версию */
    .hero-tag-d { display: inline; }
    .hero-tag-m { display: none; }
    .hero-br-d { display: inline; }
    .hero h1 {
      font-size: var(--fs-h1);
      font-weight: 800;
      margin-bottom: clamp(16px, 2vw, 24px);
      letter-spacing: -0.03em;
    }
    .hero h1 .accent {
      color: var(--c-bright);
      font-weight: 700;
    }
    .hero p {
      font-size: clamp(15px, 1.6vw, 19px);
      color: rgba(250,250,247,0.85);
      margin-bottom: clamp(28px, 3vw, 40px);
      max-width: 850px;
    }
    .hero-bullets {
      list-style: none;
      padding: 0;
      margin: 0 0 clamp(28px, 3vw, 40px);
      max-width: 850px;
      display: grid;
      gap: 12px;
    }
    .hero-bullets li {
      position: relative;
      padding-left: 32px;
      font-size: clamp(15px, 1.6vw, 19px);
      line-height: 1.4;
      color: rgba(250,250,247,0.9);
    }
    .hero-bullets li::before {
      content: "✓";
      position: absolute;
      left: 0;
      top: 0;
      color: var(--c-bright);
      font-weight: 700;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
      margin-bottom: 48px;
    }
    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 24px;
      font-size: clamp(14px, 1.2vw, 17px);
      color: rgba(250,250,247,0.7);
    }
    .hero-trust .star {
      color: var(--c-bright);
      letter-spacing: 1px;
    }
    .hero-trust strong {
      color: var(--c-bg);
      font-weight: 600;
    }
    .hero-trust .divider {
      width: 1px; height: 16px;
      background: rgba(250,250,247,0.2);
    }
    /* Бейдж «Хорошее место» в первом экране - статичный, без ссылки (не ведём к форме отзыва) */
    .hero-badge { display: none; }
    .hero-badge img { display: block; width: 100%; height: auto; }
    @media (min-width: 861px) {
      .hero-badge {
        display: block;
        position: absolute;
        top: 90px;
        right: var(--pad-x);
        width: clamp(66px, 9vw, 102px);
        z-index: 2;
        filter: drop-shadow(0 12px 26px rgba(0,0,0,0.3));
      }
    }
    /* Мобильный бейдж: правый верхний угол, верхом вровень с плашкой «Эксперты» */
    @media (max-width: 860px) {
      .hero-badge {
        display: block;
        position: absolute;
        top: 40px;
        right: var(--pad-x);
        width: clamp(31px, 8.2vw, 42px);
        z-index: 2;
        filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
      }
    }

    /* === STATS === */
    .stats {
      background: var(--c-bg);
      padding: clamp(36px, 5vw, 60px) 0;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--c-border);
      border: 1px solid var(--c-border);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 20px 50px -16px rgba(34,56,49,0.16), 0 2px 6px rgba(34,56,49,0.04);
    }
    .stat {
      background: var(--c-white);
      text-align: center;
      padding: clamp(26px, 3.4vw, 42px) clamp(16px, 2vw, 26px);
    }
    .stat-num {
      font-family: var(--font-h);
      font-weight: 800;
      font-size: clamp(27px, 3.1vw, 40px);
      color: var(--c-brand);
      line-height: 1.05;
      margin-bottom: 10px;
      letter-spacing: -0.01em;
    }
    .stat-label {
      font-size: 14px;
      color: var(--c-text-sec);
      line-height: 1.5;
      max-width: 220px;
      margin: 0 auto;
    }
    /* Десктоп: подпись под цифрами крупнее на 2px (мобильная версия не меняется) */
    @media (min-width: 861px) {
      .stat-label { font-size: 16px; }
    }

    /* === SECTION HEADER === */
    .section-head {
      grid-column: span 8;       /* 8 из 12 колонок */
      margin: 0 0 clamp(40px, 5vw, 64px) 0;
      text-align: left;
      min-width: 0;
    }
    .section-head.center {
      grid-column: 3 / 11;        /* по центру: с 3-й по 10-ю колонку */
      text-align: center;
      margin: 0 0 clamp(40px, 5vw, 64px);
    }
    .section-tag {
      display: inline-block;
      padding: 6px 14px;
      background: var(--c-pale);
      color: var(--c-brand);
      border-radius: 100px;
      font-size: 13px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      margin-bottom: 16px;
    }
    /* ПРАВИЛО: если фон секции совпадает с цветом плашки - плашка с белым фоном */
    .why-us .section-tag,
    .locations .section-tag,        /* фон bg-warm */
    .offices .section-tag {          /* фон bg-warm */
      background: var(--c-white);
    }
    .section-head h2 {
      font-size: var(--fs-h2);
      margin-bottom: clamp(12px, 1.5vw, 16px);
      color: var(--c-deep);
    }
    .section-head p {
      font-size: var(--fs-subhead);
      color: var(--c-text-sec);
      max-width: none;
      margin: 0;
    }
    .section-head.center p { margin: 0 auto; }

    /* Основатели: заголовок-блок во всю ширину, чтобы длинный подзаголовок не упирался в 8 колонок */
    #founders .section-head { grid-column: 1 / -1; }
    #founders .section-head p { max-width: calc(100% - 40px); }

    /* === WHY US === */
    .why-us {
      background: var(--c-pale);
      position: relative;
    }
    .why-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: var(--gap-grid-lg);
      align-items: center;
    }
    .why-text h2 {
      font-size: var(--fs-h2);
      color: var(--c-deep);
      margin-bottom: clamp(16px, 2vw, 24px);
    }
    .why-text h2 .accent {
      color: var(--c-brand);
    }
    .why-text > p {
      font-size: var(--fs-subhead);
      color: var(--c-text);
      line-height: 1.65;
      margin-bottom: 32px;
    }
    .why-list {
      display: grid;
      gap: 20px;
    }
    .why-cta {
      margin-top: 32px;
    }
    .why-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }
    .why-check {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      background: var(--c-brand);
      color: var(--c-white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
    }
    .why-item-text {
      font-size: 14px;
      color: var(--c-text);
      line-height: 1.55;
    }
    .why-item-text strong {
      color: var(--c-deep);
      font-weight: 600;
    }
    .why-photo {
      display: flex;
      flex-direction: column;
    }
    .why-photo img {
      width: 100%;
      border-radius: var(--r-lg);
      box-shadow: var(--shadow-lg);
    }
    /* Плашка «15 мин» — отдельной карточкой под фото во всю его ширину (на всех устройствах) */
    .why-badge {
      width: 100%;
      margin-top: 16px;
      background: var(--c-deep);
      color: var(--c-bg);
      padding: 22px 24px;
      border-radius: var(--r-md);
      box-shadow: var(--shadow-lg);
    }
    .why-badge-num {
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 32px;
      color: var(--c-bright);
      line-height: 1;
      margin-bottom: 6px;
    }
    .why-badge-text {
      font-size: 13px;
      color: rgba(250,250,247,0.85);
      line-height: 1.4;
    }
    /* Десктоп: подпись в плашке «15 мин» крупнее на 1px (мобильная версия не меняется) */
    @media (min-width: 861px) {
      .why-badge-text { font-size: 14px; }
    }

    /* === CATALOG === */
    .catalog-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 48px;
      gap: 32px;
      flex-wrap: wrap;
    }
    .catalog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gap-grid);
    }
    .card {
      background: var(--c-white);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .card-img {
      aspect-ratio: 3020 / 1660;
      overflow: hidden;
      position: relative;
      background: var(--c-pale);
    }
    .card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .card:hover .card-img img { transform: scale(1.04); }
    .card-img--ph { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-deep) 100%); }
    .card-img--ph span { color: rgba(250,250,247,0.6); font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; }
    .card-badges {
      position: absolute;
      top: 16px;
      left: 16px;
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }
    .badge {
      padding: 6px 12px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.02em;
      background: rgba(255,255,255,0.95);
      color: var(--c-deep);
    }
    .badge.green {
      background: var(--c-brand);
      color: var(--c-white);
    }
    .badge.gold {
      background: var(--c-gold);
      color: var(--c-white);
    }
    .card-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      flex: 1;
    }
    .card-loc {
      font-size: 13px;
      color: var(--c-text-sec);
      display: flex;
      align-items: center;
      gap: 6px;
      letter-spacing: 0.02em;
    }
    .card-title {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 20px;
      color: var(--c-deep);
      line-height: 1.3;
    }
    .card-specs {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      padding: 16px 0;
      border-top: 1px solid var(--c-border);
      border-bottom: 1px solid var(--c-border);
    }
    .card-spec {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .card-spec-label {
      font-size: 11px;
      color: var(--c-text-mute);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .card-spec-val {
      font-size: 15px;
      font-weight: 600;
      color: var(--c-text);
    }
    .card-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: auto;
    }
    .card-price {
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 24px;
      color: var(--c-brand);
    }
    .card-price small {
      font-size: 13px;
      color: var(--c-text-sec);
      font-weight: 500;
    }

    /* === LOCATIONS === */
    .locations {
      background: var(--c-bg-warm);
    }
    .loc-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gap-grid-sm);
    }
    .loc-card {
      background: var(--c-white);
      border-radius: var(--r-lg);
      overflow: hidden;
      transition: transform 0.25s;
      cursor: pointer;
    }
    .loc-card:hover { transform: translateY(-4px); }
    .loc-img {
      aspect-ratio: 3020 / 1660;
      background: var(--c-pale);
      overflow: hidden;
      position: relative;
    }
    .loc-img img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .loc-img--ph {
      display: flex; align-items: center; justify-content: center;
      background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-deep) 100%);
    }
    .loc-img--ph span {
      color: rgba(250,250,247,0.6); font-size: 12px; z-index: 1;
      letter-spacing: 0.08em; text-transform: uppercase;
    }
    .loc-img::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(34,56,49,0.6) 0%, transparent 50%);
    }
    .loc-img-label {
      position: absolute;
      bottom: 16px; left: 16px;
      color: var(--c-white);
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 24px;
      z-index: 1;
      letter-spacing: -0.02em;
    }
    .loc-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .loc-info-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
    }
    .loc-info {
      font-size: 13px;
      color: var(--c-text-sec);
      min-width: 0;
    }
    .loc-info strong {
      color: var(--c-deep);
      font-weight: 600;
      display: block;
      margin-bottom: 2px;
    }
    .loc-count {
      font-family: var(--font-h);
      font-weight: 700;
      color: var(--c-brand);
      font-size: 18px;
      flex-shrink: 0;
    }
    .loc-body .btn {
      width: 100%;
      justify-content: center;
    }

    /* === FOUNDERS === */
    .founders-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(20px, 3vw, 48px);
      min-width: 0;
    }
    .founder {
      background: var(--c-white);
      border-radius: var(--r-xl);
      padding: 40px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      gap: 24px;
      width: 100%;
      min-width: 0;
      box-sizing: border-box;
    }
    .founder-top {
      display: flex;
      align-items: center;
      gap: 24px;
      min-width: 0;
    }
    .founder-info {
      min-width: 0;
      flex: 1;
    }
    .founder-photo {
      width: clamp(120px, 12vw, 150px);
      height: clamp(120px, 12vw, 150px);
      border-radius: 50%;
      background: linear-gradient(135deg, var(--c-pale) 0%, var(--c-sage) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--c-deep);
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 32px;
      border: 3px solid var(--c-bg);
      box-shadow: 0 0 0 3px var(--c-pale);
      overflow: hidden;
    }
    .founder-photo img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .founder-info h3 {
      font-size: 24px;
      color: var(--c-deep);
      margin-bottom: 4px;
    }
    .founder-role {
      font-size: 14px;
      color: var(--c-brand);
      font-weight: 600;
      letter-spacing: 0.02em;
    }
    .founder-quote {
      font-size: 17px;
      line-height: 1.6;
      color: var(--c-text);
      font-style: italic;
      padding: 24px 0 0;
      border-top: 1px solid var(--c-border);
      position: relative;
    }
    .founders-proof {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: clamp(24px, 5vw, 64px);
      margin-bottom: clamp(32px, 5vw, 56px);
      padding: 28px 32px;
      background: var(--c-white);
      border-radius: var(--r-xl);
      box-shadow: var(--shadow-sm);
    }
    .fp-item { text-align: center; }
    .fp-item strong {
      display: block;
      font-family: var(--font-h);
      font-weight: 800;
      font-size: clamp(26px, 3vw, 34px);
      color: var(--c-brand);
      line-height: 1;
      margin-bottom: 6px;
    }
    .fp-item span {
      font-size: 14px;
      color: var(--c-text-sec);
    }
    .founder-stats {
      display: flex;
      gap: 24px;
    }
    .founder-stat strong {
      display: block;
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 24px;
      color: var(--c-brand);
      line-height: 1;
      margin-bottom: 4px;
    }
    .founder-stat span {
      font-size: 13px;
      color: var(--c-text-sec);
    }

    /* === VIDEO TOUR (видеообзор с коптера) === */
    .video-tour { background: var(--c-bg-warm); }
    #video .section-head p {
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
      text-wrap: balance;
    }
    /* Принудительные переносы в видеоблоке - только на десктопе (мобильную не трогаем) */
    .vid-br { display: none; }
    @media (min-width: 861px) {
      #video .section-head.center { grid-column: 1 / -1; }
      #video .section-head h2,
      #video .section-head p { max-width: 1000px; margin-left: auto; margin-right: auto; text-wrap: normal; }
      #video .vid-br { display: inline; }
    }
    .video-points {
      list-style: none;
      max-width: 920px;
      margin: clamp(28px, 3.5vw, 40px) auto 0;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px 14px;
    }
    .video-points li {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 9px 18px;
      background: var(--c-white);
      border: 1px solid var(--c-border);
      border-radius: 100px;
      font-size: 15px;
      color: var(--c-text);
      box-shadow: var(--shadow-sm);
    }
    .video-points li::before {
      content: "";
      width: 16px;
      height: 16px;
      flex: none;
      border-radius: 50%;
      background: var(--c-brand) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/10px no-repeat;
    }

    .video-wrap {
      position: relative;
      max-width: 1000px;
      margin: 0 auto;
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--shadow-md, 0 20px 50px rgba(34,56,49,0.18));
      aspect-ratio: 16 / 9;
      background: var(--c-deep);
    }
    .tour-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .video-play {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, rgba(34,56,49,0.15), rgba(34,56,49,0.35));
      transition: background 0.25s ease;
    }
    .video-play:hover { background: linear-gradient(180deg, rgba(34,56,49,0.25), rgba(34,56,49,0.45)); }
    .video-play::before {
      content: "";
      width: clamp(64px, 8vw, 88px);
      height: clamp(64px, 8vw, 88px);
      border-radius: 50%;
      background: var(--c-bright);
      box-shadow: 0 10px 30px rgba(34,56,49,0.35);
      transition: transform 0.2s ease;
    }
    .video-play:hover::before { transform: scale(1.06); }
    .video-play::after {
      content: "";
      position: absolute;
      border-style: solid;
      border-width: clamp(12px, 1.6vw, 17px) 0 clamp(12px, 1.6vw, 17px) clamp(20px, 2.6vw, 28px);
      border-color: transparent transparent transparent var(--c-deep);
      margin-left: clamp(5px, 0.7vw, 7px);
    }
    /* === TEAM === */
    .team {
      background: var(--c-deep);
      color: var(--c-bg);
    }
    .team .section-head h2 { color: var(--c-bg); }
    .team .section-head p { color: rgba(250,250,247,0.7); }
    .team .section-tag {
      background: rgba(168,216,94,0.15);
      color: var(--c-bright);
    }
    .team-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--gap-grid-sm);
    }
    .team-card {
      background: var(--c-deep-soft);
      border-radius: var(--r-lg);
      padding: 24px;
      transition: transform 0.25s, background 0.25s;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }
    .team-card:hover {
      transform: translateY(-4px);
      background: rgba(168,216,94,0.08);
    }
    .team-photo {
      width: calc(100% + 48px);
      margin: -24px -24px 20px -24px;
      aspect-ratio: 1 / 1;
      background: var(--c-pale);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--c-deep);
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 28px;
      overflow: hidden;
    }
    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .team-name {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 18px;
      color: var(--c-bg);
      margin-bottom: 8px;
    }
    .team-spec {
      font-size: 14px;
      line-height: 1.5;
      color: rgba(250,250,247,0.7);
    }
    .team-stats {
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid rgba(250,250,247,0.1);
      display: flex;
      gap: 24px;
    }
    .team-stat strong {
      display: block;
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 20px;
      color: var(--c-bright);
      line-height: 1;
      margin-bottom: 4px;
    }
    .team-stat span {
      font-size: 12px;
      color: rgba(250,250,247,0.6);
    }
    .team-locations {
      margin-top: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .team-loc-badge {
      padding: 4px 10px;
      background: rgba(168,216,94,0.15);
      color: var(--c-bright);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 500;
    }
    .team-cta {
      margin-top: auto;
      padding-top: 20px;
    }
    .team-cta .btn {
      width: 100%;
      justify-content: center;
      background: transparent;
      border: 1.5px solid rgba(168,216,94,0.5);
      color: var(--c-bright);
    }
    .team-cta .btn:hover {
      background: var(--c-bright);
      border-color: var(--c-bright);
      color: var(--c-deep);
    }

    /* === REVIEWS / TRUST === */
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gap-grid);
    }
    .trust-card {
      background: var(--c-white);
      border-radius: var(--r-lg);
      padding: 40px;
      display: flex;
      gap: 24px;
      align-items: flex-start;
      box-shadow: var(--shadow-sm);
    }
    .trust-icon {
      width: 64px; height: 64px;
      border-radius: var(--r-md);
      background: var(--c-pale);
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 32px;
    }
    .trust-icon-badge {
      width: 56px; height: auto;
      border-radius: 0;
      background: none;
    }
    .trust-icon-badge img {
      width: 100%;
      height: auto;
      display: block;
    }
    .trust-icon-shield {
      color: var(--c-brand);
    }
    .trust-icon-shield svg {
      width: 34px;
      height: 34px;
    }
    .trust-card h4 {
      font-size: 20px;
      color: var(--c-deep);
      margin-bottom: 8px;
    }
    .trust-card p {
      font-size: 15px;
      color: var(--c-text-sec);
      line-height: 1.5;
      margin-bottom: 16px;
    }
    .trust-stars {
      color: var(--c-gold);
      font-size: 20px;
      letter-spacing: 2px;
    }

    /* === OFFICES === */
    .offices {
      background: var(--c-bg-warm);
    }
    .offices-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap-grid);
    }
    .office-card {
      background: var(--c-white);
      border-radius: var(--r-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }
    .office-img {
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--c-pale);
    }
    .office-img img {
      width: 100%; height: 100%; object-fit: cover;
    }
    .office-carousel {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: var(--c-pale);
    }
    .office-track {
      display: flex;
      height: 100%;
      transition: transform 0.45s ease;
    }
    .office-track img {
      min-width: 100%;
      width: 100%;
      height: 100%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.85);
      color: var(--c-deep);
      font-size: 24px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, opacity 0.2s;
      z-index: 2;
      box-shadow: var(--shadow-sm);
    }
    .carousel-btn:hover { background: #fff; }
    .carousel-prev { left: 12px; }
    .carousel-next { right: 12px; }
    .carousel-dots {
      position: absolute;
      bottom: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 6px;
      z-index: 2;
    }
    .carousel-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.55);
      cursor: pointer;
      padding: 0;
      transition: width 0.25s, background 0.25s, border-radius 0.25s;
    }
    .carousel-dot.active {
      background: #fff;
      width: 22px;
      border-radius: 4px;
    }
    .office-body {
      padding: 32px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }
    .office-city {
      font-family: var(--font-h);
      font-weight: 800;
      font-size: 28px;
      color: var(--c-deep);
      margin-bottom: 8px;
    }
    .office-addr {
      font-size: 16px;
      color: var(--c-text-sec);
      margin-bottom: 16px;
    }
    .office-addr a {
      color: var(--c-brand);
      text-decoration: none;
      border-bottom: 1px dashed currentColor;
      transition: color 0.15s;
    }
    .office-addr a:hover { color: var(--c-deep); }
    .office-hours {
      display: inline-flex;
      align-self: flex-start;
      align-items: flex-start;
      gap: 8px;
      padding: 8px 14px;
      background: var(--c-pale);
      color: var(--c-brand);
      border-radius: var(--r-md);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
    }
    .office-hours .oh-times {
      display: flex;
      flex-wrap: wrap;
      gap: 2px 8px;
    }
    .office-hours .oh-times span {
      white-space: nowrap;
    }
    .office-feature {
      font-size: 14px;
      color: var(--c-text);
      line-height: 1.55;
    }
    .office-cta {
      margin-top: auto;
      padding-top: 24px;
    }
    .office-cta .btn {
      width: 100%;
      justify-content: center;
    }

    /* === BLOG === */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--gap-grid);
    }
    .blog-card {
      display: flex;
      flex-direction: column;
      gap: 16px;
      cursor: pointer;
    }
    .blog-img {
      aspect-ratio: 16/10;
      border-radius: var(--r-lg);
      overflow: hidden;
      background: var(--c-pale);
    }
    .blog-img img {
      width: 100%; height: 100%; object-fit: cover;
      transition: transform 0.4s;
    }
    .blog-card:hover .blog-img img { transform: scale(1.05); }
    .blog-meta {
      display: flex;
      gap: 16px;
      font-size: 13px;
      color: var(--c-text-sec);
    }
    .blog-cat {
      color: var(--c-brand);
      font-weight: 600;
    }
    .blog-title {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 22px;
      color: var(--c-deep);
      line-height: 1.3;
    }
    .blog-excerpt {
      font-size: 15px;
      color: var(--c-text-sec);
      line-height: 1.5;
    }

    /* === FAQ === */
    .faq { background: var(--c-bg-warm); }
    .faq .section-tag { background: var(--c-white); }
    .faq-list {
      grid-column: 1 / -1;
      width: 100%;
      max-width: 880px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--c-white);
      border: 1px solid var(--c-border);
      border-radius: var(--r-md);
    }
    .faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: clamp(16px, 2vw, 22px) clamp(18px, 2.2vw, 26px);
      font-family: var(--font-h);
      font-weight: 700;
      font-size: clamp(16px, 1.5vw, 19px);
      line-height: 1.4;
      color: var(--c-deep);
      transition: color 0.2s;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary:hover { color: var(--c-brand); }
    .faq-q { flex: 1; min-width: 0; }
    .faq-chev {
      flex-shrink: 0;
      width: 22px; height: 22px;
      color: var(--c-brand);
      transition: transform 0.25s ease;
    }
    .faq-item[open] summary { color: var(--c-brand); }
    .faq-item[open] .faq-chev { transform: rotate(180deg); }
    .faq-a {
      padding: 0 clamp(18px, 2.2vw, 26px) clamp(18px, 2.2vw, 24px);
    }
    .faq-a p {
      margin: 0;
      font-size: var(--fs-subhead);
      line-height: 1.7;
      color: var(--c-text-sec);
    }

    /* === CTA SECTION === */
    .cta-section {
      background: linear-gradient(135deg, var(--c-deep) 0%, var(--c-deep-soft) 100%);
      color: var(--c-bg);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 20% 30%, rgba(168,216,94,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(181,148,90,0.08) 0%, transparent 50%);
    }
    .cta-content {
      position: relative;
      z-index: 1;
      grid-column: 1 / -1;       /* на всю ширину, содержимое по центру */
      min-width: 0;
    }
    .cta-section h2 {
      font-size: var(--fs-h2);
      color: var(--c-bg);
      margin-bottom: clamp(16px, 2vw, 24px);
    }
    .cta-section h2 .accent {
      color: var(--c-bright);
    }
    .cta-section p {
      font-size: var(--fs-subhead);
      color: rgba(250,250,247,0.75);
      max-width: 560px;
      margin: 0 auto 40px;
    }
    .cta-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Форма заявки в CTA */
    .cta-form {
      position: relative;
      z-index: 1;
      background: var(--c-white);
      border-radius: 20px;
      padding: 28px;
      max-width: 680px;
      margin: 0 auto;
      text-align: left;
      box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    }
    .cta-form-title {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 18px;
      color: var(--c-deep);
      letter-spacing: -0.02em;
      margin-bottom: 18px;
      text-align: center;
    }
    .cta-form .field { margin-bottom: 12px; }
    .cta-form input[type="text"],
    .cta-form input[type="tel"] {
      width: 100%;
      padding: 15px 16px;
      border: 1.5px solid var(--c-pale);
      border-radius: 12px;
      font-family: var(--font-b);
      font-size: 15px;
      color: var(--c-text);
      background: var(--c-bg);
      transition: border-color 0.2s, background 0.2s;
    }
    .cta-form input:focus {
      outline: none;
      border-color: var(--c-brand);
      background: var(--c-white);
    }
    .cta-form input::placeholder { color: var(--c-text-mute); }
    .cta-consent {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin: 14px 0 16px;
      font-size: 12.5px;
      line-height: 1.45;
      color: var(--c-text-sec);
      cursor: pointer;
    }
    .cta-consent input {
      margin-top: 1px;
      width: 17px; height: 17px;
      flex: none;
      accent-color: var(--c-brand);
      cursor: pointer;
    }
    .cta-consent a { color: var(--c-brand); text-decoration: underline; }
    .cta-form .btn { width: 100%; justify-content: center; }
    .cta-success {
      position: relative;
      z-index: 1;
      display: none;
      background: var(--c-white);
      border-radius: 20px;
      padding: 36px 28px;
      max-width: 680px;
      margin: 0 auto;
      box-shadow: 0 16px 48px rgba(0,0,0,0.25);
    }
    .cta-success.show { display: block; }
    .cta-success h3 { font-family: var(--font-h); color: var(--c-deep); margin: 0 0 8px; font-size: 22px; }
    .cta-success p { color: var(--c-text-sec); font-size: 15px; margin: 0; max-width: none; }
    .cta-alt {
      position: relative;
      z-index: 1;
      margin-top: 20px;
      font-size: 14px;
      color: rgba(250,250,247,0.75);
    }
    .cta-alt a { color: var(--c-bright); font-weight: 600; text-decoration: none; white-space: nowrap; }
    .cta-alt-contacts { white-space: nowrap; display: inline-block; }
    .cta-alt a:hover { text-decoration: underline; }

    /* === FOOTER === */
    .footer {
      background: #1A2A24;
      color: rgba(250,250,247,0.7);
      padding: 80px 0 32px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: clamp(24px, 4vw, 48px);
      margin-bottom: clamp(40px, 5vw, 64px);
    }
    .footer-brand .logo-img {
      height: 54px;
    }
    .footer-about {
      font-size: 14px;
      line-height: 1.6;
      margin-top: 20px;
      color: rgba(250,250,247,0.65);
      max-width: 320px;
    }
    .footer-col h5 {
      color: var(--c-bg);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-bottom: 20px;
    }
    .footer-col ul {
      list-style: none;
      display: grid;
      gap: 12px;
    }
    .footer-col a {
      font-size: 14px;
      color: rgba(250,250,247,0.65);
      transition: color 0.15s;
    }
    .footer-col a:hover { color: var(--c-bright); }
    .footer-contacts {
      font-size: 14px;
      color: rgba(250,250,247,0.7);
      line-height: 1.6;
    }
    .footer-contacts strong {
      color: var(--c-bg);
      display: block;
      font-family: var(--font-h);
      font-size: 18px;
      margin-bottom: 8px;
    }
    .footer-contacts .footer-phone {
      color: var(--c-bg);
      display: block;
      font-family: var(--font-h);
      font-size: 18px;
      margin-bottom: 8px;
      transition: color 0.15s;
    }
    .footer-contacts .footer-phone:hover { color: var(--c-bright); }
    .footer-contacts .footer-email {
      color: rgba(250,250,247,0.7);
      transition: color 0.15s;
    }
    .footer-contacts .footer-email:hover { color: var(--c-bright); }
    .footer-contacts .footer-addr {
      color: rgba(250,250,247,0.7);
      text-decoration: none;
      border-bottom: 1px dashed rgba(250,250,247,0.35);
      transition: color 0.15s, border-color 0.15s;
    }
    .footer-contacts .footer-addr:hover { color: var(--c-bright); border-color: var(--c-bright); }
    .footer-bottom {
      padding-top: 32px;
      /* Иконки прячутся в подвале - «Политика» выровнена по сетке справа */
      border-top: 1px solid rgba(250,250,247,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: rgba(250,250,247,0.4);
      flex-wrap: wrap;
      gap: 16px;
    }

    /* === FLOATING CTA === */
    /* Выровнен по сетке - отступ справа = боковому отступу контейнера */
    .float-cta {
      position: fixed;
      bottom: 60px;
      right: var(--pad-x);
      display: flex;
      flex-direction: column;
      gap: 9px;
      z-index: 99;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    body.scrolled .float-cta { opacity: 1; pointer-events: auto; }
    body.scrolled.near-bottom .float-cta { opacity: 0; pointer-events: none; }
    .float-btn {
      width: 56px;
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s;
      background: transparent;
    }
    .float-btn svg {
      width: 56%;
      height: 56%;
      fill: currentColor;
    }
    .float-btn img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 22%;
      display: block;
      filter: drop-shadow(0 3px 8px rgba(0,0,0,0.28));
    }
    .float-btn:hover { transform: scale(1.05); }
    .float-tg,
    .float-max { background: transparent; }

    /* === ФИКСИРОВАННАЯ CTA-КНОПКА СНИЗУ (мобильные и планшеты) === */
    /* Без подложки, прозрачный фон, появляется при скролле. Выровнена по сетке. */
    .mobile-cta {
      display: none;
      position: fixed;
      left: var(--pad-x);
      right: var(--pad-x);
      bottom: max(16px, env(safe-area-inset-bottom));
      z-index: 90;
      opacity: 0;
      transform: translateY(20px);
      pointer-events: none;
      transition: opacity 0.3s ease, transform 0.3s ease;
    }
    body.scrolled .mobile-cta {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
    .mobile-cta .btn {
      width: 100%;
      height: 56px;
      font-size: 16px;
      font-weight: 700;
      padding: 0;
      border-radius: var(--r-md);
      /* Сильная тень, чтобы кнопка выделялась без подложки */
      box-shadow: 0 8px 24px rgba(34,56,49,0.25), 0 2px 8px rgba(34,56,49,0.15);
    }

    /* === ДЕСКТОПНАЯ ФИКСИРОВАННАЯ ПЛАШКА СНИЗУ (зелёная полоса с кнопкой) === */
    .desktop-cta-bar { display: none; }
    @media (min-width: 861px) {
      .desktop-cta-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 24px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        height: 45px;
        padding: 0 var(--pad-x);
        background: var(--c-brand);
        z-index: 95;
        box-shadow: 0 -4px 20px rgba(34,56,49,0.18);
        transform: translateY(100%);          /* спрятана за нижним краем */
        transition: transform 0.3s ease;
      }
      body.scrolled .desktop-cta-bar { transform: translateY(0); }   /* выезжает при прокрутке */
      .desktop-cta-bar p {
        margin: 0;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255,255,255,0.95);
        white-space: nowrap;
      }
      .desktop-cta-bar .btn {
        height: 31px;
        padding: 0 22px;
        font-size: 14px;
        font-weight: 700;
        border-radius: 7px;
        white-space: nowrap;
        flex-shrink: 0;
      }
      /* Чат-иконки: показ/скрытие синхронно с видео-виджетом (body.scrolled), позиция постоянна */
      /* Зелёный запас снизу подвала под выезжающую плашку - чтобы под подвалом не было светлой полосы (десктоп) */
      .footer { padding-bottom: 77px; }
    }

    /* === МОБИЛЬНОЕ МЕНЮ (бургер) === */
    .mobile-toggle { display: none; }
    .hamburger { display: none; }
    .header-phone-mob { display: none; }  /* кнопка-звонок только на мобильной */

    /* === БРЕЙКПОИНТЫ - только для бинарных переключений === */
    /* Большая часть макета - резиновая (clamp + auto-fit). */
    /* Брейкпоинты используются только там, где нужно жёстко переключить вид. */

    /* Десктоп (≥1100px) - H1 в 2 строки естественным переносом */
    @media (min-width: 1100px) {
      .hero h1 { font-size: clamp(40px, 5vw, 60px); }  /* уменьшенный размер, чтобы текст помещался в 2 строки */
      .hero-inner { grid-column: span 10; }             /* шире место под заголовок */
    }

    /* Адаптация шапки: заранее убираем подпись логотипа и поджимаем меню, чтобы не налезало */
    @media (max-width: 1480px) {
      .logo-subtitle { display: none; }
      .logo-img { height: 42px; }
      .nav { gap: 18px; }
      .nav a { font-size: 14px; }
    }
    /* Средние экраны: прячем телефон (остаётся кнопка «Подобрать участок»), меню ещё плотнее */
    @media (max-width: 1200px) {
      .header-cta .phone-wrap { display: none; }
      .nav { gap: 14px; }
    }
    /* Узкий десктоп/планшет (до бургера на 860): максимально плотное меню, чтобы 7 пунктов помещались */
    @media (max-width: 1000px) {
      .header .container { gap: 16px; }
      .nav { gap: 10px; }
      .nav a { font-size: 13px; }
      .header-cta .btn { padding: 11px 16px; font-size: 13px; }
    }
    /* Совсем узко перед бургером (861-920): уменьшаем лого и отступы, чтобы меню точно поместилось */
    @media (max-width: 920px) {
      .header .container { gap: 12px; }
      .logo-img { height: 36px; }
      .nav { gap: 8px; }
      .nav a { font-size: 12px; }
    }

    /* Планшет landscape (≤1024px) - переключаем грид-колонки */
    @media (max-width: 1024px) {
      .header-cta .phone-wrap { display: none; }
      .hero-br-d { display: none; }

      /* Переключение колонок на планшете */
      .catalog-grid { grid-template-columns: repeat(2, 1fr); }
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .loc-grid { grid-template-columns: repeat(2, 1fr); }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: 1fr; }
      .founders-grid { grid-template-columns: 1fr; }
      .trust-grid { grid-template-columns: 1fr; }
      .offices-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    /* Бургер-меню для планшетов и мобильных (≤860px) */
    @media (max-width: 860px) {
      /* Шапка перестраивается */
      .header .container {
        gap: 12px;
        position: relative;
        justify-content: flex-start;
        padding: 14px var(--pad-x);
      }
      .logo { margin-right: auto; }

      /* Скрываем CTA-кнопку из шапки - она будет внизу экрана */
      .header-cta { display: none; }

      /* Кнопка-звонок в шапке (только мобильная, между логотипом и бургером) */
      .header-phone-mob {
        display: inline-flex; align-items: center; justify-content: center;
        width: 42px; height: 42px; border-radius: 22%;
        background: var(--c-bright); color: var(--c-deep);
        flex-shrink: 0; text-decoration: none;
        box-shadow: 0 2px 8px rgba(34,56,49,0.15);
      }

      /* Показываем фиксированную CTA-плашку снизу (становится видна при скролле) */
      .mobile-cta { display: block; }

      /* Чат-иконки: по умолчанию у самого низа, выровнены по сетке */
      .float-cta {
        bottom: calc(max(16px, env(safe-area-inset-bottom)) + 68px);
        right: var(--pad-x);
        gap: 7px;
      }
      .float-btn { width: 52px; height: 52px; font-size: 22px; }

      /* Когда страница прокручена и появляется CTA - поднимаем чат-иконки выше.
         Формула как у видео-виджета главной, чтобы позиция иконок была единой на всех страницах. */
      body.scrolled .float-cta { opacity: 1; pointer-events: auto; }

      /* Зелёный запас снизу подвала под фиксированную плашку «Подобрать участок» - чтобы под
         подвалом не было светлой полосы на мобильной (раньше это был padding-bottom у body). */
      .footer { padding-bottom: 120px; }

      /* На планшетах и мобильных контентные блоки занимают всю ширину */
      .hero-inner { grid-column: 1 / -1; }
      .section-head { grid-column: 1 / -1; }
      .section-head.center { grid-column: 1 / -1; }
      .cta-content { grid-column: 1 / -1; }

      /* Прячем десктоп-навигацию */
      .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--c-bg);
        padding: 24px 24px 32px;
        gap: 4px;
        border-bottom: 1px solid var(--c-border);
        box-shadow: var(--shadow-md);
      }
      .mobile-toggle:checked ~ .nav { display: flex; }
      .nav a {
        font-size: 17px;
        padding: 12px 0;
        border-bottom: 1px solid var(--c-border);
      }
      .nav a:last-child { border-bottom: none; }

      /* Бургер-иконка */
      .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 44px;
        height: 44px;
        cursor: pointer;
        padding: 0;
        background: transparent;
        border-radius: 8px;
        transition: background 0.2s;
      }
      .hamburger:hover { background: var(--c-bg-warm); }
      .hamburger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--c-deep);
        border-radius: 2px;
        transition: transform 0.25s, opacity 0.2s;
      }
      .mobile-toggle:checked ~ .hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
      }
      .mobile-toggle:checked ~ .hamburger span:nth-child(2) {
        opacity: 0;
      }
      .mobile-toggle:checked ~ .hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
      }
      .header-cta .btn { padding: 12px 18px; font-size: 14px; }

      /* Hero делаем гибким */
      .hero-inner { max-width: 100%; }
      .hero-actions { flex-wrap: wrap; }
      .hero-actions .btn { flex: 1; min-width: 200px; }
      .hero-trust .divider { display: none; }

      /* Trust-карточки в столбик */
      .trust-card { flex-direction: column; gap: 20px; }

      /* Catalog-head в столбик */
      .catalog-head { flex-direction: column; align-items: flex-start; gap: 16px; }
    }

    /* Мобильные адаптации (≤600px) - всё в один столбец */
    @media (max-width: 600px) {
      /* Крупные кнопки: меньше боковые отступы + разрешаем перенос, чтобы длинный текст не вылезал за края */
      .btn-lg { padding: 16px 18px; font-size: 16px; white-space: normal; line-height: 1.25; }

      /* Все гриды в 1 столбец */
      .catalog-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .loc-grid { grid-template-columns: 1fr; }
      .team-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }

      /* Карточки каталога: цена сверху, кнопка снизу на всю ширину */
      .card-bottom {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
      }
      .card-bottom .btn {
        width: 100%;
        justify-content: center;
      }

      /* Hero-тег: на мобильных короткая версия текста */
      .hero-tag {
        font-size: 12px;
        padding: 6px 12px;
        gap: 6px;
        white-space: nowrap;
      }
      .hero-tag .dot {
        width: 6px;
        height: 6px;
        flex-shrink: 0;
      }
      .hero-tag-d { display: none; }
      .hero-tag-m { display: inline; }

      /* Stats - центрированный вид «цифра над подписью» */
      .stat {
        padding: 26px 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
      }
      .stat-num { margin-bottom: 0; }
      .stat-label { text-align: center; max-width: 260px; line-height: 1.45; }

      /* Hero на мобильном - кнопки на ширину экрана */
      .hero-actions { flex-direction: column; }
      .hero-actions .btn { width: 100%; min-width: 0; }
      .hero-trust { flex-direction: column; align-items: flex-start; gap: 10px; }

      /* CTA-кнопки на всю ширину */
      .cta-actions { flex-direction: column; align-items: stretch; }
      .cta-actions .btn { width: 100%; }

      /* Кнопка в блоке «Главное преимущество» — на всю ширину */
      .why-cta { display: flex; width: 100%; justify-content: center; }

      /* Footer-bottom в столбик */
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 16px; }

      /* Видео-пункты на мобильном — все плашки одинаковой ширины (во всю ширину экрана), в столбик */
      .video-points { flex-direction: column; align-items: stretch; gap: 10px; }
      .video-points li { width: 100%; justify-content: flex-start; border-radius: 14px; }

      /* Карточки основателей: имя и должность под фото, по центру */
      .founder { padding: 28px; }
      .founder-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
      }
      .founder-info { flex: none; }
      .founder-info h3 { font-size: 22px; }
      .founder-role { font-size: 13px; }
      .founder-quote { font-size: 12px; line-height: 1.65; padding: 18px 0; }
    }

    /* Cookie-баннер */
    .cookie-banner {
      position: fixed;
      left: 0;
      right: 0;
      margin: 0 auto;
      bottom: 50px;
      max-width: 640px;
      display: flex;
      align-items: center;
      gap: 16px;
      background: var(--c-white);
      color: var(--c-deep);
      border-radius: 10px;
      box-shadow: var(--shadow-lg);
      padding: 12px 16px;
      z-index: 3000;
      font-size: 12.5px;
      line-height: 1.4;
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 0.3s ease, transform 0.3s ease;
      pointer-events: none;
      visibility: hidden;
    }
    .cookie-banner.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      visibility: visible;
    }
    .cookie-banner p {
      margin: 0;
      color: var(--c-text-sec);
    }
    .cookie-banner a {
      color: var(--c-brand);
      text-decoration: underline;
      font-weight: 600;
    }
    .cookie-actions {
      flex: none;
      display: flex;
      align-items: center;
    }
    @media (max-width: 640px) {
      .cookie-banner {
        left: var(--pad-x);
        right: var(--pad-x);
        bottom: 12px;
        max-width: none;
        flex-wrap: wrap;
        gap: 10px;
      }
    }

    /* Honeypot - невидимая ловушка для спам-ботов */
    .hp-field {
      position: absolute !important;
      left: -9999px !important;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }
    /* Сообщение об ошибке отправки формы */
    .form-error {
      display: none;
      margin-top: 12px;
      font-size: 13px;
      line-height: 1.4;
      color: #c0392b;
      text-align: center;
    }
    .form-error a { color: #c0392b; font-weight: 700; text-decoration: underline; }

    /* Попап с формой заявки */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(34, 56, 49, 0.55);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 4000;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.25s ease, visibility 0.25s ease;
    }
    .modal-overlay.is-open {
      opacity: 1;
      visibility: visible;
    }
    .modal-card {
      position: relative;
      background: var(--c-white);
      border-radius: 20px;
      padding: 34px 28px 26px;
      width: 100%;
      max-width: 460px;
      max-height: 92vh;
      overflow-y: auto;
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
      transform: translateY(20px) scale(0.98);
      transition: transform 0.25s ease;
    }
    .modal-overlay.is-open .modal-card {
      transform: translateY(0) scale(1);
    }
    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 34px;
      height: 34px;
      border: none;
      border-radius: 50%;
      background: var(--c-bg);
      color: var(--c-deep);
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .modal-close:hover { background: var(--c-pale); }
    .modal-title {
      font-family: var(--font-h);
      font-weight: 700;
      font-size: 22px;
      color: var(--c-deep);
      letter-spacing: -0.02em;
      margin: 0 0 6px;
      padding: 0 30px;
      text-align: center;
    }
    .modal-sub {
      font-size: 14px;
      color: var(--c-text-sec);
      margin: 0 0 20px;
      line-height: 1.5;
      text-align: center;
    }
    .modal-card .field { margin-bottom: 12px; }
    .modal-card input[type="text"],
    .modal-card input[type="tel"] {
      width: 100%;
      padding: 15px 16px;
      border: 1.5px solid var(--c-pale);
      border-radius: 12px;
      font-family: var(--font-b);
      font-size: 15px;
      color: var(--c-text);
      background: var(--c-bg);
      transition: border-color 0.2s, background 0.2s;
    }
    .modal-card input:focus {
      outline: none;
      border-color: var(--c-brand);
      background: var(--c-white);
    }
    .modal-card input::placeholder { color: var(--c-text-mute); }
    .modal-consent {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin: 14px 0 18px;
      font-size: 12.5px;
      line-height: 1.45;
      color: var(--c-text-sec);
      cursor: pointer;
    }
    .modal-consent input {
      margin-top: 1px;
      width: 17px;
      height: 17px;
      flex: none;
      accent-color: var(--c-brand);
      cursor: pointer;
    }
    .modal-consent a { color: var(--c-brand); text-decoration: underline; }
    .modal-card .btn { width: 100%; justify-content: center; }
    .modal-success { display: none; text-align: center; padding: 6px 0; }
    .modal-success.show { display: block; }
    .modal-success h3 {
      font-family: var(--font-h);
      color: var(--c-deep);
      margin: 0 0 8px;
      font-size: 22px;
    }
    .modal-success p { color: var(--c-text-sec); font-size: 15px; margin: 0; }

    /* Блок «Подпишитесь на канал» в экране «Спасибо» (после успешной заявки) */
    .sub-cta { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--c-border); text-align: center; }
    .sub-cta .sub-cta-text { font-size: 14px; line-height: 1.55; color: var(--c-text-sec); margin: 0 0 22px; }
    .sub-cta-text strong { color: var(--c-deep); }
    .sub-btns { display: flex; flex-direction: column; gap: 10px; }
    .sub-btn { display: flex; align-items: center; justify-content: center; gap: 9px; padding: 13px 18px; border-radius: 12px; font-family: var(--font-b); font-weight: 700; font-size: 15px; color: #fff !important; text-decoration: none; transition: transform .15s ease, box-shadow .2s ease; }
    .sub-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
    .sub-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.18); }
    .sub-btn-tg { background: #229ED9; }
    .sub-btn-max { background: linear-gradient(135deg, #7A5CFF 0%, #A23BFF 100%); }
    .modal-alt {
      margin-top: 16px;
      font-size: 13px;
      color: var(--c-text-sec);
      text-align: center;
    }
    .modal-alt a { color: var(--c-brand); font-weight: 600; text-decoration: none; }
    .modal-alt a:hover { text-decoration: underline; }

    /* === PROSE (текстовые блоки контентных страниц) === */
    .prose { grid-column: 1 / -1; max-width: none; margin: 0; color: var(--c-text-sec); font-size: 17px; line-height: 1.72; }
    .prose p { margin: 0 0 18px; }
    .prose p:last-child { margin-bottom: 0; }
    .prose strong { color: var(--c-text); font-weight: 700; }
    .prose ul, .prose ol { margin: 0 0 18px; padding-left: 22px; }
    .prose li { margin: 0 0 12px; }
    .prose li:last-child { margin-bottom: 0; }
    .prose a { color: var(--c-brand); font-weight: 600; }
    .prose a:hover { text-decoration: underline; }

    /* Иллюстрация в контенте (карта локации, фото, рендер) - переиспользуемый блок */
    .content-figure { grid-column: 1 / -1; margin: 0; }
    .content-figure img { width: 100%; height: auto; border-radius: var(--r-lg); display: block; }
    .content-figure figcaption { margin-top: 12px; font-size: 14px; color: var(--c-text-sec); text-align: center; }
    .prose .content-figure { margin: 8px 0 22px; }


/* === Видео-виджет основателя (плавающий, все страницы) === */
.founder-widget{position:fixed;left:var(--pad-x);bottom:60px;z-index:96;width:128px;border-radius:18px;overflow:hidden;cursor:pointer;background:var(--c-deep);border:2px solid rgba(255,255,255,.9);box-shadow:0 12px 32px rgba(34,56,49,.32);opacity:0;pointer-events:none;transition:opacity .3s ease,box-shadow .2s ease}
.founder-widget.is-visible{opacity:1;pointer-events:auto}
.founder-widget:hover{box-shadow:0 18px 40px rgba(34,56,49,.45)}
.founder-widget video{display:block;width:100%;aspect-ratio:9/16;object-fit:cover;background:var(--c-deep)}
.founder-widget .fw-label{position:absolute;left:0;right:0;bottom:0;padding:16px 8px 7px;font-size:11px;font-weight:700;color:#fff;text-align:center;line-height:1.2;background:linear-gradient(transparent,rgba(26,42,36,.92))}
.founder-widget .fw-play{position:absolute;top:9px;left:9px;width:28px;height:28px;border-radius:50%;background:var(--c-bright);display:flex;align-items:center;justify-content:center;z-index:2;box-shadow:0 3px 10px rgba(0,0,0,.5),0 0 0 3px rgba(0,0,0,.14)}
.founder-widget .fw-play svg{width:12px;height:12px;fill:var(--c-deep);margin-left:1px}
.founder-widget .fw-pulse{position:absolute;top:9px;left:9px;width:28px;height:28px;border-radius:50%;background:rgba(168,216,94,.55);animation:fw-pulse 1.8s ease-out infinite;z-index:1}
@keyframes fw-pulse{0%{transform:scale(1);opacity:.7}100%{transform:scale(2.3);opacity:0}}
.founder-widget .fw-close{position:absolute;top:6px;right:6px;width:22px;height:22px;border-radius:50%;background:rgba(0,0,0,.5);color:#fff;border:none;font-size:15px;line-height:1;cursor:pointer;display:flex;align-items:center;justify-content:center;z-index:3;padding:0}
.founder-widget .fw-close:hover{background:rgba(0,0,0,.78)}
.fvm .modal-card{position:relative;background:transparent;box-shadow:none;padding:0;width:fit-content;max-width:92vw;margin:0 auto;overflow:visible}
.fvm-video{display:block;width:auto;height:auto;max-width:min(92vw,440px);max-height:82vh;border-radius:20px;background:#000}
.fvm .modal-close{position:absolute;top:8px;right:8px;width:40px;height:40px;border-radius:50%;background:rgba(0,0,0,.55);color:#fff;font-size:26px;line-height:1;display:flex;align-items:center;justify-content:center;border:none;cursor:pointer;z-index:4}
.fvm .modal-close:hover{background:rgba(0,0,0,.8)}
@media (min-width:861px){.founder-widget.is-visible{bottom:60px}}
@media (max-width:600px){.founder-widget{width:104px;bottom:calc(max(16px, env(safe-area-inset-bottom)) + 68px)}}
@media (prefers-reduced-motion:reduce){.founder-widget .fw-pulse{animation:none}.founder-widget{transition:opacity .2s ease}}

/* === Мелкие экраны (≤360px и всё, что вылезало): без бокового overflow === */
html, body { overflow-x: clip; }
/* Таблицы сравнения скроллятся ВНУТРИ своего контейнера, а не ломают страницу */
@media (max-width: 860px) {
  .cmp-scroll { max-width: calc(100vw - 2 * var(--pad-x)) !important; overflow-x: auto !important; -webkit-overflow-scrolling: touch; }
}
/* Плашки каналов в СВЕТЛОЙ CTA-карточке статьи: белый текст не читался -> тёмный/зелёный */
.article-cta-inline .footer-channels div { color: var(--c-text-sec) !important; }
.article-cta-inline .footer-channels a { color: var(--c-brand) !important; background: rgba(50,114,76,0.10) !important; }
/* Узкие экраны: длинные кнопки переносятся на 2 строки, а не вылезают/обрезаются */
@media (max-width: 420px) {
  .btn { white-space: normal; }
}

    /* === КВИЗ-ПОДБОР УЧАСТКА + ЛИДОЛОВ (exit-intent) — лидген, поверх .modal-* === */
    .quiz-card { max-width: 600px; padding: 24px 26px 22px; }
    .quiz-head { margin: 0 0 16px; }
    .quiz-count { font-family: var(--font-h); font-size: 12.5px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--c-brand); margin-bottom: 8px; }
    .quiz-progress { height: 6px; border-radius: 6px; background: var(--c-pale); overflow: hidden; }
    .quiz-progress-bar { height: 100%; width: 20%; border-radius: 6px; background: var(--c-bright); transition: width 0.3s ease; }
    .quiz-step { display: none; }
    .quiz-step.active { display: block; animation: kvFade 0.28s ease; }
    @keyframes kvFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
    .quiz-q { font-family: var(--font-h); font-weight: 700; font-size: 19px; line-height: 1.28; color: var(--c-deep); letter-spacing: -0.01em; margin: 0 0 16px; text-align: left; padding: 0; }
    .quiz-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
    .quiz-opt { display: flex; align-items: center; gap: 10px; text-align: left; padding: 14px 14px; border: 1.5px solid var(--c-border); border-radius: 14px; background: var(--c-bg); font-family: var(--font-b); font-size: 14.5px; font-weight: 600; color: var(--c-deep); cursor: pointer; transition: border-color 0.15s, background 0.15s, transform 0.1s; }
    .quiz-opt:hover { border-color: var(--c-brand); background: var(--c-white); }
    .quiz-opt:active { transform: scale(0.98); }
    .quiz-opt .qi { font-size: 22px; line-height: 1; flex: none; }
    .quiz-back { margin-top: 14px; background: none; border: none; color: var(--c-text-sec); font-family: var(--font-b); font-size: 13.5px; cursor: pointer; padding: 6px 2px; display: none; align-items: center; gap: 5px; }
    .quiz-back:hover { color: var(--c-brand); }
    .quiz-contact .btn { width: 100%; justify-content: center; }
    @media (max-width: 480px) {
      .quiz-card { padding: 22px 18px 18px; }
      .quiz-options { grid-template-columns: 1fr; }
    }
    /* Лидолов (exit-intent) */
    .lidolov-emoji { font-size: 34px; text-align: center; line-height: 1; margin: 2px 0 4px; }
    .lidolov-card .btn { width: 100%; justify-content: center; }
    .lidolov-alt { display: block; width: 100%; margin-top: 12px; background: none; border: none; color: var(--c-brand); font-family: var(--font-b); font-size: 13.5px; text-decoration: underline; cursor: pointer; text-align: center; }
    .lidolov-alt:hover { color: var(--c-brand-hover); }
