  #promo{display:block; height:0; margin:0; padding:0;}

:root{
    /* AI-RULES v3 tokens — warm editorial cream, one accent, quiet type contrast by weight only */
    --cream:#F4EFE3;
    --cream-deep:#E8DFC8;
    --rose:#C9A253;
    /* Было #8C6A2E — 4.34:1 на --cream, ниже AA (4.5:1) для мелкого текста
       (.eyebrow, ссылки-стрелки в карточках). Затемнили на ~11%: тот же
       тёплый бронзовый акцент на глаз, но 5.25:1 на cream / 4.53:1 на
       cream-deep — проходит WCAG 1.4.3 везде, где токен используется. */
    --rose-deep:#7C5E28;
    --rose-pale:#EADFC0;
    --brown:#1E1912;
    --brown-mid:rgba(30,25,18,.72);
    /* Было .55 — 3.75:1 на --cream (hero__reassure, foot-disclaimer), ниже
       AA. .61 даёт 4.51:1, разница в тоне почти не заметна. */
    --brown-soft:rgba(30,25,18,.61);
    --line:rgba(30,25,18,.14);
    /* Единственный новый цвет в системе — сигнал живого статуса «открыто
       сейчас» в hero, не декоративный акцент. 5.02:1 на --pulse-bg. */
    --pulse:#4F6B4A;
    --pulse-bg:#E7EEE3;
    --shadow: none;
    --ease: cubic-bezier(.22,1,.36,1);
    --r-sm: 4px;
  }
  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth; font-size:18px; -webkit-text-size-adjust:100%; text-size-adjust:100%; overflow-x:hidden;}
  body{
    font-family:'Onest', sans-serif;
    color:var(--brown);
    background:var(--cream);
    line-height:1.7;
    font-size:18px;
    font-weight:400;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img,svg{display:block; max-width:100%;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  h1,h2,h3,h4{
    font-family:'Onest', sans-serif;
    font-weight:600;
    color:var(--brown);
    letter-spacing:-.02em;
    line-height:0.94;
    text-wrap:balance;
  }
  .container{
    width:100%;
    max-width:1180px;
    margin:0 auto;
    padding:0 28px;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:13px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--rose-deep);
    font-weight:600;
    margin-bottom:14px;
  }
  .eyebrow::before{
    content:"";
    width:26px; height:1px;
    background:var(--rose-deep);
    display:inline-block;
  }
  /* Two button types only, per CTA-01: solid pill / transparent hairline pill.
     Hover carries a directional fill sweep, not just a colour swap (CTA-05),
     with desynchronised layers (CTA-06): fill 500ms, label 320ms. */
  .btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:17px 34px;
    border-radius:999px;
    font-size:16px;
    font-weight:600;
    letter-spacing:0;
    cursor:pointer;
    border:1px solid transparent;
    overflow:hidden;
    isolation:isolate;
    min-height:44px;
    white-space:nowrap;
  }
  .btn::before{
    content:"";
    position:absolute; inset:0; z-index:-1;
    transform:scaleX(0); transform-origin:left;
    transition:transform 500ms var(--ease);
  }
  .btn{transition:color 320ms var(--ease);}
  .btn-solid{background:var(--brown); color:var(--cream);}
  .btn-solid::before{background:var(--rose-deep);}
  .btn-solid:hover::before{transform:scaleX(1);}
  .btn-outline, .btn-ghost{
    background:transparent;
    border-color:var(--brown);
    color:var(--brown);
  }
  .btn-outline::before, .btn-ghost::before{background:var(--brown);}
  .btn-outline:hover, .btn-ghost:hover{color:var(--cream);}
  .btn-outline:hover::before, .btn-ghost:hover::before{transform:scaleX(1);}

  /* ===== HEADER ===== */
  /* Раньше здесь стоял backdrop-filter:blur() на подложке шапки — эффект
     «матового стекла» при скролле. Убрали: header sticky и активен на каждой
     странице весь скролл целиком, а backdrop-filter пересчитывается на
     каждом кадре и заметно подтормаживал скролл, особенно на слабых
     телефонах. Непрозрачный фон визуально почти не отличается, а нагрузки
     на рендер больше нет. */
  header{
    position:sticky; top:0; z-index:50;
    background:transparent;
    border-bottom:1px solid var(--line);
  }
  header::before{
    content:"";
    position:absolute; inset:0; z-index:-1;
    background:var(--cream);
  }
  .nav-row{
    display:flex; align-items:center; justify-content:space-between;
    /* padding-top/bottom, не шорткод — .nav-row делит элемент с .container
       (class="container nav-row"), а .container уже задаёт padding:0 20px.
       Шорткод padding:18px 0 здесь раньше обнулял тот горизонтальный отступ
       на каждом брейкпоинте, и на 320–360px бургер утыкался прямо в край
       экрана без единого пикселя воздуха. */
    padding-top:18px; padding-bottom:18px;
  }
  .logo{
    display:flex; align-items:center; gap:12px;
  }
  .logo-mark{
    width:44px; height:44px;
    display:flex; align-items:center; justify-content:center;
  }
  .logo-mark img{width:100%; height:100%; object-fit:contain;}
  .logo-text{
    font-family:'Onest', sans-serif;
    font-size:20px; font-weight:600; letter-spacing:-.01em; line-height:1.1;
  }
  .logo-text small{
    display:block;
    font-family:'Onest', sans-serif;
    font-size:11px;
    letter-spacing:.18em;
    text-transform:uppercase;
    color:var(--brown-mid);
    font-weight:400;
    margin-top:2px;
  }
  nav.main-links{display:flex; gap:32px;}
  nav.main-links a{
    font-size:15.5px;
    font-weight:400;
    color:var(--brown-mid);
    transition:color 250ms var(--ease);
  }
  nav.main-links a:hover{color:var(--rose-deep);}
  /* Полная стилизация — в @media(max-width:1480px) ниже, вместе с остальной
     мобильной раскладкой меню; на широких экранах этот блок не нужен, там
     поиск/звонок/whatsapp и так помещаются в саму шапку. */
  .drawer-contact{display:none;}
  .head-actions{display:flex; align-items:center; gap:18px;}
  .head-phone{
    display:inline-flex; align-items:center; gap:8px;
    font-size:15.5px; font-weight:600; white-space:nowrap;
    padding:11px 18px 11px 14px; border-radius:999px;
    border:1px solid var(--line); color:var(--brown);
    transition:background 250ms var(--ease), border-color 250ms var(--ease), color 250ms var(--ease);
  }
  .head-phone svg{width:15px; height:15px; min-width:15px; color:var(--rose-deep); transition:color 250ms var(--ease);}
  .head-phone:hover{background:var(--brown); border-color:var(--brown); color:var(--cream);}
  .head-phone:hover svg{color:var(--cream);}
  .head-call{
    display:none;
    align-items:center; justify-content:center;
    width:44px; height:44px; min-width:44px; border-radius:50%;
    background:var(--rose-pale); color:var(--brown);
  }
  .head-call svg{width:19px; height:19px;}
  .head-whatsapp{
    display:flex; align-items:center; justify-content:center;
    width:44px; height:44px; min-width:44px; border-radius:50%;
    background:var(--rose-pale); color:var(--brown);
    transition:background 250ms var(--ease), color 250ms var(--ease);
  }
  .head-whatsapp svg{width:19px; height:19px;}
  .head-whatsapp:hover{background:#25D366; color:#fff;}
  .head-call:hover{background:var(--rose);}
  /* Компактная иконка-версия Telegram-кнопки для ≤640px (стили — в мобильном
     блоке ниже); на широких экранах помещается текстовая пилюля, иконка не нужна. */
  .head-telegram-icon{display:none;}
  .menu-toggle{
    display:none;
    position:relative;
    width:48px; height:48px;
    align-items:center; justify-content:center;
    background:none; border:none; cursor:pointer;
    z-index:70;
  }
  .menu-toggle span{
    position:absolute;
    width:24px; height:2.5px; background:var(--brown);
    border-radius:2px;
    transition:transform .25s var(--ease), opacity .2s var(--ease), top .25s var(--ease);
  }
  .menu-toggle span:nth-child(1){top:17px;}
  .menu-toggle span:nth-child(2){top:23px;}
  .menu-toggle span:nth-child(3){top:29px;}
  .menu-toggle.open span:nth-child(1){top:23px; transform:rotate(45deg);}
  .menu-toggle.open span:nth-child(2){opacity:0;}
  .menu-toggle.open span:nth-child(3){top:23px; transform:rotate(-45deg);}

  .menu-backdrop{
    display:none;
    position:fixed; inset:0;
    background:rgba(60,44,37,.35);
    z-index:60;
  }
  .menu-backdrop.open{display:block;}

  /* ===== ПРОТОТИП — быстрый переход по разделам, только мобильный =====
     Свёрнутая горизонтальная лента якорей внутри sticky-шапки — на 320–640px
     страница ~9800px, и без неё единственный способ добраться до цен или
     контактов — пролистать все 8 секций подряд. */
  .quick-nav{display:none;}
  @media (max-width:640px){
    .quick-nav{
      display:flex; gap:8px;
      overflow-x:auto; -webkit-overflow-scrolling:touch; scrollbar-width:none;
      padding:0 20px 12px;
    }
    .quick-nav::-webkit-scrollbar{display:none;}
    .quick-nav a{
      flex:none; white-space:nowrap;
      padding:8px 16px; border-radius:999px;
      border:1px solid var(--line); background:var(--cream-deep);
      font-size:13.5px; font-weight:600; color:var(--brown-mid);
    }
    .quick-nav a:active{background:var(--rose-pale); color:var(--brown);}
  }

  /* ===== HERO — Scheme C: 60/40 split, text left / photo right, optical =====
     centre empty. Text sits on the plain page background rather than over
     the photo — sidesteps legibility entirely (TASTE-01) instead of relying
     on scrims. On mobile the grid stacks to one column; the CTA still lands
     inside the first screen (HERO-02), the photo may run below the fold —
     a deliberate, named departure from HERO-01's strict 100svh on narrow
     screens, where a locked full-bleed height reads cramped rather than
     premium (direct user request, this session). */
  .hero--split{padding:56px 0;}
  .hero__grid{
    display:grid; grid-template-columns:0.95fr 1.05fr; gap:56px; align-items:center;
  }
  .hero__content{display:flex; flex-direction:column; align-items:flex-start; gap:20px;}
  .hero__eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    padding:8px 16px; border-radius:999px;
    border:1px solid var(--rose-deep); color:var(--rose-deep);
    font-size:12.5px; font-weight:600; letter-spacing:.14em; text-transform:uppercase;
  }
  .hero__title{
    font-family:'Playfair Display', serif; font-weight:600; color:var(--brown);
    font-size:clamp(2.6rem,4.6vw,4.4rem); line-height:.98; letter-spacing:-.01em;
    text-wrap:balance; hyphens:none;
  }
  .hero__lead{font-size:clamp(16px,1.3vw,18px); line-height:1.5; color:var(--brown-mid);}
  .hero__actions{display:flex; align-items:center; gap:16px; flex-wrap:wrap;}
  .hero__cta{padding:16px 30px;}
  .hero__reassure{font-size:14px; font-weight:500; color:var(--brown-soft);}
  /* ===== ПРОТОТИП — сигнатурный элемент на критику, см. переписку =====
     Живой статус «открыто/закрыто», посчитанный из настоящего графика
     клиники (пн–сб 9:30–20:00). Не декор: единственная новая краска
     (--pulse) в системе, и она обозначает факт, а не настроение. */
  .hero__status{
    display:inline-flex; align-items:center; gap:10px;
    padding:10px 18px; border-radius:999px;
    border:1px solid var(--line); background:var(--cream-deep);
    font-size:14.5px; font-weight:600; color:var(--brown-mid);
  }
  .hero__status-dot{
    width:8px; height:8px; min-width:8px; border-radius:50%;
    background:var(--brown-soft);
  }
  .hero__status.is-open{
    border-color:var(--pulse); background:var(--pulse-bg); color:var(--pulse);
  }
  .hero__status.is-open .hero__status-dot{
    background:var(--pulse);
    animation:heroPulse 2.2s var(--ease) infinite;
  }
  @keyframes heroPulse{
    0%{box-shadow:0 0 0 0 rgba(79,107,74,.45);}
    70%{box-shadow:0 0 0 8px rgba(79,107,74,0);}
    100%{box-shadow:0 0 0 0 rgba(79,107,74,0);}
  }
  @media (prefers-reduced-motion: reduce){
    .hero__status-dot{animation:none;}
  }
  .hero__media{position:relative;}
  .hero__media img{
    width:100%; aspect-ratio:4/5; object-fit:cover; object-position:56% 50%;
    display:block; border-radius:28px;
  }
  @media (max-width:980px){
    /* Текст остаётся первым (не фото) — иначе на невысоких мобильных
       вьюпортах (браузерная панель съедает часть высоты) кнопка записи
       уезжает за пределы экрана без скролла, а это MUST по HERO-02. */
    .hero__grid{grid-template-columns:1fr; gap:28px;}
    .hero__media img{aspect-ratio:16/11;}
  }
  @media (max-width:640px){
    .hero--split{padding:32px 0;}
    .hero__grid{gap:22px;}
    .hero__title{font-size:clamp(1.9rem,9vw,2.6rem);}
    .hero__lead{font-size:16px;}
    .hero__actions{gap:12px;}
    /* На этой ширине источник — reception.webp (портрет 3:4, см. <picture>
       в разметке), не exterior.webp — 1:1 показывает стойку, логотип и
       цветы, не режет кадр так туго, как тесный 4:3 у пейзажного фото. */
    .hero__media img{aspect-ratio:1/1; object-position:50% 22%; border-radius:20px;}
  }

  /* ===== ENTRANCE (staggered rise + blur — MOT-01/02) ===== */
  .rise{opacity:0; transform:translateY(28px); filter:blur(14px);}
  .is-in .rise{
    opacity:1; transform:none; filter:blur(0);
    transition:opacity 900ms var(--ease) var(--d,0ms),
               transform 900ms var(--ease) var(--d,0ms),
               filter 900ms var(--ease) var(--d,0ms);
  }
  @media (prefers-reduced-motion: reduce){
    .rise{opacity:1; transform:none; filter:none;}
  }

  /* ===== BENEFIT STRIP ===== */
  .benefit-strip{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line);
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line);
  }
  .benefit-strip .item{
    background:var(--cream);
    padding:22px 24px;
    display:flex; gap:16px; align-items:flex-start;
  }
  .benefit-strip .num{
    font-family:'Onest', sans-serif;
    font-size:16px;
    color:var(--rose-deep);
    border:1px solid var(--rose-deep);
    border-radius:50%;
    width:36px; height:36px;
    min-width:36px;
    display:flex; align-items:center; justify-content:center;
  }
  .benefit-strip h4{font-size:21px; margin-bottom:6px;}
  .benefit-strip p{font-size:17.5px; color:var(--brown-mid);}

  /* ===== SECTION HEADS ===== */
  section{padding:64px 0;}
  .section-head{
    display:flex; align-items:flex-end; justify-content:space-between;
    gap:24px; margin-bottom:32px; flex-wrap:wrap;
  }
  .section-head h2{font-size:clamp(32px,4.5vw,44px); max-width:560px;}
  .section-head p{color:var(--brown-mid); max-width:400px; font-size:18.5px;}
  .section-head.center{flex-direction:column; align-items:center; text-align:center;}
  .section-head.center h2{max-width:600px;}
  .section-head.center p{max-width:480px;}

  /* ===== SERVICES GRID — rounded photo-top cards =====
     Deliberate override on direct user request: text sits on a solid
     surface below the photo (not on top of it — was hard to read), and
     corners are generously rounded for a softer, more modern feel.
     This departs from AI-RULES IMG-04 (full-bleed, no rounded frame) and
     the flat 0/4/999 radius family by design. */
  /* Горизонтальные карточки-строки (по референсу клиента) — фото-кружок
     слева, заголовок+описание в середине, стрелка-переход справа. Стрелка
     и есть тот самый «эффект перехода»: сдвигается и темнеет при наведении/
     тапе, desync с фоном строки (CTA-05/06 — hover должен нести направление,
     не только смену цвета). */
  .services-list{display:flex; flex-direction:column; gap:10px;}
  .service-row{
    display:flex; align-items:center; gap:16px;
    background:var(--cream-deep);
    border-radius:18px;
    padding:12px 18px 12px 12px;
    transition:background 300ms var(--ease);
  }
  .service-row:hover{background:var(--rose-pale);}
  .service-row-media{
    flex:none; width:60px; height:60px; border-radius:50%;
    overflow:hidden; background:#fff;
  }
  .service-row-media img{
    width:100%; height:100%; object-fit:cover; display:block;
    transition:transform 500ms var(--ease);
  }
  .service-row:hover .service-row-media img{transform:scale(1.08);}
  /* health_beauty_drips.png — вертикальная упаковка, не процедурное фото: показываем
     целиком на белом фоне, чтобы не срезать текст на пакете. */
  .service-row-media.contain{display:flex; align-items:center; justify-content:center;}
  .service-row-media.contain img{width:auto; height:70%; object-fit:contain;}
  .service-row-body{
    flex:1; min-width:0;
    display:flex; flex-direction:column; gap:2px;
  }
  .service-row-title{
    font-family:'Onest', sans-serif; font-weight:600; font-size:15.5px; line-height:1.25;
    letter-spacing:-.005em; color:var(--brown);
  }
  .service-row-desc{
    font-size:12.5px; line-height:1.4; color:var(--brown-mid);
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  .service-row-arrow{
    flex:none; color:var(--rose-deep);
    transition:transform 380ms var(--ease);
  }
  .service-row:hover .service-row-arrow{transform:translateX(4px);}

  /* ===== PROCEDURES LIST ===== */
  .procedures{
    background:var(--cream-deep);
  }
  .proc-list{display:flex; flex-direction:column; gap:6px;}
  /* Reveal-on-hover row — idea taken from sm-estetica.ru's direction cards:
     the photo is invisible at rest (just a plain row) and fades in on hover
     with a dark gradient under it, text flipping to white. */
  .proc-row{
    position:relative; overflow:hidden;
    display:flex; align-items:center; justify-content:space-between;
    background:transparent;
    border-radius:20px;
    padding:22px 22px;
    gap:16px;
    flex-wrap:wrap;
    transition:background 300ms var(--ease);
  }
  .proc-row:not(:has(.proc-row-media)):hover{background:var(--cream);}
  .proc-row-media{
    position:absolute; inset:0; z-index:0; opacity:0;
    transition:opacity 450ms var(--ease);
  }
  .proc-row-media img{width:100%; height:100%; object-fit:cover; display:block;}
  .proc-row-shadow{
    position:absolute; inset:0; z-index:1; opacity:0;
    background:linear-gradient(115deg, rgba(20,16,11,.8) 24%, rgba(20,16,11,.2) 88%);
    transition:opacity 450ms var(--ease);
  }
  .proc-row:hover .proc-row-media, .proc-row:hover .proc-row-shadow{opacity:1;}
  .proc-row > div{position:relative; z-index:2;}
  .proc-row h4{
    font-size:22px; font-weight:600; margin-bottom:4px;
    transition:color 300ms var(--ease);
  }
  .proc-row p{
    font-size:17px; color:var(--brown-mid); max-width:520px;
    transition:color 300ms var(--ease);
  }
  .proc-row:hover h4, .proc-row:hover p{color:#fff;}
  .proc-cta{
    position:relative; z-index:2;
    font-size:16px; font-weight:500;
    background:var(--rose-pale);
    padding:12px 22px;
    border-radius:999px;
    white-space:nowrap;
    transition:background 250ms var(--ease), color 250ms var(--ease);
  }
  .proc-cta:hover{background:var(--rose);}
  .proc-row:hover .proc-cta{background:#fff; color:var(--brown);}
  .proc-row:hover .proc-cta:hover{background:var(--cream-deep);}

  /* ===== STATS ===== */
  .stats-band{
    background:var(--brown);
    color:var(--cream);
    padding:44px 0;
  }
  .stats-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    text-align:center;
  }
  .stats-grid .stat-num{
    font-family:'Onest', sans-serif;
    font-size:48px;
    color:var(--rose);
    margin-bottom:6px;
  }
  .stats-grid .stat-label{font-size:16.5px; color:#D9C9C0; letter-spacing:.03em;}

  /* ===== DARK STATEMENT ===== */
  .statement{
    background:var(--brown);
    color:var(--cream);
    padding:64px 0;
    text-align:center;
    position:relative;
    overflow:hidden;
  }
  .statement h2{
    color:var(--cream);
    font-size:clamp(30px,4.4vw,48px);
    max-width:760px;
    margin:0 auto 18px;
  }
  .statement p{color:#CBB7AC; max-width:520px; margin:0 auto 22px; font-size:18.5px;}
  /* On the dark statement band the hairline pill needs cream borders/text,
     not brown-on-brown (invisible). */
  .statement .btn-outline, .statement .btn-ghost{border-color:var(--cream); color:var(--cream);}
  .statement .btn-outline::before, .statement .btn-ghost::before{background:var(--cream);}
  .statement .btn-outline:hover, .statement .btn-ghost:hover{color:var(--brown);}
  .drop-glow{
    position:absolute; left:50%; top:20px; transform:translateX(-50%);
    width:220px; height:220px; opacity:.5;
  }

  /* ===== PROMOTIONS ===== */
  .promo-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
  }
  .promo-card{
    border-radius:20px;
    padding:22px 20px;
    background:linear-gradient(160deg, var(--rose-pale), var(--cream));
    border:1px solid var(--line);
    min-height:190px;
    display:flex; flex-direction:column; justify-content:space-between;
    transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  }
  .promo-card:hover{transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--rose-deep);}
  .promo-card h3{font-size:23.5px; margin-bottom:8px;}
  .promo-card p{font-size:17px; color:var(--brown-mid);}
  .promo-card .proc-cta{align-self:flex-start; margin-top:14px;}

  /* ===== WHY US ===== */
  /* Флагманская карточка-хайлайт над обычной сеткой причин — выделяет
     александритовый лазер Candela Pro‑U (США) как конкурентное преимущество
     клиники, а не прячет его строкой текста среди прочего оборудования. */
  .why-feature{
    display:flex; align-items:stretch; gap:28px;
    background:var(--cream); border-radius:26px;
    padding:22px; margin-bottom:16px;
    transition:transform .35s var(--ease);
  }
  .why-feature:hover{transform:translateY(-4px);}
  .why-feature-media{
    flex:0 0 min(340px, 38%); border-radius:20px; overflow:hidden;
    position:relative;
  }
  .why-feature-media img{width:100%; height:100%; object-fit:cover; display:block; min-height:220px;}
  .why-feature-body{
    flex:1; display:flex; flex-direction:column; align-items:flex-start;
    justify-content:center; gap:10px; padding:8px 12px 8px 0;
  }
  .why-feature-badge{
    font-size:12.5px; font-weight:700; letter-spacing:.04em; text-transform:uppercase;
    color:var(--rose-deep); background:var(--rose-pale);
    border-radius:999px; padding:6px 14px;
  }
  .why-feature-body h3{font-size:clamp(22px,2.4vw,28px); line-height:1.15;}
  .why-feature-body p{font-size:17px; line-height:1.55; color:var(--brown-mid); max-width:56ch;}
  /* Было inline-flex — flex-row кладёт свг отдельной колонкой СПРАВА от
     текстового блока, а не сразу после последнего слова. На 1 строке это
     незаметно, а как только «Смотреть цены на лазерную эпиляцию» переносится
     на 2 строки, стрелка повисает где-то у правого края, оторванная от
     слов. Обычный инлайн-поток переносится вместе со словами всегда. */
  .why-feature-cta{
    display:block; max-width:fit-content;
    font-size:16px; font-weight:600; color:var(--brown); margin-top:4px;
    transition:color .25s var(--ease);
  }
  .why-feature-cta svg{
    display:inline-block; vertical-align:-2px; margin-left:8px;
    transition:transform .25s var(--ease), margin-left .25s var(--ease);
  }
  .why-feature:hover .why-feature-cta{color:var(--rose-deep);}
  .why-feature:hover .why-feature-cta svg{transform:translateX(2px); margin-left:12px;}

  .why-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:16px;
  }
  .why-card{padding:16px; border-radius:20px; transition:transform .3s var(--ease), background .3s var(--ease);}
  .why-card:hover{transform:translateY(-4px); background:var(--cream);}
  .why-num{
    font-family:'Onest', sans-serif;
    font-size:16px;
    color:var(--rose-deep);
    margin-bottom:10px;
  }
  .why-card h4{font-size:21px; margin-bottom:6px;}
  .why-card p{font-size:17.5px; color:var(--brown-mid);}

  /* ===== ABOUT ===== */
  .about{background:var(--cream-deep);}
  .about-wrap{
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:32px;
    align-items:center;
  }
  .about-visual{
    aspect-ratio:4/5;
    border-radius:20px;
    background:var(--brown);
    display:flex; align-items:center; justify-content:center;
    position:relative;
    overflow:hidden;
    padding:40px;
  }
  .about-visual img{width:78%; height:auto;}
  .about-text p{color:var(--brown-mid); font-size:18.5px; margin-bottom:12px;}

  /* ===== CTA BAND ===== */
  .cta-band{text-align:center; padding:48px 0;}
  .cta-band h2{font-size:clamp(26px,3.6vw,36px); margin-bottom:18px;}

  /* ===== FAQ ===== */
  .faq-list{max-width:760px; margin:0 auto; display:flex; flex-direction:column; gap:10px;}
  .faq-item{
    background:var(--cream-deep);
    border:1px solid var(--line);
    border-radius:20px;
    padding:4px 22px;
  }
  .faq-q{
    display:flex; align-items:center; justify-content:space-between;
    padding:16px 0; cursor:pointer; font-size:19.5px; font-weight:500;
    gap:20px;
  }
  .faq-q .plus{
    width:24px; height:24px; min-width:24px;
    border-radius:50%; border:1px solid var(--rose-deep);
    display:flex; align-items:center; justify-content:center;
    font-size:16px; color:var(--rose-deep);
    transition:transform .25s;
  }
  .faq-item.open .plus{transform:rotate(45deg);}
  .faq-a{
    max-height:0; overflow:hidden;
    color:var(--brown-mid); font-size:17.5px;
    transition:max-height .3s var(--ease), padding .3s var(--ease);
  }
  .faq-item.open .faq-a{max-height:280px; padding-bottom:22px;}


  /* ===== PRICE CARDS (сводка цен на главной) ===== */
  .price-cards-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:16px;
    margin-bottom:36px;
  }
  .price-card{
    display:flex; flex-direction:column;
    background:var(--cream-deep); border:1px solid var(--line); border-radius:20px;
    padding:22px 22px 18px; transition:transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  }
  .price-card:hover{transform:translateY(-4px); box-shadow:var(--shadow); border-color:var(--rose-deep);}
  .price-card h3{font-size:20px; margin-bottom:12px; line-height:1.25;}
  .price-card-rows{display:flex; flex-direction:column; gap:8px; margin-bottom:14px; flex:1;}
  .price-card-row{
    display:flex; align-items:baseline; justify-content:space-between; gap:10px;
    font-size:15.5px; color:var(--brown-mid);
  }
  .price-card-row span:last-child{
    font-family:'Onest', sans-serif; font-weight:600; font-size:19px; color:var(--rose-deep); white-space:nowrap;
  }
  .price-card-link{
    font-size:15px; font-weight:500; color:var(--brown);
    display:inline-flex; align-items:center; gap:6px;
    padding-top:12px; border-top:1px solid var(--line);
  }
  .price-card-link svg{width:14px; height:14px; min-width:14px; transition:transform 320ms var(--ease);}
  .price-card:hover .price-card-link{color:var(--rose-deep);}
  .price-card:hover .price-card-link svg{transform:translateX(3px);}
  .price-card-consult p{font-size:15.5px; color:var(--brown-mid); margin-bottom:14px; flex:1;}
  .epil-price-toggle{margin-bottom:36px;}
  .epil-price-toggle > summary{
    cursor:pointer; list-style:none; display:flex; align-items:center; justify-content:space-between;
    background:var(--cream-deep); border:1px solid var(--line); border-radius:20px; padding:18px 24px;
    font-size:17px; font-weight:500; color:var(--brown);
  }
  .epil-price-toggle > summary::-webkit-details-marker{display:none;}
  .epil-toggle-cta{
    display:inline-flex; align-items:center; gap:8px;
    font-size:14.5px; font-weight:400; color:var(--rose-deep);
  }
  .epil-toggle-caret{
    width:7px; height:7px;
    border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
    transform:rotate(45deg); transition:transform 250ms var(--ease);
  }
  .epil-price-toggle[open] .epil-toggle-caret{transform:rotate(-135deg);}
  .epil-price-toggle .epil-price-body{padding-top:20px;}

  /* ===== PRICE LIST ===== */
  .price-tabs{
    display:flex; gap:10px; flex-wrap:wrap;
    margin-bottom:18px;
  }
  .price-tab{
    padding:13px 21px;
    border-radius:999px;
    border:1px solid var(--line);
    background:var(--cream-deep);
    font-size:16.5px;
    font-weight:500;
    color:var(--brown-mid);
    cursor:pointer;
    white-space:nowrap;
  }
  .price-tab.active{
    background:var(--brown);
    border-color:var(--brown);
    color:var(--cream);
  }
  .price-panel{display:none;}
  .price-panel.active{display:block;}
  .price-group{
    background:var(--cream-deep);
    border:1px solid var(--line);
    border-radius:20px;
    padding:6px 22px;
    margin:20px 0 14px;
    clear:both;
  }
  .price-group h4{
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:.12em;
    color:var(--rose-deep);
    font-family:'Onest', sans-serif;
    font-weight:500;
    padding:14px 0 6px;
  }
  .price-row{
    display:flex; align-items:baseline; justify-content:space-between;
    gap:16px;
    padding:10px 0;
    border-top:1px solid var(--line);
    font-size:17.5px;
  }
  .price-row .p-name{color:var(--brown); flex:1; min-width:0;}
  .price-row .p-cost{
    font-weight:600; color:var(--rose-deep);
    white-space:nowrap; font-family:'Onest', sans-serif; font-size:20.5px;
  }
  .price-note{
    font-size:16px; color:var(--brown-mid);
    background:var(--cream-deep);
    border-radius:20px;
    padding:16px 20px;
    margin-top:6px;
  }

  /* ===== BEFORE / AFTER RESULT CARDS ===== */
  .ba-pair{
    display:flex; gap:8px; max-width:300px; margin:0 auto;
  }
  .ba-pair__card{
    flex:1 1 0; min-width:0; margin:0; border:1px solid var(--line); border-radius:14px;
    overflow:hidden; background:var(--cream-deep); box-shadow:var(--shadow);
  }
  .ba-pair__card img{display:block; width:100%; aspect-ratio:3/4; object-fit:cover;}
  .ba-pair__card figcaption{
    padding:5px; text-align:center; font-size:11.5px; font-weight:600; color:var(--brown-mid);
    border-top:1px solid var(--line); background:var(--cream);
  }
  .ba-pair-note{
    max-width:300px; margin:10px auto 0; font-size:13.5px; color:var(--brown-soft); text-align:center;
  }
  /* несколько примеров "до/после" подряд на одной странице */
  .ba-gallery{display:flex; flex-direction:column; gap:18px; align-items:center;}
  .ba-gallery-item{max-width:300px; width:100%;}
  .ba-gallery-item .ba-pair{margin:0;}
  .ba-gallery-label{
    font-size:13px; font-weight:600; text-transform:uppercase; letter-spacing:.06em;
    color:var(--rose-deep); margin-bottom:8px; text-align:center;
  }

  /* ===== REVIEWS ===== */
  .yandex-widget{
    max-width:720px;
    margin:0 auto;
    position:relative;
    height:560px;
    overflow:hidden;
    border-radius:20px;
    border:1px solid var(--line);
    background:var(--cream-deep);
  }
  .yandex-widget iframe{
    width:100%; height:100%; border:none; display:block;
  }
  /* Плитка-приглашение вместо сразу-загруженного iframe (см. index.html) —
     не занимает все 560px, пока не понадобился; сокращает и вес, и высоту
     страницы одновременно. */
  .yandex-widget:not(.is-loaded){height:200px;}
  .yandex-widget-facade{
    width:100%; height:100%;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:8px; padding:0 32px; border:none; background:none; cursor:pointer;
    font-family:'Onest', sans-serif; font-size:15px; font-weight:600; color:var(--brown);
    transition:background 250ms var(--ease);
  }
  .yandex-widget-facade:hover{background:var(--rose-pale);}
  .yandex-widget-facade svg{color:var(--rose-deep);}
  .yandex-widget-facade .hint{font-size:12.5px; font-weight:400; color:var(--brown-soft); text-align:center;}
  .yandex-widget-credit{
    box-sizing:border-box;
    position:absolute; left:0; bottom:8px; width:100%;
    text-align:center; padding:0 20px;
    font-family:'Onest', sans-serif; font-size:11px; color:#b3b3b3;
    text-decoration:none; overflow:hidden; text-overflow:ellipsis;
    white-space:nowrap; display:block;
  }

  /* ===== GALLERY ===== */
  .gallery-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
  }
  .gallery-item{
    display:block;
    border-radius:20px;
    overflow:hidden;
    border:1px solid var(--line);
    position:relative;
  }
  .gallery-item img{
    width:100%; height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s var(--ease);
  }
  .gallery-item:hover img{transform:scale(1.05);}
  .gallery-item.wide{grid-column:span 2; aspect-ratio:16/6;}
  .gallery-item:not(.wide){grid-column:span 1; aspect-ratio:3/4;}

  /* ===== FOOTER ===== */
  footer{background:var(--brown); color:#E9DDD5; padding:44px 0 20px;}
  .footer-top{
    display:grid;
    grid-template-columns:1.3fr 1fr 1fr;
    gap:28px;
    padding-bottom:28px;
    border-bottom:1px solid rgba(255,255,255,.12);
  }
  footer h4{color:#fff; font-size:13px; margin-bottom:18px; font-weight:600; font-family:'Onest', sans-serif; letter-spacing:.14em; text-transform:uppercase;}
  footer .foot-brand h3{color:#fff; font-size:28px; margin-bottom:12px;}
  footer .foot-brand p{font-size:17.5px; color:#C9BAB0; max-width:300px;}
  footer ul li{margin-bottom:11px; font-size:17.5px; color:#D6C7BD;}
  footer ul li a:hover{color:var(--rose);}
  .footer-map{
    margin-top:6px; height:180px; border-radius:16px; overflow:hidden;
    border:1px solid rgba(255,255,255,.14); background:rgba(0,0,0,.15);
  }
  .footer-map iframe{width:100%; height:100%; border:none; display:block;}
  .footer-map-facade{
    width:100%; height:100%;
    display:flex; flex-direction:column; align-items:center; justify-content:center;
    gap:6px; border:none; background:none; cursor:pointer;
    font-family:'Onest', sans-serif; font-size:13.5px; font-weight:600; color:#D6C7BD;
    transition:background 250ms var(--ease);
  }
  .footer-map-facade:hover{background:rgba(255,255,255,.06);}
  .footer-map-facade svg{color:var(--rose);}
  .footer-map-link{
    display:inline-block; margin-top:10px; font-size:14px; color:#D6C7BD;
    border-bottom:1px solid rgba(214,199,189,.35); text-decoration:none;
  }
  .footer-map-link:hover{color:var(--rose); border-bottom-color:var(--rose);}
  .foot-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding-top:16px; font-size:15.5px; color:#B7A99F; flex-wrap:wrap; gap:10px;
  }
  .foot-disclaimer{font-size:14.5px; color:#9C8C82; max-width:900px; margin-top:12px;}

  /* ===== LICENSES PAGE ===== */
  .licenses-page{
    padding:48px 0 64px;
    min-height:70vh;
  }
  .licenses-page h1{
    font-size:clamp(32px, 5vw, 44px);
    margin-bottom:12px;
  }
  .licenses-page .subtitle{
    color:var(--brown-mid);
    font-size:19px;
    max-width:620px;
    margin-bottom:32px;
  }
  .licenses-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:18px;
  }
  .license-card{
    background:var(--cream-deep);
    border:1px solid var(--line);
    border-radius:20px;
    padding:18px;
    text-align:left;
    transition:transform .3s var(--ease), box-shadow .3s var(--ease);
  }
  .license-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
  }
  .license-thumb{
    display:block;
    width:100%;
    aspect-ratio:3/4;
    overflow:hidden;
    border-radius:20px;
    margin-bottom:12px;
    border:1px solid var(--line);
    background:var(--cream-deep);
  }
  .license-thumb img{
    width:100%; height:100%;
    object-fit:cover;
    object-position:top;
    display:block;
    transition:transform .3s var(--ease);
  }
  .license-thumb:hover img{transform:scale(1.03);}
  .license-card h3{
    font-family:'Onest', sans-serif;
    font-size:21.5px;
    font-weight:600;
    margin-bottom:6px;
  }
  .license-meta{
    font-size:15px;
    color:var(--rose-deep);
    font-weight:500;
    margin-bottom:10px;
    letter-spacing:.02em;
  }
  .license-card p{
    font-size:17px;
    color:var(--brown-mid);
    margin-bottom:10px;
  }
  .license-pages{
    display:flex;
    gap:16px;
    font-size:15.5px;
  }
  .license-pages a{
    color:var(--rose-deep);
    text-decoration:underline;
    text-underline-offset:3px;
  }
  .license-pages a:hover{color:var(--brown);}
  .license-note{
    margin-top:24px;
    padding:16px 20px;
    background:var(--cream-deep);
    border:1px solid var(--line);
    border-radius:20px;
    font-size:17px;
    color:var(--brown-mid);
    line-height:1.7;
  }

  /* ===== NAV DROPDOWN (Услуги) ===== */
  .has-dropdown{position:relative;}
  .has-dropdown > .drop-trigger{
    display:inline-flex; align-items:center; gap:6px;
    font:inherit; font-size:17.5px; color:var(--brown-mid); background:none; border:none; cursor:pointer; padding:0;
  }
  .has-dropdown > .drop-trigger:hover{color:var(--rose-deep);}
  .has-dropdown > .drop-trigger .caret{
    width:7px; height:7px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
    transform:rotate(45deg); margin-top:-2px; transition:transform .2s;
  }
  .has-dropdown.open > .drop-trigger .caret{transform:rotate(-135deg); margin-top:2px;}
  .dropdown-panel{
    display:none; flex-direction:column;
    min-width:300px;
    background:var(--cream); border:1px solid var(--line); border-radius:20px;
    box-shadow:0 24px 48px -28px rgba(20,17,14,.35);
    padding:12px; position:absolute; top:calc(100% + 16px); left:0; z-index:80;
  }
  .dropdown-panel .drawer-label{
    font-size:12px; text-transform:uppercase; letter-spacing:.14em; color:var(--brown-soft);
    padding:12px 14px 6px;
  }
  .dropdown-panel a{
    padding:11px 14px; border-radius:20px; font-size:16px; color:var(--brown); display:block;
  }
  .dropdown-panel a:hover{background:var(--cream-deep); color:var(--rose-deep);}
  .has-dropdown.open .dropdown-panel{display:flex;}
  .dropdown-panel .drawer-divider{border-top:1px solid var(--line); margin:8px 6px;}
  .dropdown-panel a.nav-featured{
    background:var(--cream-deep); color:var(--brown); font-weight:600;
  }

  /* ===== DRAWER GROUP (свёрнутая "Косметология" в бургер-меню) ===== */
  .drawer-toggle{
    width:100%; display:flex; align-items:center; justify-content:space-between;
    font:inherit; background:none; border:none; padding:12px 14px 6px; cursor:default; text-align:left;
    font-size:12px; text-transform:uppercase; letter-spacing:.14em; color:var(--brown-soft);
  }
  .drawer-caret{
    width:7px; height:7px; border-right:1.5px solid currentColor; border-bottom:1.5px solid currentColor;
    transform:rotate(45deg); transition:transform .2s; display:none;
  }
  .drawer-subpanel{display:flex; flex-direction:column;}

  /* ===== BREADCRUMBS ===== */
  .breadcrumbs{font-size:14.5px; color:var(--brown-mid); padding:14px 0 0;}
  .breadcrumbs a{color:var(--brown-mid);}
  .breadcrumbs a:hover{color:var(--rose-deep);}
  .breadcrumbs span{color:var(--brown-soft); margin:0 8px;}

  /* ===== PAGE HERO (subpages) ===== */
  .page-hero{padding:18px 0 34px; text-align:left;}
  .page-hero h1{font-size:clamp(32px,4.6vw,48px); max-width:780px; margin-bottom:12px;}
  .page-hero p.lead{max-width:640px; margin:0; color:var(--brown-mid); font-size:19px;}

  /* ===== PAGE HERO SPLIT (двухколоночная шапка — используется на analizy.html, чтобы не пустовало место на широких экранах) ===== */
  .page-hero-split{padding-bottom:40px;}
  .page-hero-split-inner{display:flex; align-items:center; gap:48px; flex-wrap:wrap;}
  .page-hero-split-text{flex:1 1 420px; min-width:280px;}
  .page-hero-split-text .lead{max-width:520px;}
  /* flex:0 (без роста) вместо flex:1 — раньше колонка с фото растягивалась вслед
     за текстовой до ~700-730px и мелкие исходники (многие процедурные фото — не
     студийная съёмка, а присланные клиникой картинки среднего размера) заметно
     мылились при таком масштабировании. Теперь колонка держится ближе к своей
     базовой ширине, а освободившееся место просто отходит тексту. */
  .page-hero-split-visual{flex:0 1 360px; min-width:240px; display:flex; flex-direction:column; gap:14px;}
  /* Фото теперь в «паспарту» — рамка из фона карточки вокруг снимка, а не фото
     впритык к краям. Приём одновременно маскирует небольшую мягкость мелких
     исходников (меньше видимая область в кадре) и сам по себе выглядит как
     осознанный, а не случайный формат. */
  /* height:0 + padding-top в процентах вместо aspect-ratio — внутри
     flex-колонки (.page-hero-split-visual) высота от aspect-ratio не всегда
     успевала стать «определённой» до расчёта потомка, и карточка схлопывалась,
     наезжая на текст ниже. Процентный padding-top всегда считается от
     собственной ширины блока, без всякой гонки с flex — старый бронебойный
     приём именно для таких случаев. 62.5% = высота 10 при ширине 16 (16:10). */
  .page-hero-split-image{
    position:relative; flex:none;
    width:100%; height:0; padding-top:62.5%; border-radius:22px;
    border:1px solid var(--line); background:var(--cream-deep); box-shadow:var(--shadow);
  }
  .page-hero-split-image img{
    position:absolute; inset:10px; width:calc(100% - 20px); height:calc(100% - 20px);
    object-fit:cover; display:block; border-radius:14px;
  }
  .page-hero-split-stats{display:flex; gap:10px; flex-wrap:wrap;}
  .phs-stat{
    flex:1 1 0; min-width:0; background:var(--cream-deep); border:1px solid var(--line); border-radius:20px;
    padding:12px 12px; display:flex; flex-direction:column; gap:3px; overflow:hidden;
  }
  .phs-num{font-family:'Onest', sans-serif; font-weight:700; font-size:20px; color:var(--rose-deep); line-height:1.1;}
  .phs-stat span:last-child{
    font-size:11.5px; color:var(--brown-mid); line-height:1.3;
    overflow-wrap:break-word; word-break:normal; hyphens:auto;
  }
  @media (max-width:900px){
    .page-hero-split-inner{gap:28px;}
  }
  @media (max-width:640px){
    .page-hero-split{padding-bottom:30px;}
    .page-hero-split-inner{flex-direction:column; align-items:stretch; gap:20px;}
    .page-hero-split-text{flex:none; min-width:0;}
    /* На телефоне фото раньше растягивалось во всю ширину экрана и выглядело
       слишком крупным/тяжёлым перед текстом — теперь компактнее и по центру.
       Сужаем всю колонку (.page-hero-split-visual), а не только фото:
       padding-top у фото считается в процентах от ширины ЕГО контейнера,
       а не от своей собственной — если сузить только фото, пропорция снимка
       поедет. На страницах со статами (2010 / 13 / 4-5) плашки при таком
       сужении просто переносятся на 2 строки (flex-wrap уже включён) —
       не ломается, только становится компактнее вместе с фото. */
    .page-hero-split-visual{flex:none; min-width:0; width:66%; max-width:260px; margin:0 auto;}
    .page-hero-split-image{height:0; padding-top:68.75%;}
  }

  /* ===== CONTENT PROSE (subpages) ===== */
  .content-prose{max-width:820px;}
  .content-prose h2{font-size:clamp(26px,3.2vw,34px); margin:30px 0 12px; clear:both;}
  .content-prose h2:first-child{margin-top:0;}
  .content-prose h3{font-size:21px; margin:20px 0 10px; clear:both;}
  .content-prose p{color:var(--brown-mid); font-size:17.5px; margin-bottom:12px;}
  .content-prose .check-list{display:flex; flex-direction:column; gap:8px; margin:12px 0 18px;}
  .content-prose .check-list li{
    display:flex; gap:12px; font-size:17px; color:var(--brown-mid); align-items:flex-start;
  }
  .content-prose .check-list li::before{
    content:""; width:6px; height:6px; border-radius:50%; background:var(--rose-deep);
    margin-top:9px; min-width:6px;
  }
  .content-prose .check-list li a{color:var(--brown-mid); text-decoration:none; border-bottom:1px solid var(--line);}
  .content-prose .check-list li a:hover{color:var(--rose-deep); border-bottom-color:var(--rose-deep);}
  .content-hero-image{
    position:relative;
    float:right; width:240px; height:0; padding-top:180px; border-radius:20px; margin:4px 0 18px 26px; border:1px solid var(--line);
    background:var(--cream-deep); box-shadow:var(--shadow);
  }
  .content-hero-image img{
    position:absolute; inset:8px; width:calc(100% - 16px); height:calc(100% - 16px);
    object-fit:cover; display:block; border-radius:13px;
  }

  /* ===== LASER SPOTLIGHT (витрина флагманского аппарата на хабе раздела) ===== */
  .laser-spotlight{
    clear:both; display:flex; gap:26px; align-items:center;
    max-width:820px; margin:8px auto 30px;
    background:var(--cream-deep); border:1px solid var(--line); border-radius:22px;
    padding:26px; box-shadow:var(--shadow);
  }
  .laser-spotlight-media{
    flex:none; width:160px; aspect-ratio:3/4;
    display:flex; align-items:center; justify-content:center;
  }
  .laser-spotlight-media img{width:100%; height:100%; object-fit:contain;}
  .laser-spotlight-body{flex:1; min-width:0;}
  .laser-spotlight-eyebrow{
    font-size:12.5px; font-weight:600; text-transform:uppercase; letter-spacing:.1em;
    color:var(--rose-deep); margin-bottom:6px;
  }
  .laser-spotlight-body h3{font-size:22px; margin-bottom:8px; line-height:1.25;}
  .laser-spotlight-body > p{color:var(--brown-mid); font-size:16px; margin-bottom:18px;}
  .laser-spotlight-prices{display:flex; flex-wrap:wrap; gap:8px 26px; margin-bottom:20px;}
  .laser-spotlight-price{display:flex; flex-direction:column; gap:2px;}
  .laser-spotlight-price .p-name{font-size:13px; color:var(--brown-mid);}
  .laser-spotlight-price .p-cost{font-size:19px; font-weight:600; color:var(--rose-deep); font-family:'Onest', sans-serif;}
  @media (max-width:640px){
    .laser-spotlight{flex-direction:column; padding:20px; text-align:center;}
    .laser-spotlight-media{width:130px;}
    .laser-spotlight-prices{justify-content:center;}
  }

  /* ===== INDICATIONS / CONTRAINDICATIONS CARDS ===== */
  .indi-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin:20px 0 24px; align-items:start; clear:both;}
  .indi-card{border-radius:20px; padding:5px 20px 16px; border:1px solid; clear:both;}
  .indi-card.good{background:#EFF7ED; border-color:#BEE0B7;}
  .indi-card.bad{background:#FBECEA; border-color:#EAB9B1;}
  .indi-card h3{
    display:flex; align-items:center; gap:8px; font-family:'Onest', sans-serif;
    font-weight:600; font-size:19.5px; line-height:1.2; margin-bottom:12px;
  }
  .indi-card.good h3{color:#2E6B31;}
  .indi-card.bad h3{color:#A93A2E;}
  .indi-card h3 svg{width:17px; height:17px; min-width:17px;}
  .indi-card ul{display:flex; flex-direction:column; gap:10px; margin:0;}
  .indi-card li{display:flex; gap:8px; align-items:flex-start; font-size:15.5px; color:var(--brown-mid); line-height:1.45; margin:0; padding:0;}
  .indi-card li svg{min-width:16px; width:16px; height:16px; margin-top:2px;}
  .indi-card.good li svg{color:#3D8B41;}
  .indi-card.bad li svg{color:#C24B3D;}

  /* ===== STEPS LIST (нумерованные шаги процедуры) ===== */
  .steps-list{display:flex; flex-direction:column; gap:12px; margin:14px 0 22px; counter-reset:step;}
  .steps-list li{display:flex; gap:14px; align-items:flex-start; font-size:16.5px; color:var(--brown-mid); line-height:1.5; background:var(--cream-deep); border:1px solid var(--line); border-radius:20px; padding:13px 16px;}
  .steps-list li::before{
    counter-increment:step; content:counter(step);
    width:30px; height:30px; min-width:30px; border-radius:50%;
    background:var(--rose-pale); color:var(--rose-deep); font-family:'Onest', sans-serif; font-weight:700; font-size:15px;
    display:flex; align-items:center; justify-content:center;
  }

  /* ===== CHECK CARDS (карточная сетка вместо простых буллетов) ===== */
  .check-cards{display:grid; grid-template-columns:repeat(2,1fr); gap:10px; margin:14px 0 20px;}
  .check-cards li{
    display:flex; gap:10px; align-items:flex-start; background:var(--cream-deep); border:1px solid var(--line);
    border-radius:20px; padding:13px 16px; font-size:15.5px; color:var(--brown-mid); line-height:1.4;
  }
  .check-cards li::before{content:""; width:7px; height:7px; border-radius:50%; background:var(--rose-deep); margin-top:7px; min-width:7px;}
  @media (max-width:640px){
    .indi-grid{grid-template-columns:1fr; gap:12px; margin:16px 0 20px;}
    .check-cards{grid-template-columns:1fr; gap:8px;}
  }

  /* ===== RX NOTICE (противопоказания у инъекционных процедур) ===== */
  .rx-notice{
    display:flex; align-items:flex-start; gap:10px;
    background:var(--rose-pale); border:1px solid var(--rose-deep); border-radius:20px;
    padding:14px 18px; margin:24px 0 0;
    font-size:13px; font-weight:600; letter-spacing:.05em; text-transform:uppercase; line-height:1.5;
    color:var(--brown); clear:both;
  }
  .rx-notice svg{width:18px; height:18px; min-width:18px; margin-top:2px; color:var(--rose-deep);}
  @media (max-width:640px){
    .rx-notice{font-size:12px; padding:12px 14px; margin-top:18px;}
  }

  /* ===== EQUIPMENT CARD (фото аппарата) ===== */
  .equipment-card{
    display:flex; align-items:center; gap:16px; background:var(--cream-deep);
    border-radius:22px; padding:22px 24px; margin:0 0 18px;
  }
  .equipment-card .equip-photo{
    width:110px; height:110px; min-width:110px; border-radius:20px; overflow:hidden;
    background:var(--cream-deep); display:flex; align-items:center; justify-content:center;
  }
  .equipment-card .equip-photo img{width:100%; height:100%; object-fit:contain; display:block;}
  .equipment-card .equip-name{font-family:'Onest', sans-serif; font-weight:700; font-size:23px; color:var(--rose-deep); margin:0 0 4px; line-height:1.2;}
  .equipment-card .equip-desc{font-size:16px; color:var(--brown-mid); margin:0; line-height:1.4;}
  @media (max-width:640px){
    .equipment-card{flex-direction:row; align-items:center; gap:14px; padding:14px 16px;}
    .equipment-card .equip-photo{width:84px; height:84px; min-width:84px;}
    .equipment-card .equip-name{font-size:19px;}
    .equipment-card .equip-desc{font-size:14.5px;}
  }

  /* ===== КАПЕЛЬНИЦЫ (каталог) ===== */
  .drip-category{margin-bottom:44px;}
  .drip-category:last-child{margin-bottom:0;}
  .drip-cat-head{margin-bottom:20px;}
  .drip-cat-head .eyebrow{margin-bottom:6px;}
  .drip-cat-head h2{font-size:clamp(24px,3vw,30px);}
  .drip-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:46px 18px; margin-top:26px;}
  .drip-card{
    position:relative; overflow:visible;
    background:var(--cream-deep); border:1px solid var(--line); border-radius:20px; padding:20px 20px 22px;
    display:flex; flex-direction:column; transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  }
  .drip-card:hover{transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--rose-deep);}
  .drip-card-photo{
    position:absolute; top:-34px; left:-8px;
    width:76px; height:auto;
    filter:drop-shadow(0 5px 6px rgba(20,17,14,.2));
    pointer-events:none; z-index:2;
  }
  .drip-card.has-photo{padding-top:88px;}
  .drip-icon{
    width:52px; height:52px; border-radius:20px; background:var(--rose-pale);
    display:flex; align-items:center; justify-content:center; margin-bottom:14px;
  }
  .drip-icon svg{width:24px; height:24px;}
  .drip-card h3{font-size:21.5px; margin-bottom:8px; line-height:1.2;}
  .drip-card .drip-lead{font-size:15.5px; color:var(--brown-mid); margin-bottom:10px; flex:1;}
  .drip-price{
    font-family:'Onest', sans-serif; font-weight:700; font-size:20px; color:var(--rose-deep);
    margin-bottom:14px;
  }
  .drip-price span{font-family:'Onest', sans-serif; font-weight:400; font-size:13.5px; color:var(--brown-soft); margin-right:4px;}
  .drip-card .drip-tags{display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px;}
  .drip-card .drip-tags span{
    font-size:13px; padding:5px 12px; border-radius:999px; background:var(--rose-pale); color:var(--rose-deep);
  }
  .drip-card .drip-link{
    font-size:15px; font-weight:500; color:var(--brown); display:inline-flex; align-items:center; gap:6px;
    padding-top:12px; border-top:1px solid var(--line); margin-top:auto;
  }
  .drip-card:hover .drip-link{color:var(--rose-deep);}

  /* ===== КАПЕЛЬНИЦА — детальная страница (крупное фото в рамке, без наезда на текст) ===== */
  .drip-detail-hero{
    display:flex; align-items:center; gap:24px; background:var(--cream-deep);
    border-radius:24px; padding:26px 28px; margin:0 0 26px;
  }
  .drip-detail-hero .drip-photo{
    width:190px; height:190px; min-width:190px; border-radius:20px; overflow:hidden;
    background:var(--cream-deep); object-fit:contain; display:block; padding:10px;
  }
  .drip-detail-hero .drip-icon{margin-bottom:0; width:60px; height:60px; min-width:60px;}
  .drip-detail-hero .drip-icon svg{width:28px; height:28px;}
  .drip-detail-hero p{font-size:17px; color:var(--brown-mid); margin:0;}
  .drip-detail-hero .drip-price{font-size:27px; margin-bottom:6px;}
  .drip-detail-hero .drip-price span{font-size:15px;}
  .drip-compo{display:flex; flex-wrap:wrap; gap:8px; margin:4px 0 4px;}
  .drip-compo span{
    font-size:14.5px; padding:8px 15px; border-radius:999px; background:var(--cream-deep);
    color:var(--rose-deep); font-weight:500;
  }
  .drip-cross{font-size:16px; color:var(--brown-mid); margin-bottom:12px;}
  .drip-cross a{color:var(--rose-deep); border-bottom:1px solid var(--rose-pale);}
  .drip-cross a:hover{border-bottom-color:var(--rose-deep);}

  /* ===== КОНСУЛЬТАЦИЯ ВРАЧА (баннер-уведомление) ===== */
  .drip-consult-notice{
    display:flex; align-items:flex-start; gap:10px;
    background:var(--cream-deep); border:1px solid var(--line); border-radius:20px;
    padding:14px 18px; margin:18px 0 0; font-size:15px; color:var(--brown-mid); line-height:1.5;
  }
  .drip-consult-notice svg{width:18px; height:18px; min-width:18px; margin-top:2px; color:var(--rose-deep);}
  .drip-consult-notice strong{color:var(--brown); font-weight:600;}
  .drip-consult-notice.buy-notice{background:var(--rose-pale); border-color:var(--rose-deep);}

  /* ===== ANGIOFARM PRODUCT CARDS — как у капельниц, фото в кружке справа ===== */
  .af-pgrid{display:grid; grid-template-columns:repeat(3,1fr); gap:18px; margin-top:26px;}
  .af-pcard{
    display:flex; flex-direction:column; background:var(--cream-deep);
    border-radius:22px; padding:22px 22px 20px; color:inherit;
    transition:transform 300ms var(--ease), box-shadow 300ms var(--ease);
  }
  .af-pcard:hover{transform:translateY(-5px); box-shadow:0 20px 34px -20px rgba(20,17,14,.28);}
  .af-pcard-top{display:block; overflow:hidden;} /* clearfix для float-кружка */
  .af-pcard-circle{
    float:right; margin:0 0 12px 14px;
    width:88px; height:88px; min-width:88px; border-radius:50%;
    background:#fff; display:flex; align-items:center; justify-content:center;
    box-shadow:0 8px 18px -8px rgba(20,17,14,.28); overflow:hidden;
  }
  .af-pcard-circle img{width:80%; height:80%; object-fit:contain; transition:transform 400ms var(--ease);}
  .af-pcard:hover .af-pcard-circle img{transform:scale(1.08);}
  .af-pcard-title{display:block; font-size:21.5px; font-weight:600; color:var(--brown); line-height:1.2; margin-bottom:8px;}
  .af-pcard-desc{display:block; font-size:15px; color:var(--brown-mid); line-height:1.4;}
  .af-pcard-price{
    font-family:'Onest', sans-serif; font-weight:700; font-size:20px; color:var(--rose-deep);
    margin-top:14px;
  }
  .af-pcard-tags{display:flex; flex-wrap:wrap; gap:6px; margin-top:14px;}
  .af-pcard-tags span{
    font-size:13px; padding:5px 12px; border-radius:999px; background:var(--rose-pale); color:var(--rose-deep);
  }
  .af-pcard-link{
    font-size:15px; font-weight:500; color:var(--brown); display:inline-flex; align-items:center; gap:6px;
    padding-top:12px; margin-top:14px; border-top:1px solid var(--line);
  }
  .af-pcard:hover .af-pcard-link{color:var(--rose-deep);}
  @media (min-width:641px) and (max-width:980px){
    .af-pgrid{grid-template-columns:repeat(2,1fr);}
  }
  @media (max-width:640px){
    .af-pgrid{grid-template-columns:1fr; gap:14px; margin-top:18px;}
    .af-pcard{padding:20px 20px 18px;}
    .af-pcard-circle{width:76px; height:76px; min-width:76px;}
    .af-pcard-title{font-size:19px;}
  }

  /* ===== ANGIOFARM — карточки на странице товара (состав/показания/применение) ===== */
  .af-info-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:14px;
    margin:26px 0 6px;
  }
  .af-info-card{
    background:var(--cream-deep); border-radius:20px; padding:20px 20px 22px;
    display:flex; flex-direction:column; gap:8px;
  }
  .af-info-num{
    font-size:12px; font-weight:600; letter-spacing:.1em; color:var(--rose-deep); text-transform:uppercase;
  }
  .af-info-card h3{font-size:17px; font-weight:600; margin:0; line-height:1.25;}
  .af-info-card p{font-size:14.5px; color:var(--brown-mid); line-height:1.55; margin:0;}

  /* Другие продукты линии — мини-карточки вместо простого списка ссылок */
  .af-related-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:10px; margin:18px 0 6px;
  }
  .af-related-card{
    display:flex; align-items:center; gap:12px; background:var(--cream-deep);
    border-radius:16px; padding:10px 14px 10px 10px; color:inherit;
    transition:transform 250ms var(--ease), box-shadow 250ms var(--ease);
  }
  .af-related-card:hover{transform:translateY(-3px); box-shadow:0 14px 24px -16px rgba(20,17,14,.28);}
  .af-related-media{
    width:52px; height:52px; min-width:52px; border-radius:50%; background:#fff;
    display:flex; align-items:center; justify-content:center; overflow:hidden;
  }
  .af-related-media img{width:76%; height:76%; object-fit:contain;}
  .af-related-title{font-size:13.5px; font-weight:600; color:var(--brown); line-height:1.3;}

  @media (max-width:900px){
    .af-info-grid{grid-template-columns:1fr;}
  }
  @media (max-width:640px){
    .af-related-grid{grid-template-columns:1fr;}
  }
  @media (min-width:641px) and (max-width:900px){
    .af-related-grid{grid-template-columns:repeat(2,1fr);}
  }

  @media (max-width:640px){
    .drip-grid{grid-template-columns:1fr; gap:40px 14px; margin-top:22px;}
    .drip-card-photo{width:66px; top:-28px; left:-6px; filter:drop-shadow(0 4px 5px rgba(20,17,14,.2));}
    .drip-card.has-photo{padding-top:76px;}
    .drip-detail-hero{padding:18px; gap:16px; flex-direction:column; align-items:flex-start; text-align:left;}
    .drip-detail-hero .drip-photo{width:100%; height:auto; max-height:220px; min-width:0;}
    .drip-detail-hero .drip-icon{width:50px; height:50px; min-width:50px;}
    .drip-category{margin-bottom:36px;}
    .drip-consult-notice{font-size:14px; padding:12px 14px;}
  }
  @media (min-width:641px) and (max-width:980px){
    .drip-grid{grid-template-columns:repeat(2,1fr);}
  }

  /* ===== SUB-SERVICE GRID ===== */
  .subservice-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin:6px 0 26px;}
  .subservice-card{
    background:var(--cream-deep); border:1px solid var(--line); border-radius:20px;
    padding:16px 18px; font-size:17px; color:var(--brown); font-weight:500;
  }
  .subservice-card:hover{border-color:var(--rose-deep); color:var(--rose-deep);}

  /* ===== RESPONSIVE ===== */
  /* Шапка переходит в компактный вид (бургер + иконка звонка) раньше, чем
     остальная сетка секций — иначе в промежутке ~980-1480px восьми пунктам
     меню, номеру телефона и кнопке Telegram физически не хватает места
     (полному навбару нужно ~1420-1445px по факту — 1480 даёт запас, чтобы
     кнопка Telegram не обрезалась горизонтальным скроллом на ноутбучных
     экранах вроде MacBook Air 13" в дефолтном 1280×800). */
  @media (max-width: 1480px){
    nav.main-links{
      display:flex; flex-direction:column;
      position:fixed; top:0; right:0;
      width:min(340px, 86vw); height:100vh; height:100dvh;
      background:var(--cream);
      padding:100px 30px 30px;
      gap:4px;
      box-shadow:-20px 0 50px -20px rgba(60,44,37,.35);
      transform:translateX(100%);
      transition:transform .3s var(--ease);
      z-index:65;
      overflow-y:auto;
    }
    nav.main-links.open{transform:translateX(0);}
    nav.main-links a{
      font-size:20px;
      padding:16px 4px;
      border-bottom:1px solid var(--line);
      color:var(--brown);
    }
    .dropdown-panel{
      position:static; box-shadow:none; border:none; padding:0;
      background:transparent; display:flex !important; margin-top:0; min-width:0;
    }
    .has-dropdown > .drop-trigger{display:none;}
    .has-dropdown{border-bottom:1px solid var(--line); padding-bottom:8px; margin-bottom:4px;}
    .dropdown-panel .drawer-divider{border-top:1px solid var(--line); margin:6px 4px 8px;}
    .dropdown-panel a{padding:11px 4px; font-size:18px; border-bottom:none !important; color:var(--brown);}
    .dropdown-panel a.nav-featured{padding:9px 12px; margin:2px 0 4px;}

    /* "Косметология" на мобильном — кликабельный аккордеон, свёрнут по умолчанию */
    .drawer-toggle{
      display:flex; text-transform:none; letter-spacing:normal; font-family:'Onest', sans-serif;
      font-size:19px; font-weight:500; color:var(--rose-deep); padding:16px 4px; cursor:pointer;
    }
    .drawer-caret{display:block; margin-top:0;}
    .drawer-group.open .drawer-caret{transform:rotate(-135deg);}
    .drawer-subpanel{
      max-height:0; overflow:hidden;
      transition:max-height .3s var(--ease);
    }
    .drawer-group.open .drawer-subpanel{max-height:600px;}
    .drawer-subpanel a{padding-left:16px;}
    .head-phone{display:none;}
    .head-call{display:flex;}
    .menu-toggle{display:flex;}

    /* Быстрые контакты вверху открытого меню — сюда переехали поиск/звонок/
       whatsapp с узких экранов, чтобы в самой шапке остались только
       Telegram и бургер (см. AI-RULES CTA-07 — минимум 44×44px на тап). */
    .drawer-contact{
      display:flex; gap:10px; margin-bottom:18px; padding-bottom:18px;
      border-bottom:1px solid var(--line);
    }
    .drawer-contact-btn{
      display:flex; align-items:center; justify-content:center;
      width:48px; height:48px; min-width:48px; border-radius:50%;
      background:var(--rose-pale); color:var(--brown); border:none; cursor:pointer;
      transition:background 250ms var(--ease), color 250ms var(--ease);
    }
    .drawer-contact-btn svg{width:20px; height:20px;}
    .drawer-contact-btn:hover{background:var(--rose);}
    .drawer-contact-btn[href^="https://wa.me"]:hover{background:#25D366; color:#fff;}
  }
  @media (max-width: 980px){
    .price-cards-grid{grid-template-columns:repeat(2,1fr);}
    .why-feature-media{flex-basis:280px;}
    .why-grid{grid-template-columns:repeat(2,1fr);}
    .about-wrap{grid-template-columns:1fr;}
    .gallery-grid{grid-template-columns:repeat(2,1fr);}
    .gallery-item.wide{grid-column:span 2;}
    .footer-top{grid-template-columns:1fr; gap:34px;}
    .licenses-grid{grid-template-columns:repeat(2, 1fr);}
  }
  @media (max-width: 640px){
    .container{padding:0 20px;}
    section{padding:40px 0;}
    .section-head{margin-bottom:22px; gap:12px;}
    .section-head h2, .section-head.center h2{font-size:28px; max-width:300px;}
    .section-head p{font-size:17.5px; max-width:none;}
    .nav-row{padding-top:14px; padding-bottom:14px;}
    .logo-mark{width:38px; height:38px;}
    .logo-text{font-size:18.5px;}
    .logo-text small{font-size:10px;}
    /* На телефоне в самой шапке остаётся только кнопка Telegram и бургер —
       поиск/звонок/whatsapp переехали в .drawer-contact внутри открытого
       меню (см. блок ниже), там у них полноразмерные 44px-кружки и не
       нужно бороться за место в одну строку с логотипом. */
    .head-actions{gap:8px;}
    /* .head-search-btn дублируется на кнопку поиска внутри .drawer-contact —
       скрываем именно версию в шапке (.head-actions), не обе. */
    .head-actions .head-search-btn, .head-call, .head-whatsapp{display:none;}
    /* Даже после починки паддинга (см. .nav-row выше) логотип + текстовая
       пилюля Telegram + бургер вместе не помещаются в 320–360px без сжатия
       бургера flexbox'ом ниже 44px. На такой ширине текстовая пилюля
       складывается в кружок-иконку — тот же приём, что уже есть у
       .head-whatsapp/.head-call, а не новый паттерн. */
    .head-telegram-pill{display:none;}
    .head-telegram-icon{
      display:flex; align-items:center; justify-content:center;
      width:44px; height:44px; min-width:44px; border-radius:50%;
      background:var(--rose-pale); color:var(--brown);
      transition:background 250ms var(--ease), color 250ms var(--ease);
    }
    .head-telegram-icon svg{width:19px; height:19px;}
    .head-telegram-icon:hover{background:#29A9EA; color:#fff;}
  }
  @media (max-width:400px){
    .logo{gap:8px;}
    .logo-text{font-size:16.5px;}
  }
  @media (max-width: 640px){
    .benefit-strip{grid-template-columns:1fr;}
    .benefit-strip .item{padding:16px 18px;}
    /* ПРОТОТИП: 9 одинаковых boxed-карточек подряд читались монотонно
       («выглядят однотипно» — отзыв клиента). Вместо сетки карточек —
       один сплошной прайс-лист (та же идиома, что уже есть в развёрнутом
       прайсе на эпиляцию ниже — .price-row/.p-name/.p-cost, просто не
       переиспользовалась здесь). Название слева, цена «от» справа,
       вся строка — тап-зона; детальные строки и футер-ссылка скрыты,
       они дублируются на странице услуги. Заодно короче по высоте. */
    .price-cards-grid{
      display:flex; flex-direction:column; gap:0;
      background:var(--cream-deep); border:1px solid var(--line); border-radius:18px;
      margin-bottom:22px; overflow:hidden;
    }
    .price-card{
      flex-direction:row; align-items:center; justify-content:space-between; gap:12px;
      background:none; border:none; border-radius:0;
      padding:15px 18px; border-bottom:1px solid var(--line);
      transition:background 200ms var(--ease);
    }
    .price-cards-grid .price-card:last-child{border-bottom:none;}
    .price-card:hover, .price-card:active{transform:none; border-color:var(--line); background:var(--rose-pale);}
    .price-card h3{font-size:15px; margin-bottom:0; line-height:1.3;}
    .price-card-rows{margin-bottom:0; gap:0; flex:none;}
    .price-card-row:not(:first-child){display:none;}
    .price-card-row span:first-child{display:none;}
    .price-card-row span:last-child{font-size:16px;}
    .price-card-link, .price-card-consult p{display:none;}
    .price-card::after{content:'›'; font-size:20px; color:var(--brown-soft); line-height:1;}
    .price-card-consult::after{content:'по консультации ›'; font-size:12.5px; font-weight:500; color:var(--brown-soft); white-space:nowrap;}
    .epil-price-toggle{margin-bottom:22px;}
    .epil-price-toggle > summary{padding:15px 18px; font-size:16px;}
    .epil-toggle-cta{font-size:13.5px;}
    .service-row{gap:12px; padding:10px 14px 10px 10px; border-radius:16px;}
    .service-row-media{width:50px; height:50px;}
    .service-row-title{font-size:14.5px;}
    .service-row-desc{font-size:13.5px;}
    .yandex-widget{height:520px;}
    .gallery-grid{grid-template-columns:1fr; gap:10px;}
    .gallery-item.wide{grid-column:span 1; aspect-ratio:4/3;}
    .gallery-item:not(.wide){aspect-ratio:4/3;}
    .stats-grid{grid-template-columns:1fr; gap:16px;}
    .stats-band{padding:28px 0;}
    .statement{padding:40px 0;}
    .promo-grid{grid-template-columns:1fr; gap:12px;}
    .why-feature{flex-direction:column; padding:16px; gap:16px; border-radius:22px;}
    .why-feature-media{flex-basis:auto; width:100%; aspect-ratio:16/10;}
    .why-feature-media img{min-height:0;}
    .why-feature-body{padding:0 4px 4px;}
    .why-feature-body h3{font-size:23px;}
    .why-grid{grid-template-columns:1fr; gap:12px;}
    .btn{width:100%;}
    .proc-row{flex-direction:column; align-items:flex-start;}
    .proc-row{padding:16px 18px;}
    .proc-row h4{font-size:20px;}
    .proc-row p{font-size:16px;}
    .price-group{padding:4px 16px; margin-bottom:10px;}
    .price-group h4{font-size:14.5px;}
    .price-row{font-size:17px; gap:10px; padding:9px 0;}
    .price-row .p-cost{font-size:19px;}
    .price-tabs{gap:8px; margin-bottom:14px;}
    .price-tab{padding:13px 17px; font-size:15px;}
    .faq-q{font-size:18px; padding:14px 0;}
    .licenses-grid{grid-template-columns:1fr; gap:14px;}
    .licenses-page{padding:32px 0 44px;}
    .licenses-page .subtitle{font-size:17.5px; margin-bottom:22px;}
    footer{padding:36px 0 18px;}
    footer .foot-brand h3{font-size:25px;}
    .footer-top{gap:22px; padding-bottom:20px;}
    .page-hero{padding:14px 0 24px;}
    .page-hero p.lead{font-size:17px;}
    .content-prose h2{font-size:24px; margin:22px 0 10px;}
    .content-prose h3{font-size:19px; margin:16px 0 8px;}
    .content-prose p{font-size:16.5px; margin-bottom:10px;}
    /* aspect-ratio, а не padding-top — тут ширина сама в процентах (60%), а
       padding-top в процентах считается от ширины РОДИТЕЛЯ, а не от своей
       собственной, так что пропорция уехала бы. aspect-ratio всегда берёт
       уже посчитанную собственную ширину — и это не flex-контейнер, так что
       гонки как у .page-hero-split-image тут нет. */
    .content-hero-image{float:none; width:60%; max-width:220px; height:auto; aspect-ratio:4/3; padding-top:0; margin:14px auto 20px;}
    .subservice-grid{grid-template-columns:1fr; gap:10px;}
    .breadcrumbs{font-size:13.5px; padding:10px 0 0;}
    .equipment-card{margin:0 0 12px;}
  }

  /* focus visibility */
  a:focus-visible, button:focus-visible{outline:2px solid var(--rose-deep); outline-offset:3px;}
  body.menu-open{overflow:hidden;}
  @media (prefers-reduced-motion: reduce){
    *{transition:none !important; scroll-behavior:auto !important;}
  }

  /* ===== SCROLL REVEAL (плавное появление блоков при прокрутке — главная) ===== */
  .reveal{opacity:0; transform:translateY(26px); transition:opacity .7s var(--ease), transform .7s var(--ease);}
  .reveal.in{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){
    .reveal{opacity:1; transform:none; transition:none;}
  }

  /* ===== DIRECTION CARDS (замена .check-list для списков процедур направления) ===== */
  .dir-cards-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin:20px 0 30px;
  }
  .dir-card{
    display:flex;
    flex-direction:column;
    gap:10px;
    background:var(--cream-deep);
    border:1px solid var(--line);
    border-radius:20px;
    padding:24px 22px;
    text-decoration:none;
    color:inherit;
    transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  }
  .dir-card:hover{transform:translateY(-6px); box-shadow:var(--shadow); border-color:var(--rose-deep);}
  .dir-card-title{
    font-family:'Onest', sans-serif;
    font-weight:600;
    font-size:21px;
    line-height:1.25;
    color:var(--brown);
    letter-spacing:.01em;
  }
  /* Тот же инлайн-фикс, что у .why-feature-cta — на случай переноса
     текста ссылки на 2 строки стрелка остаётся сразу после слов. */
  .dir-card-link{
    display:block; max-width:fit-content;
    margin-top:auto;
    padding-top:2px;
    font-size:15px;
    font-weight:500;
    color:var(--brown-soft);
    transition:color .25s var(--ease);
  }
  .dir-card-link svg{display:inline-block; vertical-align:-2px; margin-left:6px; transition:transform .25s var(--ease);}
  .dir-card:hover .dir-card-link{color:var(--rose-deep);}
  .dir-card:hover .dir-card-link svg{transform:translateX(3px);}
  .content-prose .dir-cards-grid{grid-template-columns:repeat(2,1fr);}
  @media (max-width: 980px){
    .dir-cards-grid{grid-template-columns:repeat(2,1fr);}
  }
  @media (max-width: 640px){
    /* .content-prose .dir-cards-grid (2 класса) весит больше, чем просто
       .dir-cards-grid (1 класс) — без явного дублирования селектора здесь
       мобильное правило проигрывало по специфичности и сетка оставалась
       в 2 колонки на телефоне, обрезая текст и вызывая горизонтальный скролл. */
    .dir-cards-grid, .content-prose .dir-cards-grid{grid-template-columns:1fr; gap:12px;}
    .dir-card{padding:20px 18px;}
  }

  /* ===== SUBSECTION TITLE (заголовок вне content-prose, во всю ширину контейнера) ===== */
  .subsection-title{
    font-family:'Onest', sans-serif; font-weight:600; font-size:clamp(26px,3.2vw,34px);
    color:var(--brown); margin:40px 0 8px; letter-spacing:.01em;
  }
  .subsection-lead{color:var(--brown-mid); font-size:16.5px; max-width:640px; margin:0 0 20px;}

  /* ===== PACKAGE CARDS (check-up комплексы анализов, широкие горизонтальные карточки) ===== */
  .package-list{display:flex; flex-direction:column; gap:16px; margin:0 0 8px;}
  .package-card-wide{
    background:var(--cream-deep); border:1px solid var(--line); border-radius:20px; padding:26px 28px;
    transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  }
  .package-card-wide:hover{transform:translateY(-3px); box-shadow:var(--shadow); border-color:var(--rose-deep);}
  .package-card-wide-top{
    display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap;
    margin-bottom:16px; padding-bottom:16px; border-bottom:1px solid var(--line);
  }
  .package-card-wide-title{display:flex; align-items:baseline; gap:12px; flex-wrap:wrap;}
  .package-card-wide-title h3{font-size:21px; line-height:1.25;}
  .package-card-wide-count{
    font-size:12.5px; font-weight:600; color:var(--rose-deep); background:var(--rose-pale);
    padding:4px 11px; border-radius:999px; white-space:nowrap;
  }
  .package-card-wide-actions{display:flex; align-items:center; gap:16px;}
  .package-card-wide-price{
    font-family:'Onest', sans-serif; font-weight:700; font-size:21px; color:var(--brown); white-space:nowrap;
  }
  .package-card-wide-tests{columns:250px 3; column-gap:30px;}
  .package-card-wide-tests li{
    font-size:14.5px; color:var(--brown-mid); line-height:1.5;
    display:flex; gap:8px; align-items:flex-start;
    break-inside:avoid; margin-bottom:9px;
  }
  .package-card-wide-tests li.extra{display:none;}
  .package-card-wide.expanded .package-card-wide-tests li.extra{display:flex;}
  .package-card-wide-toggle{
    display:inline-flex; align-items:center; gap:6px; margin-top:14px;
    font-size:13.5px; font-weight:600; color:var(--rose-deep);
    background:none; border:none; padding:0; cursor:pointer;
  }
  .package-card-wide-toggle:hover{color:var(--rose);}
  .package-card-wide-toggle svg{width:13px; height:13px; transition:transform .25s var(--ease);}
  .package-card-wide.expanded .package-card-wide-toggle svg{transform:rotate(180deg);}
  .package-card-wide-tests li::before{
    content:""; width:5px; height:5px; border-radius:50%; background:var(--rose-deep);
    margin-top:8px; min-width:5px;
  }

  /* ===== INFO LIST (компактные списки внутри аккордеона «Общая информация») ===== */
  .info-list{display:flex; flex-direction:column; gap:8px;}
  .info-list li{display:flex; gap:8px; align-items:flex-start; line-height:1.5;}
  .info-list li::before{
    content:""; width:5px; height:5px; border-radius:50%; background:var(--rose-deep);
    margin-top:9px; min-width:5px;
  }
  .info-list strong{color:var(--brown); font-weight:600;}
  .info-accordion .faq-item.open .faq-a{max-height:360px;}

  @media (max-width:640px){
    .subsection-title{margin:30px 0 6px;}
    .package-list{gap:12px;}
    .package-card-wide{padding:20px 18px;}
    .package-card-wide-title h3{font-size:18.5px;}
    .package-card-wide-price{font-size:18.5px;}
    .package-card-wide-tests{columns:1;}
    .package-card-wide-actions{width:100%; justify-content:space-between;}
  }

  /* ===== PROMO FAB (современный интерактивный плавающий виджет акций) ===== */
  .promo-fab{
    position:fixed; right:22px; bottom:22px; z-index:55;
    display:flex; flex-direction:column; align-items:flex-end; gap:14px;
    opacity:0; transform:translateY(24px) scale(.92); pointer-events:none;
    transition:opacity .5s var(--ease), transform .5s var(--ease);
  }
  .promo-fab.visible{opacity:1; transform:translateY(0) scale(1); pointer-events:auto;}
  .promo-fab-bubble{
    width:60px; height:60px; border-radius:50%; border:none; cursor:pointer;
    background:linear-gradient(160deg, var(--rose-deep), var(--brown));
    color:var(--cream); display:flex; align-items:center; justify-content:center;
    position:relative; box-shadow:0 10px 26px rgba(21,18,16,.28);
    transition:transform .3s cubic-bezier(.34,1.56,.64,1); flex:none;
  }
  .promo-fab-bubble:hover{transform:scale(1.08) rotate(-4deg);}
  .promo-fab-bubble:active{transform:scale(.94);}
  .promo-fab-icon{width:26px; height:26px; position:relative; z-index:2; transition:transform .35s var(--ease);}
  .promo-fab.open .promo-fab-icon{transform:rotate(25deg) scale(.92);}
  .promo-fab-ring{
    position:absolute; inset:-6px; border-radius:50%;
    border:2px solid var(--rose-deep); opacity:0;
    animation:promoPulse 2.6s ease-out infinite;
  }
  @keyframes promoPulse{
    0%{opacity:.55; transform:scale(.85);}
    80%{opacity:0; transform:scale(1.35);}
    100%{opacity:0; transform:scale(1.35);}
  }
  .promo-fab-badge{
    position:absolute; top:-3px; right:-3px; min-width:20px; height:20px; padding:0 5px;
    border-radius:999px; background:var(--brown); color:var(--cream);
    font-size:11px; font-weight:700; display:flex; align-items:center; justify-content:center;
    border:2px solid var(--cream); z-index:3;
    animation:promoBadgeIn .4s cubic-bezier(.34,1.56,.64,1) .7s backwards;
  }
  @keyframes promoBadgeIn{from{transform:scale(0);} to{transform:scale(1);}}
  .promo-fab-panel{
    width:min(440px, 92vw); background:var(--cream-deep); border-radius:24px;
    box-shadow:0 20px 50px rgba(21,18,16,.22); border:1px solid var(--line);
    overflow:hidden; position:relative;
    max-height:0; opacity:0; transform:translateY(14px) scale(.96);
    transition:max-height .5s cubic-bezier(.34,1.15,.64,1), opacity .35s var(--ease), transform .4s cubic-bezier(.34,1.35,.64,1), box-shadow .4s var(--ease);
    pointer-events:none;
  }
  .promo-fab.open .promo-fab-panel{
    max-height:520px; opacity:1; transform:translateY(0) scale(1); pointer-events:auto;
    box-shadow:0 26px 60px rgba(140,106,46,.22), 0 20px 44px rgba(21,18,16,.18);
  }
  .promo-fab-close{
    position:absolute; top:10px; right:10px; z-index:3;
    width:26px; height:26px; border-radius:50%; border:none; cursor:pointer;
    background:rgba(21,18,16,.45); color:#fff; font-size:12px; line-height:1;
    display:flex; align-items:center; justify-content:center;
    transition:background .2s var(--ease), transform .2s var(--ease);
  }
  .promo-fab-close:hover{background:var(--rose-deep); transform:rotate(90deg);}
  .promo-fab-head{padding:20px 40px 6px 22px;}
  .promo-fab-eyebrow{
    display:block; font-size:12.5px; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--rose-deep);
  }
  .promo-fab-sub{display:block; margin-top:4px; font-size:12.5px; color:var(--brown-mid); line-height:1.35;}

  /* Карточки-«актуальное»: большой кружок фото с крутящимся градиентным
     кольцом (как хайлайты историй в Instagram) вместо плоских прямоугольных
     превью — по прямому запросу, крупнее и «живее». */
  .promo-fab-cards{display:flex; gap:16px; padding:14px 18px 10px; justify-content:center;}
  .promo-card-mini{
    flex:0 0 auto; width:112px; display:flex; flex-direction:column; align-items:center; gap:8px;
    text-align:center;
    opacity:0; transform:translateY(10px);
  }
  .promo-fab.open .promo-card-mini{
    animation:promoCardIn .5s cubic-bezier(.34,1.4,.64,1) forwards;
    animation-delay:calc(.08s + var(--i, 0) * .08s);
  }
  @keyframes promoCardIn{ to{ opacity:1; transform:translateY(0); } }
  .promo-card-mini:active .promo-ring{transform:scale(.95);}

  .promo-ring{
    position:relative; width:98px; height:98px; transition:transform .25s var(--ease);
  }
  .promo-card-mini:hover .promo-ring{transform:scale(1.06);}
  .promo-ring-spin{
    position:absolute; inset:0; border-radius:50%;
    background:conic-gradient(from 0deg, var(--rose-deep), var(--rose) 30%, #fbead0 50%, var(--rose) 72%, var(--rose-deep) 100%);
    animation:promoRingSpin 6s linear infinite;
  }
  .promo-card-mini:hover .promo-ring-spin{animation-duration:1.8s;}
  @keyframes promoRingSpin{ to{ transform:rotate(360deg); } }
  .promo-card-mini-photo{
    position:absolute; inset:5px; border-radius:50%; overflow:hidden;
    box-shadow:0 0 0 3px var(--cream-deep);
  }
  .promo-card-mini-photo img{width:100%; height:100%; object-fit:cover; display:block;}

  .promo-card-mini-body{display:flex; flex-direction:column; align-items:center; gap:5px;}
  .promo-card-mini-title{
    font-family:'Onest', sans-serif; font-size:14px; font-weight:600; color:var(--brown); line-height:1.25;
    display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  }
  .promo-card-mini-cond{
    font-size:11px; font-weight:600; color:var(--rose-deep);
    background:var(--rose-pale); border-radius:999px; padding:3px 10px; line-height:1.3;
    display:-webkit-box; -webkit-line-clamp:1; -webkit-box-orient:vertical; overflow:hidden;
  }
  /* Ряд кружков теперь показывает все акции сразу (или скроллится на мобильном),
     точки-пагинация для одной карточки за раз больше не нужны. */
  .promo-fab-dots{display:none;}
  @media (prefers-reduced-motion: reduce){
    .promo-ring-spin{animation:none;}
  }
  @media (max-width:640px){
    .promo-fab{right:14px; bottom:14px;}
    .promo-fab-bubble{width:52px; height:52px;}
    .promo-fab-icon{width:22px; height:22px;}
    .promo-fab-panel{width:min(360px, 92vw);}
    .promo-fab-head{padding:18px 36px 4px 18px;}
    /* Горизонтальный скролл-ряд кружков, как лента историй */
    .promo-fab-cards{
      justify-content:flex-start;
      padding:12px 14px 8px; gap:16px;
      overflow-x:auto; scroll-snap-type:x proximity; -webkit-overflow-scrolling:touch;
      scrollbar-width:none;
    }
    .promo-fab-cards::-webkit-scrollbar{display:none;}
    .promo-card-mini{width:88px; scroll-snap-align:start;}
    .promo-ring{width:78px; height:78px;}
    .promo-card-mini-title{font-size:12.5px;}
  }

  /* Angiofarm catalog now reuses .drip-card / .drip-grid (кристалл капельниц) —
     see "КАПЕЛЬНИЦЫ (каталог)" above. */

  /* ===== ПОИСК ПО САЙТУ =====
     Иконка всегда видна в шапке (в отличие от .head-call, которая появляется
     только в компактной версии) — поиск нужен на любой ширине экрана. Панель —
     оверлей по центру сверху, а не выпадашка от кнопки: так проще и надёжнее
     работает на любом размере экрана без отдельной мобильной раскладки. */
  .head-search-btn{
    display:flex; align-items:center; justify-content:center;
    width:44px; height:44px; min-width:44px; border-radius:50%;
    background:var(--rose-pale); color:var(--brown); border:none; cursor:pointer;
    transition:background 250ms var(--ease);
  }
  .head-search-btn svg{width:19px; height:19px;}
  .head-search-btn:hover{background:var(--rose);}

  .search-overlay{
    position:fixed; inset:0; z-index:90;
    display:flex; align-items:flex-start; justify-content:center;
    padding:12vh 20px 20px;
    background:rgba(20,16,11,.45);
    -webkit-backdrop-filter:blur(4px); backdrop-filter:blur(4px);
    opacity:0; pointer-events:none;
    transition:opacity 250ms var(--ease);
  }
  .search-overlay.open{opacity:1; pointer-events:auto;}
  .search-panel{
    width:100%; max-width:560px; max-height:70vh;
    background:var(--cream); border-radius:24px; border:1px solid var(--line);
    overflow:hidden; display:flex; flex-direction:column;
    transform:translateY(-14px) scale(.98); opacity:0;
    transition:transform 300ms var(--ease), opacity 250ms var(--ease);
  }
  .search-overlay.open .search-panel{transform:translateY(0) scale(1); opacity:1;}
  .search-input-row{
    display:flex; align-items:center; gap:12px; padding:18px 20px;
    border-bottom:1px solid var(--line); flex:none;
  }
  .search-input-row svg{width:20px; height:20px; color:var(--brown-soft); flex:none;}
  .search-input-row input{
    flex:1; min-width:0; border:none; background:none; outline:none;
    font-family:'Onest', sans-serif; font-size:17px; color:var(--brown);
  }
  .search-input-row input::placeholder{color:var(--brown-soft);}
  .search-close{
    width:30px; height:30px; border-radius:50%; border:none; cursor:pointer;
    background:var(--cream-deep); color:var(--brown-mid); font-size:15px; line-height:1;
    display:flex; align-items:center; justify-content:center; flex:none;
    transition:background 200ms var(--ease);
  }
  .search-close:hover{background:var(--rose-pale);}
  .search-results{overflow-y:auto; padding:8px;}
  .search-result{
    display:flex; flex-direction:column; gap:2px;
    padding:12px 14px; border-radius:16px; text-decoration:none;
    transition:background 150ms var(--ease);
  }
  .search-result:hover, .search-result.active{background:var(--cream-deep);}
  .search-result-title{font-weight:600; color:var(--brown); font-size:16px;}
  .search-result-section{font-size:13.5px; color:var(--brown-mid);}
  .search-group-label{
    font-size:12px; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
    color:var(--rose-deep); padding:12px 14px 6px;
  }
  .search-result--hub{background:var(--rose-pale);}
  .search-result--hub:hover, .search-result--hub.active{background:var(--rose);}
  .search-result--hub .search-result-section{color:var(--rose-deep);}
  .search-empty{padding:22px 14px; color:var(--brown-mid); font-size:15px; text-align:center;}
  body.search-open{overflow:hidden;}
  @media (max-width:640px){
    .search-overlay{padding:8vh 12px 12px;}
    .search-panel{max-height:78vh; border-radius:20px;}
    .search-input-row{padding:14px 16px;}
    .search-input-row input{font-size:16px;}
  }
