
    :root {
      --accent: #0C74BD;
      --accent-2: #29A9E0;
      --accent-dark: #075E9B;
      --accent-soft: #E9F3FB;
      --accent-line: #CFE4F4;
      --ink: #0E2A38;
      --text: #15303D;
      --muted: #58697A;
      --bg: #FFFFFF;
      --bg-soft: #F4F8FC;
      --border: #E4EBF1;
      --radius: 16px;
      --radius-sm: 11px;
      --maxw: 1200px;
      --shadow-sm: 0 1px 2px rgba(15,42,56,.05), 0 1px 1px rgba(15,42,56,.03);
      --shadow-md: 0 12px 30px -14px rgba(12,116,189,.30);
      --shadow-lg: 0 26px 60px -24px rgba(12,116,189,.32);
      --space: clamp(64px, 9vw, 116px);
    }

    *, *::before, *::after { box-sizing: border-box; }

    html { scroll-behavior: smooth; -webkit-overflow-scrolling: touch; overflow-x: clip; }

    body {
      margin: 0;
      font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
      overscroll-behavior-y: none;
    }

    h1, h2, h3 { line-height: 1.12; letter-spacing: -0.025em; margin: 0; font-weight: 700; color: var(--ink); }
    h1 { font-size: clamp(36px, 6vw, 60px); }
    h2 { font-size: clamp(28px, 4vw, 40px); }
    h3 { font-size: 19px; font-weight: 600; letter-spacing: -0.015em; }
    p { margin: 0; }
    a { color: var(--accent); text-decoration: none; }
    img, svg { display: block; }

    .container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

    .section { padding: var(--space) 0; }
    .section--soft { background: var(--bg-soft); }

    .eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 16px;
    }

    .lead { color: var(--muted); font-size: clamp(16px, 2vw, 18px); max-width: 56ch; }

    /* ===== Buttons ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font: inherit;
      font-weight: 600;
      font-size: 15px;
      padding: 14px 26px;
      border-radius: 11px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
      white-space: nowrap;
    }
    .btn--primary {
      background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 55%, var(--accent-dark) 100%);
      color: #fff;
      box-shadow: var(--shadow-md);
    }
    .btn--primary:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }
    .btn--ghost { background: #fff; color: var(--accent); border-color: var(--border); box-shadow: var(--shadow-sm); }
    .btn--ghost:hover { border-color: var(--accent); color: var(--accent-dark); transform: translateY(-1px); }
    .btn--block { width: 100%; }

    /* ===== Header ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: saturate(180%) blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .header-inner {
      display: flex;
      align-items: center;
      gap: 20px;
      min-height: 76px;
    }
    .logo { display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: 20px; letter-spacing: -0.03em; margin-right: auto; color: var(--ink); }
    .logo .drop { color: var(--accent-2); filter: drop-shadow(0 2px 4px rgba(41,169,224,.35)); }
    .logo small { display: block; font-size: 11px; font-weight: 500; color: var(--muted); letter-spacing: 0.01em; margin-top: 1px; }

    .nav { display: flex; align-items: center; gap: 26px; }
    .nav a { font-size: 15px; font-weight: 500; color: var(--accent); white-space: nowrap; transition: color .15s ease; }
    .nav a:hover { color: var(--accent); }
    .nav .phone { display: none; } /* виден только в мобильном меню */

    .header-actions { display: flex; align-items: center; gap: 20px; }
    .phone { font-weight: 700; font-size: 16px; white-space: nowrap; letter-spacing: -0.01em; }
    .phone:hover { color: var(--accent); }

    .burger {
      display: none;
      width: 44px; height: 44px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: #fff;
      cursor: pointer;
      padding: 0;
      position: relative;
    }
    .burger span {
      position: absolute;
      left: 11px; right: 11px;
      height: 2px;
      background: var(--text);
      transition: transform .2s ease, opacity .2s ease;
    }
    .burger span:nth-child(1) { top: 15px; }
    .burger span:nth-child(2) { top: 20px; }
    .burger span:nth-child(3) { top: 25px; }
    .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
    .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

    /* ===== Hero ===== */
    .hero {
      padding: clamp(48px, 7vw, 88px) 0 var(--space);
      background:
        radial-gradient(1100px 520px at 88% -8%, var(--accent-soft) 0%, rgba(233,243,251,0) 62%),
        linear-gradient(180deg, #FBFDFF 0%, var(--bg) 68%);
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: start;
    }
    .hero h1 { margin-bottom: 20px; }
    .hero .lead { margin-bottom: 28px; }
    .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 28px; }
    .trust-row { display: flex; flex-wrap: wrap; gap: 20px 28px; color: var(--muted); font-size: 14px; }
    .trust-row span { display: inline-flex; align-items: center; gap: 8px; }
    .trust-row svg { color: var(--accent); flex-shrink: 0; }
    .trust-check { list-style: none; padding: 0; margin: 0; }
    .trust-check li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; color: var(--text); }

    /* ===== Form card ===== */
    .form-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow-lg);
    }
    .form-card h3 { margin-bottom: 6px; }
    .form-card .form-title { margin: 0 0 6px; font-size: 19px; font-weight: 700; line-height: 1.12; letter-spacing: -0.025em; color: var(--ink); }
    .form-card .hint { color: var(--muted); font-size: 14px; margin-bottom: 20px; }
    .field { margin-bottom: 14px; }
    .field label { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-bottom: 6px; }
    .field input[type="text"],
    .field input[type="tel"] {
      width: 100%;
      font: inherit;
      font-size: 15px;
      padding: 12px 14px;
      border: 1px solid var(--border);
      border-radius: 10px;
      background: #fff;
      color: var(--text);
      transition: border-color .15s ease;
    }
    .field input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(12,116,189,.18); }
    .consent {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 13px;
      color: var(--muted);
      margin: 16px 0 18px;
      line-height: 1.5;
    }
    .consent input { margin-top: 3px; flex-shrink: 0; accent-color: var(--accent); }
    .consent a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
    .form-success {
      display: none;
      background: #EAF6FB;
      border: 1px solid #BFE2F1;
      color: var(--accent-dark);
      border-radius: 10px;
      padding: 14px 16px;
      font-size: 14px;
      margin-top: 14px;
    }
    .form-success.is-visible { display: block; }

    /* ===== Section heads ===== */
    .section-head { max-width: 60ch; margin-bottom: 44px; }
    .section-head p { color: var(--muted); margin-top: 12px; }

    /* ===== Services grid ===== */
    .cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }
    .card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
    }
    .card:hover { border-color: var(--accent-line); transform: translateY(-3px); box-shadow: var(--shadow-md); }
    .card .icon {
      width: 48px; height: 48px;
      border-radius: 13px;
      background: linear-gradient(150deg, var(--accent-soft), #F3F9FE);
      border: 1px solid var(--accent-line);
      color: var(--accent);
      display: grid; place-items: center;
      margin-bottom: 18px;
    }
    .card .icon.adv-emoji { font-size: 25px; line-height: 1; }
    a.card { color: inherit; }
    .card h3 { margin-bottom: 8px; }
    .card p { color: var(--muted); font-size: 14.5px; }

    /* ===== Check columns (виды / местность) + истории ===== */
    .check-cols { display: grid; grid-template-columns: 1fr; gap: 16px; }
    @media (min-width: 720px) { .check-cols { grid-template-columns: 1fr 1fr; gap: 24px; } }
    .check-col { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
    .check-col-h { font-size: 18px; margin-bottom: 14px; }
    .check-col-sub { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
    .check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
    .check-list li { font-size: 14.5px; color: var(--muted); padding-left: 20px; position: relative; }
    .check-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent-line); }
    .check-list a { color: var(--accent); font-weight: 600; }
    .check-list a:hover { color: var(--accent); }
    .check-list--towns { grid-template-columns: repeat(2, 1fr); gap: 10px 14px; }
    .check-list--towns li { padding-left: 18px; }
    .check-more { margin-top: 22px; }
    .check-towns { margin-top: 18px; display: flex; flex-wrap: wrap; align-items: center; gap: 9px 10px; }
    .check-towns-h { font-size: 14px; font-weight: 600; color: var(--text); margin-right: 4px; }
    .check-towns a { border: 1px solid var(--border); background: #fff; border-radius: 999px; padding: 7px 14px; font-size: 14px; color: var(--accent); transition: border-color .15s ease, color .15s ease; }
    .check-towns a:hover { border-color: var(--accent); color: var(--accent); }
    .check-towns .is-current { border: 1px solid var(--border); background: var(--bg-soft); border-radius: 999px; padding: 7px 14px; font-size: 14px; color: var(--muted); font-weight: 600; cursor: default; }
    .story-loc { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: 999px; padding: 3px 11px; margin-bottom: 12px; }
    .research-card { display: flex; flex-direction: column; }
    .rc-tags { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 13.5px; font-weight: 600; color: var(--ink); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
    .rc-row { margin-bottom: 12px; }
    .rc-row:last-child { margin-bottom: 0; }
    .rc-k { display: block; font-size: 13px; font-weight: 600; color: var(--accent); margin-bottom: 3px; }
    .rc-row p { font-size: 14px; color: var(--muted); margin: 0; }
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
    @media (min-width: 640px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
    .stat { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow-sm); }
    .stat-n { font-size: clamp(34px, 5vw, 46px); font-weight: 700; color: var(--accent); line-height: 1; letter-spacing: -0.02em; }
    .stat-l { margin-top: 8px; color: var(--muted); font-size: 15px; font-weight: 500; }
    .story-card h3 { margin-bottom: 12px; }
    .story-card p { margin-bottom: 8px; font-size: 14px; color: var(--muted); }
    .review-card { display: flex; flex-direction: column; }
    .rev-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
    .rev-who { min-width: 0; }
    .rev-name { font-size: 15.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.01em; }
    .rev-loc { font-size: 13px; color: var(--muted); margin-top: 2px; }
    .rev-stars { flex-shrink: 0; font-size: 13.5px; letter-spacing: 1px; color: #F5A623; line-height: 1.4; }
    .rev-text { font-size: 14.5px; color: var(--text); line-height: 1.62; margin-bottom: 14px; }
    .rev-foot { margin-top: auto; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
    .rev-date { font-weight: 500; }
    .rev-verified { display: inline-flex; align-items: center; gap: 4px; font-weight: 600; color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: 999px; padding: 2px 9px; }
    .story-card p b { color: var(--text); font-weight: 600; }
    .story-card p:last-child { margin-bottom: 0; }

    /* ===== Price table ===== */
    .price-wrap { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; box-shadow: var(--shadow-sm); }
    table.price { width: 100%; border-collapse: collapse; }
    table.price caption { text-align: left; padding: 18px 22px 14px; color: var(--muted); font-size: 14px; }
    table.price th, table.price td { padding: 18px 22px; text-align: left; }
    table.price thead th {
      font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em;
      color: var(--muted); font-weight: 600; background: var(--bg-soft);
      border-bottom: 1px solid var(--border);
    }
    table.price tbody tr + tr td { border-top: 1px solid var(--border); }
    table.price .name { font-weight: 600; }
    table.price .name small { display: block; font-weight: 400; color: var(--muted); font-size: 13px; margin-top: 2px; }
    table.price .price-val { font-weight: 700; white-space: nowrap; text-align: right; color: var(--text); }
    table.price .price-val span { color: var(--muted); font-weight: 400; font-size: 13px; }
    .price-note { color: var(--muted); font-size: 13px; margin-top: 16px; }
    @media (max-width: 560px) {
      table.price th, table.price td { padding: 15px 16px; }
      table.price caption { padding: 15px 16px 12px; }
      table.price .name { font-size: 15px; }
      table.price .price-val { font-size: 15px; }
    }

    /* ===== Advantages ===== */
    .adv-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
    .adv { display: flex; gap: 16px; }
    .adv .icon { flex-shrink: 0; width: 48px; height: 48px; border-radius: 13px; background: linear-gradient(150deg, var(--accent-soft), #F3F9FE); border: 1px solid var(--accent-line); color: var(--accent); display: grid; place-items: center; }
    .adv h3 { margin-bottom: 6px; }
    .adv p { color: var(--muted); font-size: 14.5px; }

    /* ===== Steps (timeline) ===== */
    .steps { list-style: none; margin: 0; padding: 0; max-width: 780px; }
    .step {
      display: grid;
      grid-template-columns: 48px 1fr;
      column-gap: 22px;
      padding-bottom: 30px;
      position: relative;
    }
    .step:not(:last-child)::before {
      content: "";
      position: absolute;
      left: 23px; top: 50px; bottom: -2px;
      width: 2px;
      background: linear-gradient(var(--accent-line), var(--border));
    }
    .step .num {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(150deg, var(--accent-soft), #F3F9FE);
      border: 1px solid var(--accent-line);
      color: var(--accent);
      font-weight: 700;
      font-size: 18px;
      display: grid; place-items: center;
      position: relative; z-index: 1;
    }
    .step-body { padding-top: 9px; }
    .step h3 { margin-bottom: 8px; }
    .step p { color: var(--muted); font-size: 15px; }

    /* ===== FAQ ===== */
    .faq { max-width: 760px; }
    .faq details {
      border-bottom: 1px solid var(--border);
      padding: 4px 0;
    }
    .faq summary {
      cursor: pointer;
      list-style: none;
      padding: 22px 44px 22px 0;
      font-weight: 600;
      font-size: 17px;
      position: relative;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after {
      content: "";
      position: absolute;
      right: 6px; top: 50%;
      width: 11px; height: 11px;
      border-right: 2px solid var(--accent);
      border-bottom: 2px solid var(--accent);
      transform: translateY(-65%) rotate(45deg);
      transition: transform .2s ease;
    }
    .faq details[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
    .faq .answer { color: var(--muted); padding: 0 44px 22px 0; font-size: 15px; }

    /* ===== Contacts ===== */
    .contacts-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
    .contact-list { display: grid; gap: 24px; margin: 28px 0 0; }
    .contact-item { display: flex; gap: 14px; }
    .contact-item .icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(150deg, var(--accent-soft), #F3F9FE); border: 1px solid var(--accent-line); color: var(--accent); display: grid; place-items: center; }
    .contact-item .k { font-size: 13px; color: var(--muted); margin-bottom: 2px; }
    .contact-item .v { font-weight: 600; font-size: 17px; }
    .contact-item .v:hover { color: var(--accent); }

    /* ===== Footer ===== */
    .site-footer { border-top: 1px solid var(--border); padding: 48px 0; background: var(--bg-soft); }
    .footer-inner { display: grid; gap: 24px; }
    .footer-contacts { font-size: 14px; color: var(--muted); margin: 0; }
    .footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 20px; align-items: center; }
    .footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
    .footer-links a { font-size: 14px; color: var(--accent); }
    .footer-links a:hover { color: var(--accent); }
    .disclaimer { color: var(--muted); font-size: 13px; max-width: 80ch; line-height: 1.6; }
    .copyright { color: var(--muted); font-size: 13px; }

    /* ===== Responsive (mobile-first → up) ===== */
    @media (max-width: 1000px) {
      .nav { display: none; }
      .burger { display: block; }
      .header-inner { gap: 10px; }
      .logo { font-size: 18px; }
      .logo svg { display: none; }        /* декоративную каплю прячем — освобождаем место под телефон+бургер */
      .logo small { display: none; }
      .header-actions { gap: 10px; }
      /* Телефон — заметная кнопка «позвонить» прямо в шапке (главная мобильная конверсия) */
      .header-actions .phone {
        display: inline-flex; align-items: center; gap: 7px;
        padding: 12px 15px; min-height: 44px; border-radius: 999px;
        background: var(--accent); color: #fff; font-size: 13px; line-height: 1;
        box-shadow: 0 5px 14px -5px rgba(12,116,189,.55);
      }
      .header-actions .phone:hover { color: #fff; }
      .header-actions .phone::before {
        content: ""; width: 15px; height: 15px; flex-shrink: 0; background: currentColor;
        -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8Z'/%3E%3C/svg%3E") center/contain no-repeat;
                mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.6.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.4c.6 0 1 .4 1 1 0 1.3.2 2.5.6 3.6.1.3 0 .7-.2 1L6.6 10.8Z'/%3E%3C/svg%3E") center/contain no-repeat;
      }
      .nav.is-open {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        position: fixed;
        top: 0; right: 0; bottom: 0; left: auto;
        width: min(86vw, 360px);
        background: #fff;
        border-left: 1px solid var(--border);
        box-shadow: -18px 0 48px -24px rgba(15,42,56,.45);
        padding: 76px 22px calc(24px + env(safe-area-inset-bottom));
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 60;
      }
      .nav.is-open a { display: flex; align-items: center; min-height: 52px; padding: 12px 4px; width: 100%; border-bottom: 1px solid var(--border); font-size: 16px; color: var(--accent); }
      .nav.is-open a:last-child { border-bottom: none; }
      .nav.is-open .phone { display: block; color: var(--accent); }
      .nav.is-open .nav-cta { display: grid; gap: 10px; margin-top: auto; padding-top: 20px; border-bottom: none; }
      .nav.is-open .nav-cta .btn { min-height: 48px; font-size: 16px; border-bottom: none; }
      .nav-backdrop { position: fixed; inset: 0; background: rgba(14,42,56,.44); z-index: 49; }
      .nav-backdrop[hidden] { display: none; }
      .nav.is-open .nav-close { display: grid; place-items: center; position: absolute; top: 12px; right: 14px; width: 44px; height: 44px; border: 0; background: transparent; font-size: 30px; line-height: 1; color: var(--muted); cursor: pointer; z-index: 2; }
      .nav.is-open .nav-close:active { color: var(--ink); }
    }

    @media (max-width: 560px) {
      .header-actions .btn { display: none; } /* CTA — в меню и в герое; не даём шапке переполняться */
    }

    @media (min-width: 720px) {
      .cards { grid-template-columns: repeat(2, 1fr); }
      .adv-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 32px; }
    }

    /* Планшет: hero в 2 колонки раньше, чтобы не растягивался в одну широкую (фидбэк «размер адаптировать») */
    @media (min-width: 760px) {
      .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
    }
    @media (min-width: 980px) {
      .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 56px; }
      .cards { grid-template-columns: repeat(3, 1fr); }
      .contacts-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      * { transition: none !important; }
    }
    /* ===== Symptoms ===== */
    .symptom { display: flex; flex-direction: column; }
    .symptom .cause { color: var(--muted); font-size: 14.5px; margin-bottom: 12px; }
    .symptom .check { font-size: 14px; color: var(--text); margin-top: auto; }
    .symptom .check b { font-weight: 600; }
    .symptom-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; color: var(--accent); font-weight: 600; font-size: 14px; transition: gap .15s ease; }
    .symptom-link:hover { gap: 11px; }

    /* ===== Service areas ===== */
    .areas-lead { color: var(--muted); margin: -20px 0 28px; max-width: 62ch; }
    .area-chips { display: flex; flex-wrap: wrap; gap: 10px; }
    .area-chips span { border: 1px solid var(--border); background: #fff; border-radius: 999px; padding: 9px 16px; font-size: 14.5px; color: var(--text); }
    .areas-note { color: var(--muted); font-size: 13px; margin-top: 22px; line-height: 1.6; }
    .areas-note b { color: var(--text); font-weight: 600; }

    /* ===== Segments selector ===== */
    .seg-switch { display: inline-flex; gap: 6px; padding: 6px; background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 30px; }
    .seg-btn { font: inherit; font-weight: 600; font-size: 15px; padding: 11px 22px; border: 0; background: transparent; color: var(--muted); border-radius: 8px; cursor: pointer; transition: background-color .15s ease, color .15s ease; }
    .seg-btn.is-active { background: var(--accent); color: #fff; }
    .seg-panel { display: none; }
    .seg-panel.is-active { display: block; animation: segfade .25s ease; }
    @keyframes segfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
    .seg-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 26px; }
    .seg-item { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; }
    .seg-item .icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(150deg, var(--accent-soft), #F3F9FE); border: 1px solid var(--accent-line); color: var(--accent); display: grid; place-items: center; }
    .seg-item h3 { margin-bottom: 5px; }
    .seg-item p { color: var(--muted); font-size: 14px; }
    @media (min-width: 720px) { .seg-grid { grid-template-columns: repeat(2, 1fr); } }

    /* ===== District map ===== */
    .map-wrap { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; margin-bottom: 8px; }
    .map-svg { background: linear-gradient(180deg, #FBFDFF, var(--bg-soft)); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow-sm); }
    .map-svg svg { width: 100%; height: auto; max-width: 440px; display: block; margin: 0 auto; }
    .okrug-shape { pointer-events: none; }
    .hex { cursor: pointer; outline: none; }
    .hex .reg { stroke: #fff; stroke-width: 1.2; transition: opacity .15s ease, stroke .15s ease, stroke-width .15s ease; }
    .hex:hover .reg, .hex:focus .reg { opacity: .78; stroke: var(--accent); stroke-width: 1.8; }
    .hex.is-active .reg { stroke: var(--accent-dark); stroke-width: 2.6; }
    .map-labels circle { fill: #fff; stroke: var(--accent-dark); stroke-width: 1.6; }
    .map-labels circle.main { fill: var(--accent); }
    .map-labels text { fill: var(--ink); font-size: 12px; font-weight: 600; dominant-baseline: middle; paint-order: stroke; stroke: #fff; stroke-width: 3.2px; }
    .map-labels text.main { font-size: 13px; }
    .map-info { background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; align-self: start; }
    .map-info .mi-name { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
    .map-info .mi-row { display: flex; gap: 8px; font-size: 14.5px; margin-bottom: 8px; }
    .map-info .mi-row b { color: var(--text); font-weight: 600; white-space: nowrap; } .map-info .mi-row span { color: var(--muted); }
    .map-info .mi-hint { color: var(--muted); font-size: 14px; }
    .map-info .btn { margin-top: 16px; }
    @media (min-width: 860px) { .map-wrap { grid-template-columns: 1.05fr .95fr; gap: 40px; } }
    /* Urgent band */
    .urgent-band { display: flex; flex-wrap: wrap; gap: 14px 22px; align-items: center; justify-content: space-between; border: 1px solid var(--accent); border-radius: var(--radius); padding: 18px 24px; margin: 24px 0; background: #F4FBFE; }
    .urgent-band .ub-txt { font-size: 15px; line-height: 1.5; } .urgent-band .ub-txt b { color: var(--text); }
    .urgent-band .ub-badge { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--accent); }
    .areas-sublist { font-size: 13px; color: var(--muted); margin: 4px 0 12px; }

    /* ===== Lab / trust (placeholders) ===== */
    .lab-photos { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 26px; }
    @media (min-width: 720px) { .lab-photos { grid-template-columns: repeat(3, 1fr); } }
    .lab-ph { aspect-ratio: 2 / 1; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(160deg, var(--accent-soft), #F3F9FE); overflow: hidden; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; text-align: center; padding: 20px; }
    .lab-ph svg { width: 42px; height: 42px; color: var(--accent); }
    .lab-ph span { font-size: 14px; font-weight: 600; color: var(--ink); }
    @media (min-width: 720px) { .lab-ph { aspect-ratio: 4 / 3; } }
    .lab-docs { display: grid; grid-template-columns: 1fr; gap: 16px; }
    @media (min-width: 720px) { .lab-docs { grid-template-columns: repeat(2, 1fr); } }
    .lab-doc { display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; background: #fff; }
    .lab-doc .icon { flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(150deg, var(--accent-soft), #F3F9FE); border: 1px solid var(--accent-line); color: var(--accent); display: grid; place-items: center; }
    .lab-doc h3 { margin-bottom: 4px; }
    .lab-doc p { color: var(--muted); font-size: 14px; }
    .lab-note { margin-top: 22px; font-size: 13px; color: var(--muted); line-height: 1.6; }
    .lab-note b { color: var(--text); }

    /* ============================================================
       МОБИЛЬНАЯ ОПТИМИЗАЦИЯ (70% трафика — телефоны)
       Всё ниже либо новые селекторы, либо ограничено @media/hover:none,
       поэтому десктоп не затрагивается.
       ============================================================ */

    /* Тач-фидбек: убрать серую вспышку + нажатые состояния только на тач-устройствах */
    a, button, summary, .btn, .card, .seg-btn, .check-towns a, .area-chips span, input[type="checkbox"] { -webkit-tap-highlight-color: transparent; }
    @media (hover: none) {
      .btn:active { transform: scale(.97); }
      .btn--primary:active { box-shadow: var(--shadow-md); }
      .card:active { transform: scale(.99); border-color: var(--accent-line); }
      .seg-btn:active, .check-towns a:active, .faq summary:active { opacity: .7; }
      .header-actions .phone:active { transform: scale(.96); }
    }

    /* Якорь не прячется под липкой шапкой */
    section[id], .form-card[id] { scroll-margin-top: 88px; }

    /* Safe-area (после viewport-fit=cover): поля-«гаттеры» и вырез сверху */
    .container { padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
    .site-header { padding-top: env(safe-area-inset-top); }

    /* Тяжёлый SVG карты округа рендерим лениво (только главная, ниже сгиба) */
    .map-svg { content-visibility: auto; contain-intrinsic-size: 0 480px; }

    /* Меню открыто: фон не скроллится, нижняя панель убирается.
       Снимаем backdrop-filter шапки — иначе она containing block и запирает fixed-панель
       под подложкой. Закрытие — крестиком внутри панели (.nav-close) / тапом по фону / Esc. */
    body.menu-open { overflow: hidden; }
    body.menu-open .mbar { display: none; }
    body.menu-open .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; }
    .nav-close { display: none; }
    /* CTA-блок в мобильном меню; на десктопе скрыт (в горизонтальном nav не нужен) */
    .nav-cta { display: none; }

    /* Липкая нижняя панель действий (thumb-zone): звонок + заказ */
    .mbar { display: none; }
    @media (max-width: 760px) {
      body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
      .mbar {
        display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr); gap: 10px;
        position: fixed; left: 0; right: 0; bottom: 0; z-index: 79;
        padding: 9px 14px calc(9px + env(safe-area-inset-bottom));
        background: rgba(255,255,255,.92);
        backdrop-filter: saturate(180%) blur(12px);
        -webkit-backdrop-filter: saturate(180%) blur(12px);
        border-top: 1px solid var(--border);
        box-shadow: 0 -8px 24px -18px rgba(15,42,56,.5);
      }
      .mbar .btn { min-height: 52px; border-radius: 12px; font-size: 15px; padding: 12px 10px; }
      /* поднять только КНОПКУ чата над липкой панелью. Открытую панель НЕ трогаем:
         на телефоне она во весь экран и сама перекрывает бар; если поднять ей bottom,
         верх с крестиком ✕ уезжает за пределы экрана и чат нельзя закрыть. */
      .avc-btn { bottom: calc(72px + env(safe-area-inset-bottom)) !important; }
      /* полноэкранная чат-панель: шапку с крестиком уводим ниже выреза/статус-бара */
      .avc-head { padding-top: calc(15px + env(safe-area-inset-top)); }
    }

    /* iOS не зумит при фокусе, если инпут ≥16px */
    @media (max-width: 768px) {
      .field input[type="text"], .field input[type="tel"] { font-size: 16px; }
      .check-towns a, .check-towns .is-current, .area-chips span { padding: 10px 16px; min-height: 44px; display: inline-flex; align-items: center; }
      .check-towns { gap: 10px 10px; }
      .consent { padding: 6px 0; }
      .consent input { width: 20px; height: 20px; margin-top: 1px; }
      .footer-links { gap: 4px 22px; }
      .footer-links a { padding: 11px 0; display: inline-block; }
    }

    /* Читаемость и вёрстка на узких экранах */
    @media (max-width: 560px) {
      .card p, .symptom .cause, .seg-item p, .adv p, .check-list li, .rev-text, .story-card p { font-size: 15.5px; }
      h1, h2, .form-title { letter-spacing: -0.015em; }
      .price-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      /* Телефон в шапке — только иконка (полный номер не влезает на узких экранах → раньше распирал шапку и обрезал контент слева). Номер остаётся в липкой панели и меню. Иконка центрируется абсолютно, чтобы скрытый текст не смещал её. */
      .header-actions .phone { width: 44px; padding: 0; gap: 0; font-size: 0; border-radius: 50%; position: relative; overflow: hidden; }
      .header-actions .phone::before { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 20px; height: 20px; }
      /* Кнопки могут переноситься — длинный текст («Подробнее — все виды…», «Заказать анализ» в узкой панели) больше не распирает страницу вбок */
      .btn { white-space: normal; }
    }

  

    /* ===== Article / Hub (info-hub) ===== */
    .article-wrap { max-width: 800px; }
    .breadcrumbs { font-size: 13px; color: var(--muted); margin-bottom: 22px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
    .breadcrumbs a { color: var(--accent); } .breadcrumbs a:hover { color: var(--accent); }
    .breadcrumbs span { color: #C4D2DB; }
    .article-head { margin-bottom: 28px; }
    .article-head h1 { margin: 10px 0 12px; font-size: clamp(28px, 4.5vw, 42px); }
    .article-meta { color: var(--muted); font-size: 14px; }
    .article { font-size: 16.5px; line-height: 1.72; color: #22333c; }
    .article > p:first-child { font-size: 18px; color: var(--text); }
    .article h2 { font-size: 24px; margin: 36px 0 12px; }
    .article h3 { font-size: 18px; margin: 24px 0 8px; }
    .article p { margin: 0 0 16px; }
    .article ul, .article ol { margin: 0 0 16px; padding-left: 22px; }
    .article li { margin-bottom: 8px; }
    .article a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
    .article strong { color: var(--text); }
    /* Выравнивание текста статей по ширине + перенос по слогам (фидбэк Сергея «текст отцентровать») */
    .article, .sym-body { text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
    .article h1, .article h2, .article h3, .sym-body h3 { text-align: left; hyphens: manual; }
    /* Фото симптом-блока — в одну ширину с текстом (было во всю ширину контейнера) */
    .sym-photo { max-width: 760px; }
    .article table { width: 100%; border-collapse: collapse; margin: 8px 0 22px; font-size: 15px; }
    .article th, .article td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
    .article thead th { background: var(--bg-soft); font-weight: 600; }
    .cta-band { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; justify-content: space-between; background: var(--bg-soft); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin: 44px 0 32px; }
    .cta-band h3 { margin-bottom: 6px; } .cta-band p { color: var(--muted); font-size: 14.5px; max-width: 48ch; }
    .related h3 { margin-bottom: 12px; } .related ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
    .related a { color: var(--accent); font-weight: 500; } .related a:hover { text-decoration: underline; }
    /* Hub */
    .tag { display: inline-block; font-size: 12px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
    .post-card { display: flex; flex-direction: column; }
    .post-card h3 { margin-bottom: 8px; font-size: 18px; }
    .post-card p { color: var(--muted); font-size: 14.5px; margin-bottom: 14px; }
    .post-card .more { margin-top: auto; color: var(--accent); font-weight: 600; font-size: 14px; }
    .photo-strip { display: grid; grid-template-columns: 1fr; gap: 14px; margin: 6px 0 10px; }
    .photo-strip figure { margin: 0; }
    .photo-strip img, .photo-strip figure > svg { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); border: 1px solid var(--border); background: var(--bg-soft); display: block; }
    .photo-strip figcaption { font-size: 12px; color: var(--muted); margin-top: 6px; }
    @media (min-width: 720px) { .photo-strip { grid-template-columns: repeat(3, 1fr); } }
    .hub-group + .hub-group { margin-top: 52px; }
    .hub-group > h2 { font-size: 22px; margin-bottom: 20px; }
    /* Программы-аккордеон */
    .prog-acc { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; margin: 10px 0 14px; background: #fff; box-shadow: var(--shadow-sm); }
    .prog-acc details + details { border-top: 1px solid var(--border); }
    .prog-acc summary { cursor: pointer; list-style: none; display: flex; flex-wrap: wrap; align-items: baseline; gap: 4px 12px; padding: 18px 48px 18px 22px; position: relative; font-size: 16.5px; color: var(--ink); }
    .prog-acc summary::-webkit-details-marker { display: none; }
    .prog-acc summary b { font-weight: 600; }
    .prog-acc summary .cnt { color: var(--muted); font-weight: 500; font-size: 14px; }
    .prog-acc summary .pr { margin-left: auto; color: var(--accent); font-weight: 700; white-space: nowrap; }
    .prog-acc summary::after { content: ""; position: absolute; right: 22px; top: 23px; width: 9px; height: 9px; border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); transition: transform .2s ease; }
    .prog-acc details[open] summary::after { transform: rotate(-135deg); }
    .prog-acc .prog-body { padding: 0 22px 20px; }
    .prog-acc .prog-who { color: var(--muted); font-size: 14px; margin: 0 0 12px; }
    .prog-list { columns: 2; column-gap: 30px; margin: 0; padding-left: 20px; }
    @media (max-width: 560px) { .prog-list { columns: 1; } }
    .prog-list li { margin-bottom: 6px; font-size: 14.5px; break-inside: avoid; }
    .prog-list a { color: var(--accent); text-decoration: none; border-bottom: 1px dashed var(--accent-line); }
    .prog-list a:hover { border-bottom-style: solid; }
    .article h2[id], .article h3[id] { scroll-margin-top: 88px; }
