/*
 * cnl-brand.css — Brand overlay поверх Seniar tokens.
 *
 * Стратегія:
 *   Seniar HTML/CSS НЕ чіпаємо. Перевизначаємо :root variables,
 *   які Seniar використовує всюди.
 *
 * Палітра — 2 кольори з лого Comfort and Love:
 *   - Navy (хвиля, рука, "Comfort")            → primary
 *   - Warm orange (вікно будиночка)            → accent
 *   - Зелений з лого СВІДОМО НЕ використовуємо (рішення user'а 2026-05-20)
 *   - НЕ використовуємо: lime-кричущий зелений (Carely #BFD730),
 *                        Seniar peach/brown/purple,
 *                        будь-який зелений взагалі
 *
 * Третій кольор у палітрі — softer navy #2E6B9E (для tertiary акцентів,
 * де Seniar мав окремий колір).
 *
 * Підключення: ОСТАННІМ у enqueue chain (див. inc/class-assets.php).
 */

/* ═══════════════════════════════════════════════════════════════════════ */
/*  1. ПЕРЕВИЗНАЧЕННЯ SENIAR :root VARIABLES                              */
/* ═══════════════════════════════════════════════════════════════════════ */
:root {
  /* === Seniar's 3 theme colors → наша палітра з лого === */
  /* theme-color1 — Seniar primary accent (#e6a493 peach) → НАШ NAVY */
  --theme-color1:           #1A4D7A;
  --theme-color1-rgb:       26, 77, 122;
  --bg-theme-color1:        #1A4D7A;

  /* theme-color2 — Seniar secondary (#4d3e3a brown) → НАШ ORANGE accent */
  --theme-color2:           #F39200;
  --theme-color2-rgb:       243, 146, 0;
  --bg-theme-color2:        #F39200;

  /* theme-color3 — Seniar tertiary (#4d273f purple) → softer navy (БЕЗ зеленого) */
  --theme-color3:           #2E6B9E;
  --theme-color3-rgb:       46, 107, 158;
  --bg-theme-color3:        #2E6B9E;

  /* === Text colors === */
  --headings-color:         #273A29;   /* було #4D3E3A коричневий */
  --text-color:             #404040;   /* було #757575 — трохи темніше для контрасту */
  --link-color:             #1A4D7A;   /* navy замість peach */
  --link-hover-color:       #F39200;   /* orange на hover */
  --sec-title-color:        #273A29;
  --sec-title-subtitle-color: #1A4D7A; /* було сіро-блакитний #7e8596 */

  /* === Backgrounds === */
  --body-bg:                #FFFFFF;
  --bg-color:               #FAF7F3;   /* було #F5F2EC — наш warmer beige */
  --theme-color-lighter:    #F5F3F0;   /* було #F6F6F6 */

  /* === Шрифти — лишаємо Seniar (Bricolage Grotesque + Allison) === */
  /* user-рішення 2026-05-20: типографіка донора працює, не міняємо */

  /* === Gradient (Seniar має lime-green gradient що нам не пасує) === */
  --gradient-1:             linear-gradient(90deg, rgba(26, 77, 122, 0.95) 0%, rgba(26, 77, 122, 0.7) 100%);
}

/* ═══════════════════════════════════════════════════════════════════════ */
/*  2. ВИБІРКОВІ ПЕРЕВИЗНАЧЕННЯ (де Seniar має hard-coded peach)          */
/* ═══════════════════════════════════════════════════════════════════════ */

/* Selection — навігація і пошук */
::-moz-selection,
::selection {
  background: #1A4D7A;
  color: #fff;
}

/* Шрифти: лишаємо Seniar (Bricolage Grotesque + Allison) — user-рішення */

/* Body — тільки колір (font стандартний Seniar) */
body {
  color: #404040;
}

/* ═══════════════════════════════════════════════════════════════════════ */
/*  3. КОЛЬОРОВІ ВИПРАВЛЕННЯ ДЛЯ КОНКРЕТНИХ КОМПОНЕНТІВ                   */
/* ═══════════════════════════════════════════════════════════════════════ */

/* Buttons primary (theme-btn btn-style-one) — наш navy CTA */
.theme-btn.btn-style-one,
.theme-btn {
  background-color: #F39200 !important;  /* orange CTA — головна дія */
  color: #ffffff !important;
}
.theme-btn.btn-style-one:hover,
.theme-btn:hover {
  background-color: #1A4D7A !important;  /* navy на hover */
  color: #ffffff !important;
}

/* Buttons secondary (btn-style-two) */
.theme-btn.btn-style-two {
  background-color: #1A4D7A !important;
  color: #ffffff !important;
}
.theme-btn.btn-style-two:hover {
  background-color: #F39200 !important;
}

/* Contact button у header */
.contact-btn {
  background-color: #F39200 !important;
  color: #ffffff !important;
}
.contact-btn:hover {
  background-color: #1A4D7A !important;
}

/* Header icons (телефон/email у header-contact) */
.header-contact .icon i {
  color: #1A4D7A !important;
}

/* Section title — eyebrow (маленький tagline над H2) */
.sec-title .sub-title,
.sub-title {
  color: #F39200 !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Counters / funfacts */
.count-text,
.funfact .count-text,
.counter-text {
  color: #1A4D7A !important;
}

/* Checkmark / list-style icons */
.list-style-one li i,
.list-style-two li i,
.feature-list li i {
  color: #F39200 !important;  /* orange — узгоджено з CTA, без зеленого */
}

/* Preloader background */
.preloader {
  background-color: #ffffff;
}

/* Back-to-top button */
.back-to-top-btn {
  background-color: #1A4D7A !important;
  color: #fff !important;
}
.back-to-top-btn:hover {
  background-color: #F39200 !important;
}

/* Pricing card highlighted */
.pricing-block.active,
.pricing-block-two.active,
.price-block_one.active {
  border-color: #F39200 !important;
}

/* Mobile menu */
.mobile-menu .menu-backdrop {
  background: rgba(26, 77, 122, 0.85);
}

/* Footer — лишаємо Seniar дефолтну стилізацію (user revert 2026-05-20) */

/* Preloader — відключено 2026-05-21 (швидкий розвиток, не потрібен) */
.preloader { display: none !important; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  3.5. ОВЕРРАЙДИ HARDCODED ЗЕЛЕНОГО У SENIAR (3 місця)                  */
/* ═══════════════════════════════════════════════════════════════════════ */

/* .get-in-touch::after — Seniar має lime gradient #88ff2a */
.get-in-touch::after {
  background: linear-gradient(90deg, #F39200 0%, rgba(243, 146, 0, 0) 100%) !important;
}

/* .banner-box-two .inner-box:before — Seniar має forest green gradient */
.banner-box-two .inner-box:before {
  background: linear-gradient(to bottom, rgba(26, 77, 122, 0.8) 0%, rgba(26, 77, 122, 0) 100%) !important;
}

/* .service-sidebar contact box — Seniar має olive overlay */
.service-sidebar .service-sidebar-single-contact-box::before {
  background: rgba(26, 77, 122, 0.93) !important;
}

/* Showcase labels — видалені 2026-05-20 (Етап 4 завершено) */

/* ═══════════════════════════════════════════════════════════════════════ */
/*  NAV ANCHORS — offset під липку шапку (фікс мертвих #-лінків меню/футера) */
/* ═══════════════════════════════════════════════════════════════════════ */
.cnl-anchor {
  display: block;
  position: relative;
  visibility: hidden;
  scroll-margin-top: 110px;
}

/* Footer logo (біла версія cnl-logo-white.png на темному футері)
   height:auto обов'язково — інакше атрибут height=62 + donor max-width:180 ламають
   пропорцію (лого виглядає сплюснутим). */
.footer-logo img {
  max-height: 60px;
  max-width: 200px;
  width: auto;
  height: auto;
}

/* Footer socials — кольорові SVG-бейджі (замість FontAwesome-кіл) */
.footer-area .footer-middle-wrapper .social-icon-list1.cnl-socials li a {
  background: transparent !important;
  width: auto;
  height: auto;
  line-height: 0;
  border-radius: 12px;
  overflow: hidden;
}
.cnl-socials li a img {
  display: block;
  width: 44px;
  height: 44px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.cnl-socials li a:hover {
  background: transparent !important;
}
.cnl-socials li a:hover img {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* Footer schedule — info-блоки з іконкою (24/7 + дзвінки) */
.footer-area .footer-middle-wrapper .schedule-list1.cnl-schedule {
  gap: 48px;
  justify-content: flex-start;
}
.footer-area .footer-middle-wrapper .schedule-list1.cnl-schedule li {
  gap: 14px;
  flex-wrap: nowrap;
}
.cnl-sch-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--theme-color2);            /* orange accent */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}
.cnl-sch-body {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.cnl-schedule .week-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.65) !important;
}
.cnl-schedule .time-text {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
}
@media (max-width: 575.98px) {
  .footer-area .footer-middle-wrapper .schedule-list1.cnl-schedule { gap: 24px; }
}

/* Footer-bottom — credit «Розробка — Web Deluxe» (замінив юр-меню) */
.footer-bottom-wrapper .site-footer__credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.75);
  transition: color 200ms ease;
}
.site-footer__credit-label {
  font-size: 13px;
  opacity: 0.7;
}
.site-footer__credit-logo {
  display: block;
  width: auto;
  height: 24px;
  color: #fff;                 /* «Deluxe» через currentColor; «WD» — червоний градієнт */
  opacity: 0.9;
  transition: opacity 200ms ease;
}
.footer-bottom-wrapper .site-footer__credit:hover .site-footer__credit-logo { opacity: 1; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  BLOG INDEX (/blog/) — пагінація (Seniar не має своїх стилів)           */
/* ═══════════════════════════════════════════════════════════════════════ */
.cnl-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
}
.cnl-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(26, 77, 122, 0.2);
  color: #1A4D7A;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: all 0.3s ease;
}
.cnl-pagination .page-numbers:hover {
  background-color: #1A4D7A;
  border-color: #1A4D7A;
  color: #fff;
}
.cnl-pagination .page-numbers.current {
  background-color: #F39200;
  border-color: #F39200;
  color: #fff;
}
.cnl-pagination .page-numbers.dots { border-color: transparent; }

/* ─── Header logo — більший і пропорційний (було тісно у 167px) ─── */
.header-1 .main-box .logo { max-width: 250px; }
.main-header .header-lower .logo img { max-height: 60px; width: auto; height: auto; }
.sticky-header .logo { max-width: 230px; }
.sticky-header .logo img { max-height: 52px; width: auto; height: auto; }
.mobile-menu .nav-logo img { max-height: 46px; width: auto; height: auto; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  HEADER TOPBAR — адреса · графік · месенджери (натхнення sens)          */
/* ═══════════════════════════════════════════════════════════════════════ */
.cnl-topbar {
  background: var(--theme-color1);            /* navy */
  color: #fff;
  font-size: 13px;
  line-height: 1.2;
}
.cnl-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  padding: 6px 0;
}
.cnl-topbar__info,
.cnl-topbar__contacts {
  display: flex;
  align-items: center;
  gap: 14px;
}
.cnl-topbar__item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 200ms ease;
}
.cnl-topbar__item svg { flex-shrink: 0; opacity: 0.85; }
.cnl-topbar__item strong { color: #fff; font-weight: 600; }
a.cnl-topbar__item:hover { color: var(--theme-color2); }     /* orange hover */
.cnl-topbar__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.25);
}
.cnl-topbar__label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}
.cnl-topbar__msg {
  display: inline-flex;
  line-height: 0;
  border-radius: 7px;
  overflow: hidden;
  transition: transform 200ms ease;
}
.cnl-topbar__msg img { display: block; width: 24px; height: 24px; }
.cnl-topbar__msg:hover { transform: translateY(-1px); }
.cnl-topbar__phone {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: color 200ms ease;
}
.cnl-topbar__phone:hover { color: var(--theme-color2); }

/* topbar не липне — лишається у звичайному потоці, sticky-шапка окремо */
.sticky-header .cnl-topbar { display: none; }

@media (max-width: 991.98px) {
  .cnl-topbar__info .cnl-topbar__item--hours,
  .cnl-topbar__label { display: none; }
}
@media (max-width: 767.98px) {
  .cnl-topbar { display: none; }            /* на мобайлі прибираємо, контакти в бургері */
}

/* ─── Over-hero (прозора) шапка — світлий контент на темному hero ─── */
/* sticky-шапка (білий фон) НЕ зачіпається — там лишається кольорове лого + темний текст */
.main-header .header-lower .navigation > li > a { color: #fff; }
.main-header .header-lower .navigation > li > a:hover,
.main-header .header-lower .navigation > li.current > a { color: var(--theme-color2); }
.main-header .header-lower .header-contact .text,
.main-header .header-lower .header-contact .text a { color: rgba(255,255,255,0.92); }
.main-header .header-lower .header-contact .icon i { color: #fff !important; }
.main-header .header-lower .mobile-nav-toggler span { background-color: #fff; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  SENS-STYLE HEADER — суцільний бар над hero (НЕ прозорий overlay)       */
/* ═══════════════════════════════════════════════════════════════════════ */
.main-header { position: relative !important; top: 0 !important; }
.main-header .header-lower {
  background: #fff;
  box-shadow: 0 2px 14px rgba(26, 77, 122, 0.07);
}
/* над білим баром — кольорове лого + ТЕМНЕ меню (перекриває over-hero світлий блок вище) */
.main-header .header-lower .navigation > li > a { color: var(--headings-color); }
.main-header .header-lower .navigation > li > a:hover,
.main-header .header-lower .navigation > li.current > a { color: var(--theme-color2); }
.main-header .header-lower .mobile-nav-toggler span { background-color: var(--theme-color1); }
/* компактна висота бару */
.header-1 .main-box { padding: 14px 0; }

/* ─── Full-width: hero + білий бар шапки (прибрати Seniar rounded inset) ─── */
.banner-section-four { margin: 0 !important; border-radius: 0 !important; }
.main-header { padding-left: 0 !important; padding-right: 0 !important; }
.header-1 .main-box { padding-left: 30px; padding-right: 30px; }

/* FAQ Home5 — overlay-блок «Ще питання?»: tertiary-navy #2E6B9E → основний navy (user 2026-06-23, єдиний синій) */
.faq-section-four .image-column .inner-column .content {
  background-color: rgba(26, 77, 122, 0.8) !important;
}

/* main-box тепер усередині .auto-container — власні side-paddings прибираємо */
.header-1 .main-box { padding-left: 0; padding-right: 0; max-width: none; }

/* Header CTA — як у футері (кружок-стрілка), а не плоский овал 20px 38px */
.header-style-two .main-box .btn-style-one { padding: 0 10px 0 30px; }

/* Nav items — компактніший вертикальний padding (донор мав 37px → завеликий бар) + менший gap */
/* Меню — звичайний регістр (без UPPERCASE) в обох шапках. Простіше, м'якше.
   Перебиваємо донорський .header-1 .main-box ...{text-transform:uppercase} зі style.css. */
.header-1 .main-box .main-menu .navigation > li > a,
.sticky-header .main-menu .navigation > li > a { text-transform: none; }

.main-menu .navigation > li { padding: 22px 0; }
.header-1 .main-box .main-menu .navigation > li { margin: 0 24px 0 0; }

/* ═══════════════════════════════════════════════════════════════════════ */
/*  HERO — sens-стиль: компактно, чітко, підкреслено                        */
/* ═══════════════════════════════════════════════════════════════════════ */
/* dark overlay для контрасту білого тексту над фото */
.banner-section-four { position: relative; }
.banner-section-four::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(90deg, rgba(26,77,122,0.94) 0%, rgba(26,77,122,0.80) 42%, rgba(26,77,122,0.30) 100%);
}
.banner-section-four .auto-container { position: relative; z-index: 1; }

/* структурований H1 */
.cnl-hero-h1 { display: flex; flex-direction: column; gap: 8px; line-height: 1.1; }
.cnl-hero-h1__main { display: block; }
.cnl-hero-h1__accent {
  display: inline-block; width: -moz-fit-content; width: fit-content;
  color: var(--theme-color2);
  text-decoration: underline;
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

/* trust-рядок (соцдоказ як аватари в sens, але текстом — фото команди ще нема) */
.cnl-hero-trust {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 10px 22px; margin: 30px 0 0; padding: 0; list-style: none;
}
.cnl-hero-trust li {
  position: relative; color: rgba(255,255,255,0.9);
  font-size: 15px; padding-right: 22px;
}
.cnl-hero-trust li:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 16px; background: rgba(255,255,255,0.3);
}
.cnl-hero-trust li strong { color: #fff; font-weight: 700; }

/* Hero H1 — компактний (донор 72px = «конське») */
.cnl-hero-h1 { font-size: 46px; line-height: 1.14; font-weight: 700; }
@media (max-width: 1199.98px) { .cnl-hero-h1 { font-size: 40px; } }
@media (max-width: 991.98px)  { .cnl-hero-h1 { font-size: 34px; } }
@media (max-width: 575.98px)  { .cnl-hero-h1 { font-size: 28px; gap: 4px; } }
.cnl-hero-h1__accent { text-decoration-thickness: 3px; text-underline-offset: 6px; }
/* компактніший hero */
.banner-section-four { padding-top: 56px; padding-bottom: 64px; }

/* H1 size override — вища специфічність (донор .banner-content .title = 72px) */
.banner-section-four .banner-content .cnl-hero-h1 { font-size: 46px !important; line-height: 1.14 !important; }
@media (max-width: 1199.98px) { .banner-section-four .banner-content .cnl-hero-h1 { font-size: 40px !important; } }
@media (max-width: 991.98px)  { .banner-section-four .banner-content .cnl-hero-h1 { font-size: 34px !important; } }
@media (max-width: 575.98px)  { .banner-section-four .banner-content .cnl-hero-h1 { font-size: 27px !important; } }
.banner-section-four { padding-top: 56px !important; padding-bottom: 0 !important; }

/* Hero — лікарка (портрет): не розтягувати на всю висоту, кап + вирівняти донизу,
   щоб hero не ставав надмірно високим. */
.banner-section-four .image-column .inner-column {
  height: 100%; display: flex; align-items: flex-end; justify-content: center;
}
.banner-section-four .image-column .image { display: flex; align-items: flex-end; justify-content: center; }
.banner-section-four .image-column .image img {
  width: auto !important; height: auto !important;
  max-width: 100%; max-height: 640px; display: block; margin: 0 auto;
}
/* Текст отримує власний нижній відступ (бо в секції padding-bottom прибрано задля лікарки) */
.banner-section-four .banner-content { padding-bottom: 56px; }
@media (max-width: 991.98px) {
  .banner-section-four .image-column .image img { max-height: 420px; }
  .banner-section-four .banner-content { padding-bottom: 36px; }
}

/* Hero secondary CTA — ghost (прозора + біла рамка) на темному hero */
.banner-section-four .btn-box .cnl-btn-outline {
  background: transparent !important;
  border: 2px solid rgba(255, 255, 255, 0.55) !important;
}
.banner-section-four .btn-box .cnl-btn-outline .btn-title { color: #fff !important; }
.banner-section-four .btn-box .cnl-btn-outline:hover {
  background: #fff !important;
  border-color: #fff !important;
}
.banner-section-four .btn-box .cnl-btn-outline:hover .btn-title { color: var(--theme-color1) !important; }
/* відступ між кнопками */
.banner-section-four .btn-box { display: flex; flex-wrap: wrap; gap: 16px; }

/* Hero primary CTA — оранжева (донор робив navy), вторинна лишається ghost */
.banner-section-four .banner-content .btn-box a.btn-style-one:not(.cnl-btn-outline) {
  background-color: #F39200 !important;
}
.banner-section-four .banner-content .btn-box a.btn-style-one:not(.cnl-btn-outline):hover {
  background-color: #1A4D7A !important;
}
/* Hero desc — підсвітка bold-слів (sens-техніка, orange замість золота) */
.banner-section-four .text strong {
  background: linear-gradient(180deg, transparent 70%, rgba(243, 146, 0, 0.40) 0);
  color: #fff;
  font-weight: 600;
  padding: 0 2px;
}

/* Hero — статично, без анімації (смикалось/грузилось при скролі) */
.banner-section-four .inner-content,
.banner-section-four .inner-column,
.banner-section-four .tx-title,
.banner-section-four .tx-subTitle,
.banner-section-four [class*="tz-"] {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
}

/* CTA-кнопки: донорська slide-arrow анімація на ховер — ЗАЛИШАЄМО (user) */

/* Hero eyebrow — суцільний білий пілл (було напівпрозоре 17%, блякло) */
.banner-section-four .sec-sub-title {
  background: #fff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}
.banner-section-four .sec-sub-title .sub-title { color: var(--theme-color2) !important; }

/* Hero trust — з іконками (прибрано вертикальні роздільники, іконка веде кожен пункт) */
.cnl-hero-trust li { display: inline-flex; align-items: center; gap: 9px; padding-right: 0; }
.cnl-hero-trust li::after { display: none !important; }
.cnl-hero-trust li i {
  color: var(--theme-color2);
  font-size: 16px;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Footer CTA — оранжева з робочим ховером (user-запит; донор давав white/navy) */
.footer-content .theme-btn.btn-style-one,
.footer-content .theme-btn.btn-style-one.light {
  background-color: #F39200 !important;
}
.footer-content .theme-btn.btn-style-one .btn-title { color: #fff !important; }
.footer-content .theme-btn.btn-style-one .btn-arrow-left,
.footer-content .theme-btn.btn-style-one .btn-arrow-right {
  background-color: #fff !important; color: #F39200 !important;
}
.footer-content .theme-btn.btn-style-one:hover,
.footer-content .theme-btn.btn-style-one.light:hover {
  background-color: #d97f00 !important;   /* темніший orange — navy зливався з navy-футером */
}
.footer-content .theme-btn.btn-style-one:hover .btn-title { color: #fff !important; }

/* FAQ «Зв'язатись» — донорський light-пілл (kodesolution/4) на navy-боксі.
   Нейтралізує донорський flat-override (.faq…content .theme-btn: uppercase/padding/12px),
   щоб btn-style-one.light рендерився як пігулка + коло-стрілка. */
.faq-section-four .image-column .inner-column .content .theme-btn.btn-style-one.light {
  background-color: #ffffff !important;   /* біла пігулка (б'є blanket orange !important) */
  height: 56px;
  padding: 0 10px 0 30px !important;
  text-transform: none !important;
  font-size: 16px !important;
  letter-spacing: normal !important;
  font-weight: 400 !important;
}
.faq-section-four .image-column .inner-column .content .theme-btn.btn-style-one.light .btn-title {
  color: var(--theme-color2) !important;  /* orange текст на білому */
}
.faq-section-four .image-column .inner-column .content .theme-btn.btn-style-one.light .btn-arrow-left,
.faq-section-four .image-column .inner-column .content .theme-btn.btn-style-one.light .btn-arrow-right {
  background-color: var(--theme-color1) !important;  /* navy коло */
  color: #ffffff !important;                          /* біла стрілка */
}
/* hover — вимикаємо донорський slide (глючив «привидом» кола); простий чистий hover:
   коло лишається справа й стає orange, текст не їде. */
.faq-section-four .image-column .inner-column .content .theme-btn.btn-style-one.light:hover {
  padding: 0 10px 0 30px !important;
}
.faq-section-four .image-column .inner-column .content .theme-btn.btn-style-one.light:hover .btn-title {
  transform: none !important;
}
.faq-section-four .image-column .inner-column .content .theme-btn.btn-style-one.light:hover .btn-arrow-left {
  scale: 0 !important;
}
.faq-section-four .image-column .inner-column .content .theme-btn.btn-style-one.light:hover .btn-arrow-right {
  scale: 1 !important;
  background-color: var(--theme-color2) !important;  /* коло → orange на hover */
}

/* Funfact (Home3) на navy-фоні: числа/іконки видимі.
   Глобальний .count-text=navy ховався у темний фон → тут робимо білими, іконки orange. */
.funfact-section .count-text { color: #ffffff !important; }
.funfact-section .funfact .icon i { color: #F39200 !important; }

/* Funfact desc — marker-підсвітка ключового (стандарт AGENT_WORKFLOW: 62%/.32, на темному +color:#fff) */
.funfact-section .text strong {
  background: linear-gradient(180deg, transparent 62%, rgba(243, 146, 0, 0.32) 0);
  color: #ffffff;
  font-weight: 600;
  padding: 0 1px;
}
/* Funfact H2-акцент = cnl-hl-underline (просто orange, без marker) — клас у шаблоні */

/* About — плаваюча картка-доказ на фото (секція виглядала бідно) */
.about-image-1 { position: relative; }
.cnl-about-badge {
  position: absolute;
  left: -24px;
  bottom: 36px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 18px 44px rgba(26, 77, 122, 0.20);
  max-width: 330px;
  z-index: 2;
}
.cnl-about-badge__icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: var(--theme-color2);
  color: #fff;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.cnl-about-badge__body { display: flex; flex-direction: column; line-height: 1.3; }
.cnl-about-badge__body strong { color: var(--theme-color1); font-size: 16px; }
.cnl-about-badge__body span { color: var(--text-color); font-size: 12.5px; margin-top: 3px; }
@media (max-width: 575.98px) {
  .cnl-about-badge { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

/* About — фікси: іконки orange + картка не ріжеться/не виступає */
.about-block-items-1 .about-icon-items .icon-items .icon i,
.about-icon-items .icon-items .icon i::before { color: var(--theme-color2) !important; }
.about-image-1 { overflow: visible !important; }
.cnl-about-badge { left: 24px !important; bottom: 24px !important; }

/* About badge — на десктопі лишаємо лише заголовок (опис зайвий) */
@media (min-width: 768px) {
  .cnl-about-badge__body span { display: none; }
  .cnl-about-badge { align-items: center; }
}

/* About badge — на десктопі ховаємо повністю (лишається на мобайлі) */
@media (min-width: 768px) {
  .cnl-about-badge { display: none !important; }
}

/* About icon-box — ширше (донор 730 → 850) */
.about-block-items-1 .about-wrap .about-icon-items { max-width: 850px !important; width: 850px !important; }

/* About icon-box — менший гап + ширший контент (текст не переноситься по 2 слова) */
.about-block-items-1 .about-wrap .about-icon-items { justify-content: flex-start !important; gap: 48px; }
.about-block-items-1 .about-wrap .about-icon-items .icon-items { flex: 1; }
.about-block-items-1 .about-wrap .about-icon-items .icon-items .content { max-width: 330px !important; }

/* About icon-box — картки вирівняти по верху (було center) */
.about-block-items-1 .about-wrap .about-icon-items { align-items: flex-start !important; }

/* About — підсвітка ключового (як у hero, але на світлій секції) */
.about-block-items-1 .about-text strong {
  background: linear-gradient(180deg, transparent 62%, rgba(243, 146, 0, 0.32) 0);
  font-weight: 600;
  padding: 0 1px;
}
/* H2 акцент — просто оранжевий (без підкреслення) */
.cnl-hl-underline {
  color: var(--theme-color2);
}

/* Footer links — ховер: з приглушеного білого → оранжевий (бренд) */
.footer-area .footer-widget-wrapper .footer-single-widget .user-links li a:hover {
  color: var(--theme-color2) !important;
  padding-left: 4px;
}

/* Contact desc — marker-підсвітка ключового (як в about/hero) */
.contact-section-four .content-column .text strong {
  background: linear-gradient(180deg, transparent 62%, rgba(243, 146, 0, 0.32) 0);
  font-weight: 600;
  padding: 0 1px;
}

/* Contact info-box — читабельність контактів на фото */
.contact-section-four .image-box .image { position: relative; }
.contact-section-four .image-box .image::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 75%;
  background: linear-gradient(180deg, rgba(26,77,122,0) 0%, rgba(26,77,122,0.9) 100%);
  border-radius: inherit; pointer-events: none; z-index: 1;
}
.cnl-contact-info { position: absolute; z-index: 3; }
.cnl-contact-info .info { margin-bottom: 12px; }
.cnl-contact-info .info:last-child { margin-bottom: 0; }
.cnl-contact-info .info span,
.cnl-contact-info .info a { color: #fff !important; }
.cnl-contact-info .info a:hover { color: var(--theme-color2) !important; }
.cnl-contact-info .info .icon i { color: var(--theme-color2) !important; }

/* Contact info-box — білий фон іконок-кружків (було напівпрозоре 0.44) */
.contact-section-four .image-box .info-box .info .icon { background-color: #fff !important; }

/* Contact info-box — на всю ширину фото (текст не тулиться в кут) */
.contact-section-four .image-box .info-box.cnl-contact-info {
  left: 0 !important; right: 0 !important; bottom: 0 !important;
  width: auto !important; max-width: none !important;
  padding: 24px 30px;
}
.cnl-contact-info .info { display: flex; align-items: center; gap: 14px; }
.cnl-contact-info .info span { flex: 1; }

/* About — відступ між заголовком і контентом (desc підтягувався впритул) */
.about-block-items-1 .about-wrap { margin-top: 34px; }

/* Contact info — перший рядок як решта (донор давав 40px знизу) */
.contact-section-four .image-box .info-box.cnl-contact-info .info:first-child { margin-bottom: 12px !important; }

/* ─── 10 Testimonial (Seniar Home 4) — бренд ──────────────────────────── */
/* Лапки: донорський фіолетовий quote.png → бренд-orange (CSS mask поверх img) */
.testimonial-section-two .quote-icon {
  width: 59px;
  height: 49px;
  background-color: var(--theme-color2);
  -webkit-mask: url(../images/quote.png) no-repeat left center / contain;
  mask: url(../images/quote.png) no-repeat left center / contain;
}
.testimonial-section-two .quote-icon img { opacity: 0; display: block; }

/* Стрілки слайдера — бренд: navy контур → orange-залив на hover */
.testimonial-section-two .array-button .array-prev,
.testimonial-section-two .array-button .array-next {
  border-color: var(--theme-color1) !important;
  color: var(--theme-color1) !important;
}
.testimonial-section-two .array-button .array-prev:hover,
.testimonial-section-two .array-button .array-next:hover {
  background-color: var(--theme-color2) !important;
  border-color: var(--theme-color2) !important;
  color: #fff !important;
}

/* Pricing — секція й активна картка були на tertiary #2E6B9E (другий синій);
   уніфікуємо на основний navy #1A4D7A (рішення «один синій», як у FAQ). */
.pricing-section { background-color: #1A4D7A !important; }
.pricing-block-items-1.active .pricing-list-item { background-color: #1A4D7A !important; }

/* Pricing list — донор гасив останні 2 пункти кожного ul на opacity .3 (teaser-fade);
   у нас усі пункти реальні → повертаємо повну видимість. Чекмарки orange (видно на білій і navy). */
.pricing-block-items-1 .pricing-list-item ul li { opacity: 1 !important; }
.pricing-block-items-1 .pricing-list-item ul li i { color: #F39200 !important; }

/* ─── 08 Video (Seniar Home 4) — бренд ────────────────────────────────── */
/* Реальне відео-тур клієнта (assets/video/cnl-tour.mp4) + постер-кадр.
   Темний navy-scrim: контраст play-кнопки + ховає розмиті краї вертик. відео. */
.video-section-two { overflow: hidden; }
.video-section-two::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(26,77,122,0.30) 0%, rgba(26,77,122,0.58) 100%);
  z-index: 1;
}
.video-section-two .play-box { position: relative; z-index: 2; }
/* play-коло: navy → orange на hover (бренд-CTA accent) */
.video-section-two .video-box:hover {
  background-color: rgba(243, 146, 0, 0.88);
}

/* Fancybox відео-тур: портретне відео — не вилазить за вікно (стеля по висоті).
   <video> у fancybox v3 лежить ПРЯМО у .fancybox-slide--video, не в .fancybox-content. */
.fancybox-slide--video video {
  max-height: 88vh !important;
  max-width: 92vw !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  background: #000;
}

/* Pricing — «від» і «/міс» меншим шрифтом, число лишається акцентом */
.pricing-title {
  white-space: nowrap;          /* ціна не переноситься (VIP «/міс» падало вниз) */
}
.pricing-title .cnl-price-pre,
.pricing-title .cnl-price-suf {
  font-size: 0.44em;
  font-weight: 600;
  color: var(--theme-color3);
  vertical-align: middle;
  white-space: nowrap;          /* «/міс» завжди разом */
}
.pricing-title .cnl-price-suf { margin-left: -2px; }

/* ─── 09 Pricing — featured VIP-картка (прийом Seniar Home 5 на наші 2 картки) ── */
/* VIP (.active) = «герой»: підняття + navy-бордер + тінь, внутр. блок глибокий navy */
.pricing-block-items-1.active {
  border: 2px solid var(--theme-color1);
  box-shadow: 0 30px 60px rgba(26, 77, 122, 0.18);
  transform: translateY(-12px);
}
.pricing-block-items-1.active:hover { transform: translateY(-16px); }
.pricing-block-items-1.active .pricing-list-item {
  background-color: var(--theme-color1) !important;   /* глибокий navy замість softer */
}
/* Бейдж «Рекомендуємо» — orange-пілл, top-right */
.pricing-block-items-1 { position: relative; }
.cnl-plan-badge {
  position: absolute;
  top: 22px;
  right: 26px;
  z-index: 10;
  background: var(--theme-color2);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(243, 146, 0, 0.3);
}
@media (max-width: 991.98px) {
  .pricing-block-items-1.active { transform: none; }   /* на моб. без зсуву */
  .pricing-block-items-1.active:hover { transform: translateY(-8px); }
}

/* How-it — номер-кружок був navy + текст softer-navy (navy-on-navy, не видно).
   Кружок orange + білий номер — видно і в rest, і на hover (картка стає navy). */
.how-it-block-items-2 .number-top .number {
  background-color: #F39200 !important;
  color: #ffffff !important;
}

/* ─────────────────────────────────────────────────────────────
   §X · SECTION RHYTHM — балансуємо bg-смуги між секціями
   How-it отримала section-bg (бежевий) → донорський top 40px робив
   смугу несиметричною (40/120) і «приклеював» її до Services.
   Виставляємо top = section-padding, щоб бежева смуга дихала 120/120.
   ───────────────────────────────────────────────────────────── */
.how-it-section { padding-top: 120px !important; }
@media (max-width: 1199.98px) { .how-it-section { padding-top: 90px !important; } }
@media (max-width: 991.98px)  { .how-it-section { padding-top: 80px !important; } }

/* ─────────────────────────────────────────────────────────────
   §X · FUNFACT — full-bleed смуга (донор: інсет-картка margin 0 30px
   + border-radius 30px). Плаваюча navy-картка із заокругленими кутами
   ламала повноширинний ритм смуг і давала косі/криві шви об сусідів.
   Робимо суцільну navy-смугу на всю ширину, як решта секцій. Відступ —
   усередині content-column (донорський), тому padding на секцію НЕ даємо
   (інакше білі смуги над/під navy). ───────────────────────────────── */
.funfact-section { margin: 0 !important; }
.funfact-section .outer-box { border-radius: 0 !important; }

/* Pricing — full-bleed смуга (той самий донорський інсет margin 0 30px +
   radius 30px). Консистентно з funfact/hero: navy-смуга на всю ширину. */
.pricing-section { margin: 0 !important; border-radius: 0 !important; position: relative; }
/* Navy-вуаль над фото-фоном Кімнат (читабельність білого тексту/карток) */
.pricing-section::before {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(26,77,122,0.93) 0%, rgba(20,58,92,0.96) 100%) !important;
  background-image: none;
  /* донорський .pricing-section:before має opacity:0.11 — інакше navy-вуаль майже невидима */
  opacity: 1 !important;
  width: 100%; height: 100%; top: 0; left: 0;
}
.pricing-section .auto-container { position: relative; z-index: 1; }

/* How-it (#01 «Стабілізація») — .active-картка отримує navy ::before,
   але донор білить лише <p> та number; наші .title/.text у .active/.hover лишались
   темними на navy → нечитабельно. Білимо обидва стани. */
.how-it-block-items-2.active .content .title,
.how-it-block-items-2.active .content .text,
.how-it-block-items-2:hover .content .title,
.how-it-block-items-2:hover .content .text { color: #fff !important; }

/* Team-картки (Команда лікарів) — роль інколи у 2 рядки («Лікар-психіатр»),
   беж-бокси різної висоти. Фіксуємо .text під 2 рядки → нижні краї вирівняні. */
.team-section-2 .team-block-items2 .team-content .text { min-height: 2.9em; }

/* /pro-nas/ — секція «Відгуки родин» (testimonial-section-two) йшла бежева одразу
   після бежевої how-it → дві однакові смуги поспіль. Прибираємо беж лише тут
   (scoped по шаблону сторінки), щоб відновити чергування фонів. */
.page-template-page-pro-nas .testimonial-section-two { background-color: transparent !important; }

/* Футер — підміняємо донорський Seniar-стоковий фон (footer2-1.jpg з людьми)
   на наш інтер'єр у тому ж субтильному ::before (navy-картка лишається донорська). */
.footer-area::before {
  background-image: url(../images/cnl-footer-bg.webp) !important;
  opacity: 0.1 !important;
}


/* ══════════════════════════════════════════════════════
   QUIZ (підбір догляду) — портовано з sens quiz-v2.
   Self-contained .qv2-* namespace. Токени scoped на .quiz-v2:
   sens gold→orange #F39200, sens teal→navy #1A4D7A, зелений→navy
   (правило «без зеленого»). beige #FAF7F3.
   ══════════════════════════════════════════════════════ */
.quiz-v2 {
  /* мапінг sens-змінних на бренд Comfort and Love (scoped) */
  --accent-color    : #F39200;
  --primary-color   : #1A4D7A;
  --white-color     : #FFFFFF;
  --bg-color        : #FAF7F3;
  --text-color      : #404040;
  --divider-color   : rgba(26, 77, 122, 0.14);
  --qv2-heading     : #1A4D7A;
  --qv2-bg-alt      : #F1EBE3;
  --qv2-accent-soft : rgba(243, 146, 0, 0.16);
  --qv2-accent-dark : #C26F00;
  --qv2-radius-lg   : 16px;
  --qv2-radius-md   : 12px;
  --qv2-radius-pill : 100px;
  --qv2-shadow-sm   : 0 2px 12px rgba(26, 77, 122, 0.08);
  background: var(--bg-color);
}

.qv2__head { max-width: 760px; margin-left: auto; margin-right: auto; }

.qv2__layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* ── Left panel ── */
.qv2__left {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: var(--qv2-radius-lg);
  overflow: hidden;
  box-shadow: var(--qv2-shadow-sm);
}

/* Progress */
.qv2__bar { height: 6px; background: var(--qv2-bg-alt); position: relative; overflow: hidden; }
.qv2__bar::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-55deg,
    var(--accent-color) 0px, var(--accent-color) 8px,
    var(--qv2-accent-soft) 8px, var(--qv2-accent-soft) 14px);
  width: var(--qv2-pct, 20%);
  transition: width 0.5s cubic-bezier(0.32, 0.72, 0, 1);
}
.qv2__bar-label { text-align: center; font-size: 12px; font-weight: 500; color: var(--text-color); background: var(--qv2-bg-alt); padding: 8px 20px; }

/* Body */
.qv2__body { padding: 36px 40px 32px; }
.qv2__step           { display: none; }
.qv2__step.is-active { display: block; }
.qv2__step-badge {
  display: inline-flex; align-items: center;
  background: var(--qv2-bg-alt); color: var(--text-color);
  font-size: 12px; font-weight: 600; padding: 5px 12px;
  border-radius: 6px; margin-bottom: 16px; letter-spacing: 0.02em;
}
.qv2__question { font-size: 24px; font-weight: 600; color: var(--qv2-heading); margin-bottom: 28px; line-height: 1.3; letter-spacing: -0.01em; }

/* Cards */
.qv2__cards { display: grid; gap: 12px; }
.qv2__cards--2col { grid-template-columns: repeat(2, 1fr); }
.qv2__cards--3col { grid-template-columns: repeat(3, 1fr); }
.qv2-card {
  border: 1.5px solid var(--divider-color); border-radius: var(--qv2-radius-md);
  overflow: hidden; cursor: pointer; transition: all 0.2s;
  background: var(--bg-color); display: flex; flex-direction: column;
}
.qv2-card:hover { border-color: var(--qv2-accent-soft); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(243, 146, 0, 0.1); }
.qv2-card.is-selected { border-color: var(--accent-color); box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.15); background: var(--white-color); }
.qv2-card__icon {
  width: 100%; aspect-ratio: 3 / 2; display: flex; align-items: center; justify-content: center;
  background: var(--qv2-bg-alt); color: var(--primary-color); overflow: hidden;
}
.qv2-card__icon i { font-size: 40px; color: var(--primary-color); transition: color 0.2s; }
.qv2-card__icon img { width: 100%; height: 100%; object-fit: cover; display: block; }
.qv2-card.is-selected .qv2-card__icon { background: var(--qv2-accent-soft); }
.qv2-card.is-selected .qv2-card__icon i { color: var(--qv2-accent-dark); }
.qv2-card__label { display: flex; align-items: center; gap: 8px; padding: 12px 14px; font-size: 13px; font-weight: 500; color: var(--text-color); line-height: 1.35; }
.qv2-card.is-selected .qv2-card__label { color: var(--qv2-heading); font-weight: 600; }
.qv2-card__check {
  width: 16px; height: 16px; border: 1.5px solid var(--divider-color); border-radius: 4px;
  flex-shrink: 0; display: flex; align-items: center; justify-content: center; transition: all 0.15s;
}
.qv2-card.is-selected .qv2-card__check { background: var(--accent-color); border-color: var(--accent-color); }
.qv2-card.is-selected .qv2-card__check::after {
  content: ''; width: 8px; height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3L3 5L7 1' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* Options */
.qv2__opts { display: flex; flex-direction: column; gap: 10px; }
.qv2__opts--2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.qv2__opts--2col .qv2-opt:last-child:nth-child(odd) { grid-column: 1 / -1; }
.qv2__opts--3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.qv2-opt {
  display: flex; align-items: flex-start; gap: 14px; padding: 18px 20px;
  border: 1.5px solid var(--divider-color); border-radius: var(--qv2-radius-md);
  cursor: pointer; background: var(--bg-color); transition: all 0.18s; user-select: none;
}
.qv2-opt:hover       { border-color: var(--qv2-accent-soft); }
.qv2-opt.is-selected { border-color: var(--accent-color); background: rgba(243, 146, 0, 0.05); }
.qv2-opt__radio {
  width: 20px; height: 20px; border: 1.5px solid var(--divider-color); border-radius: 50%;
  flex-shrink: 0; margin-top: 2px; position: relative; transition: all 0.15s;
}
.qv2-opt.is-selected .qv2-opt__radio { border-color: var(--accent-color); background: var(--accent-color); }
.qv2-opt.is-selected .qv2-opt__radio::after { content: ''; position: absolute; inset: 4px; background: var(--white-color); border-radius: 50%; }
.qv2-opt__content { display: flex; flex-direction: column; gap: 4px; }
.qv2-opt__title   { font-size: 15px; font-weight: 600; color: var(--qv2-heading); }
.qv2-opt__desc    { font-size: 13px; color: var(--text-color); line-height: 1.5; }

/* Nav */
.qv2__nav { display: flex; align-items: center; justify-content: space-between; padding: 20px 40px; border-top: 1px solid var(--divider-color); background: var(--white-color); }
.qv2__back { background: var(--qv2-bg-alt); border: 1px solid var(--divider-color); border-radius: var(--qv2-radius-pill); padding: 12px 22px; font-size: 14px; font-weight: 500; color: var(--text-color); cursor: pointer; transition: all 0.2s; }
.qv2__back:hover:not(:disabled) { background: var(--bg-color); color: var(--qv2-heading); }
.qv2__back:disabled { opacity: 0.4; cursor: not-allowed; }
.qv2__next {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-color); color: #fff; border: none;
  border-radius: var(--qv2-radius-pill); padding: 13px 30px;
  font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(243, 146, 0, 0.28);
}
.qv2__next:hover { background: #d97f00; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(243, 146, 0, 0.34); }

/* Loader */
.qv2__loader { display: none; flex-direction: column; align-items: center; justify-content: center; padding: 80px 40px; gap: 24px; text-align: center; }
.qv2__loader.is-active { display: flex; }
.qv2__spinner { width: 64px; height: 64px; border: 4px solid var(--qv2-bg-alt); border-top-color: var(--accent-color); border-radius: 50%; animation: qv2Spin 0.9s linear infinite; }
@keyframes qv2Spin { to { transform: rotate(360deg); } }
.qv2__loader-text { font-size: 15px; font-weight: 600; color: var(--qv2-heading); }

/* Success */
.qv2__success { padding: 60px 40px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.qv2__success[hidden] { display: none; }
.qv2__success-icon { width: 72px; height: 72px; background: var(--qv2-accent-soft); border: 1px solid rgba(243, 146, 0, 0.3); border-radius: 50%; color: var(--qv2-accent-dark); display: flex; align-items: center; justify-content: center; }
.qv2__success-title { font-size: 24px; font-weight: 600; color: var(--qv2-heading); }
.qv2__success-text  { font-size: 14px; color: var(--text-color); line-height: 1.7; max-width: 420px; margin: 0; }

/* Final */
.qv2__final { padding: 36px 40px 24px; }
.qv2__final[hidden] { display: none; }
.qv2-result { background: linear-gradient(135deg, rgba(26, 77, 122, 0.06), rgba(243, 146, 0, 0.1)); border: 1px solid rgba(26, 77, 122, 0.1); border-radius: var(--qv2-radius-md); padding: 16px 20px; margin-bottom: 16px; }
.qv2-result__label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-color); margin-bottom: 6px; }
.qv2-result__program { font-size: 18px; font-weight: 600; color: var(--qv2-heading); margin-bottom: 10px; line-height: 1.25; letter-spacing: -0.01em; }
.qv2-result__grid { display: flex; align-items: stretch; gap: 16px; margin-bottom: 10px; }
.qv2-result__item { flex: 1; }
.qv2-result__item-label { font-size: 11px; color: var(--text-color); margin-bottom: 2px; }
.qv2-result__item-value { font-size: 16px; font-weight: 600; color: var(--qv2-heading); letter-spacing: -0.01em; line-height: 1.3; }
.qv2-result__divider { width: 1px; background: rgba(26, 77, 122, 0.15); flex-shrink: 0; }
.qv2-result__note { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--text-color); border-top: 1px solid rgba(26, 77, 122, 0.08); padding-top: 10px; }

/* Warning */
.qv2-warning { display: flex; align-items: flex-start; gap: 10px; padding: 14px 18px; background: rgba(243, 146, 0, 0.1); border: 1px solid var(--qv2-accent-soft); border-radius: 10px; margin-bottom: 24px; font-size: 13px; line-height: 1.5; color: var(--qv2-heading); }
.qv2-warning[hidden] { display: none; }
.qv2-warning svg { color: var(--qv2-accent-dark); flex-shrink: 0; margin-top: 1px; }

/* Eyebrow / messengers */
.qv2-eyebrow { display: inline-flex; align-items: center; background: var(--qv2-accent-soft); color: var(--qv2-accent-dark); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 12px; border-radius: var(--qv2-radius-pill); margin-bottom: 12px; }
.qv2__messengers-title { font-size: 18px; font-weight: 600; color: var(--qv2-heading); margin-bottom: 18px; line-height: 1.3; }
.qv2__messengers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 20px; }
.qv2-messenger { border: 1.5px solid var(--divider-color); border-radius: var(--qv2-radius-md); padding: 14px 8px 12px; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 8px; transition: all 0.18s; font-size: 12px; font-weight: 600; color: var(--text-color); background: var(--bg-color); user-select: none; }
.qv2-messenger:hover { border-color: var(--qv2-accent-soft); }
.qv2-messenger.is-active { border-color: var(--accent-color); background: rgba(243, 146, 0, 0.05); color: var(--qv2-heading); box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.12); }
.qv2-messenger__icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Fields */
.qv2__fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.qv2-field__label { display: block; font-size: 12px; font-weight: 600; color: var(--text-color); margin-bottom: 6px; }
.qv2-field__input { width: 100%; background: var(--bg-color); border: 1.5px solid var(--divider-color); border-radius: 10px; padding: 14px 16px; font-size: 15px; color: var(--qv2-heading); outline: none; transition: all 0.2s; box-sizing: border-box; }
.qv2-field__input:focus    { border-color: var(--accent-color); background: var(--white-color); }
.qv2-field__input.has-error{ border-color: #c44; }
.qv2-field__input::placeholder { color: #9aa4ad; opacity: 1; }

/* Trust */
.qv2-trust { display: flex; flex-wrap: wrap; gap: 8px 16px; padding: 14px 0 0; border-top: 1px solid var(--divider-color); margin-top: 4px; }
.qv2-trust__item { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 500; color: var(--text-color); }
.qv2-trust__item svg { color: var(--accent-color); flex-shrink: 0; }

/* Right sidebar */
.qv2__right { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 100px; }
.qv2-manager { border-radius: var(--qv2-radius-lg); overflow: hidden; position: relative; }
.qv2-manager__img { width: 100%; height: 300px; object-fit: cover; object-position: center top; display: block; }
.qv2-manager__info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; background: linear-gradient(to top, rgba(26, 77, 122, 0.9), transparent); }
.qv2-manager__name { font-size: 16px; font-weight: 600; color: var(--white-color); margin-bottom: 2px; }
.qv2-manager__role { font-size: 12px; color: rgba(255, 255, 255, 0.78); }
.qv2-bonus { background: var(--white-color); border: 1px solid var(--divider-color); border-radius: var(--qv2-radius-lg); padding: 24px; }
.qv2-bonus__title { font-size: 16px; font-weight: 600; color: var(--qv2-heading); margin-bottom: 16px; letter-spacing: -0.01em; }
.qv2-bonus__items { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.qv2-bonus__item { border-radius: 10px; overflow: hidden; aspect-ratio: 3 / 4; }
.qv2-bonus__bg { width: 100%; height: 100%; background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: space-between; padding: 8px; position: relative; border-radius: 10px; }
.qv2-bonus__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(26, 77, 122, 0.9) 100%); border-radius: 10px; pointer-events: none; }
.qv2-bonus__lock { position: relative; z-index: 1; width: 20px; height: 20px; background: rgba(255, 255, 255, 0.15); border-radius: 5px; display: flex; align-items: center; justify-content: center; align-self: flex-start; }
.qv2-bonus__label { position: relative; z-index: 1; font-size: 10px; font-weight: 600; color: var(--white-color); line-height: 1.35; }

/* Responsive */
@media (max-width: 1199.98px) {
  .qv2__layout { grid-template-columns: 1fr; }
  .qv2__right  { position: static; flex-direction: row; flex-wrap: wrap; }
  .qv2-manager, .qv2-bonus { flex: 1; min-width: 280px; }
  .qv2-manager__img { height: 220px; }
}
@media (max-width: 768px) {
  .qv2__body  { padding: 24px 20px 0; }
  .qv2__nav   { padding: 16px 20px; }
  .qv2__final { padding: 24px 20px 0; }
  .qv2__cards--3col, .qv2__cards--2col { grid-template-columns: repeat(2, 1fr); }
  .qv2__messengers { grid-template-columns: repeat(2, 1fr); }
  .qv2__fields { grid-template-columns: 1fr; }
  .qv2-result__grid { flex-direction: column; gap: 12px; }
  .qv2-result__divider { width: 100%; height: 1px; }
  .qv2__success { padding: 40px 20px; }
  .qv2__question { font-size: 20px; }
}
@media (max-width: 575px) {
  .qv2__body { padding: 20px 16px 0; }
  .qv2__final { padding: 20px 16px 0; }
  .qv2__nav { padding: 14px 16px; gap: 10px; }
  .qv2__question { font-size: 18px; margin-bottom: 20px; }
  .qv2__step-badge { font-size: 11px; padding: 4px 10px; margin-bottom: 12px; }
  .qv2-card__label { padding: 10px 12px; font-size: 12px; gap: 6px; }
  .qv2-card__icon i { font-size: 32px; }
  .qv2__opts--2col, .qv2__opts--3col { grid-template-columns: 1fr; }
  .qv2-opt { padding: 12px 14px; gap: 12px; }
  .qv2-opt__title { font-size: 14px; }
  .qv2-opt__desc { font-size: 12px; }
  .qv2__messengers { gap: 8px; }
  .qv2-messenger__icon { width: 32px !important; height: 32px !important; }
  .qv2-manager__img { height: 180px; }
  .qv2-manager__name { font-size: 15px; }
  .qv2__back { padding: 10px 16px; font-size: 13px; }
  .qv2__next { padding: 12px 22px; font-size: 14px; }
  .qv2-result { padding: 14px 16px; }
}
@media (max-width: 480px) { .qv2__cards--3col { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 360px) {
  .qv2__cards--3col, .qv2__cards--2col { grid-template-columns: 1fr; }
  .qv2-card__icon { aspect-ratio: 3 / 1; }
}


/* ══════════════════════════════════════════════════════
   THANK YOU — службова сторінка після сабміту форм
   ══════════════════════════════════════════════════════ */
.cnl-thankyou { background: var(--bg-color); }
.cnl-thankyou__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cnl-thankyou__icon {
  width: 92px; height: 92px; margin: 0 auto 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(243, 146, 0, 0.12);
  color: #F39200; font-size: 44px;
}
.cnl-thankyou .sec-sub-title { margin-left: auto; margin-right: auto; }
.cnl-thankyou__desc {
  font-size: 16px; line-height: 1.7; color: var(--text-color);
  max-width: 560px; margin: 0 auto 40px;
}
.cnl-thankyou__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-bottom: 44px; text-align: left;
}
.cnl-thankyou__step {
  background: #fff; border: 1px solid rgba(26, 77, 122, 0.12);
  border-radius: 14px; padding: 24px 22px;
  display: flex; flex-direction: column; gap: 12px;
}
.cnl-thankyou__num {
  width: 38px; height: 38px; border-radius: 50%;
  background: #1A4D7A; color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 17px;
}
.cnl-thankyou__step p { margin: 0; font-size: 15px; line-height: 1.55; color: #273A29; }
.cnl-thankyou__actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center;
  margin-bottom: 36px;
}
/* outline-варіант кнопки поза hero-scope */
.cnl-thankyou .cnl-btn-outline { background: transparent !important; }
.cnl-thankyou .cnl-btn-outline::before,
.cnl-thankyou .cnl-btn-outline::after { background: transparent !important; }
.cnl-thankyou .cnl-btn-outline {
  border: 2px solid #1A4D7A !important;
}
.cnl-thankyou .cnl-btn-outline .btn-title { color: #1A4D7A !important; }
.cnl-thankyou .cnl-btn-outline:hover .btn-title { color: #fff !important; }
.cnl-thankyou__contact {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding-top: 28px; border-top: 1px solid rgba(26, 77, 122, 0.12);
}
.cnl-thankyou__phone {
  font-size: 24px; font-weight: 700; color: #1A4D7A;
  display: inline-flex; align-items: center; gap: 10px;
}
.cnl-thankyou__phone:hover { color: #F39200; }
.cnl-thankyou__phone i { color: #F39200; font-size: 20px; }
.cnl-thankyou__hours { font-size: 13px; color: var(--text-color); }

@media (max-width: 767.98px) {
  .cnl-thankyou__steps { grid-template-columns: 1fr; gap: 12px; }
  .cnl-thankyou__phone { font-size: 20px; }
  .cnl-thankyou__actions .theme-btn { width: 100%; }
}


/* ══════════════════════════════════════════════════════
   SIDE-LINKS — плаваюча панель швидких CTA (порт із sens)
   Зміщено вище Seniar scroll-up. Orange FAB, navy phone.
   ══════════════════════════════════════════════════════ */
/* FAB центрується рівно над Seniar back-to-top (right:50px, центр 72px),
   із зазором — щоб не налазити. */
.cnl-side-widgets {
  position: fixed; right: 43px; bottom: 110px; z-index: 99;
  display: flex; flex-direction: column; align-items: flex-end;
  pointer-events: none;
}
.cnl-side-widgets > * { pointer-events: auto; }

.side-links {
  position: relative; display: flex; flex-direction: column; align-items: flex-end;
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
}
.side-links.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }

.side-links__toggle {
  width: 58px; height: 58px; border: 0; border-radius: 50%;
  background: linear-gradient(135deg, #F39200, #d97f00);
  box-shadow: 0 8px 22px rgba(243, 146, 0, 0.4);
  color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: transform 0.25s ease; position: relative; z-index: 2;
}
.side-links__toggle:hover  { transform: scale(1.06); }
.side-links__toggle:active { transform: scale(0.96); }
.side-links__toggle::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid #F39200; opacity: 0.6;
  animation: cnlSidePulse 2s ease-out infinite; pointer-events: none;
}
.side-links__toggle svg { transition: transform 0.3s ease; }
.side-links.is-open .side-links__toggle::after { animation: none; opacity: 0; }
.side-links.is-open .side-links__toggle svg { transform: rotate(45deg); }

.side-links__panel {
  position: absolute; bottom: 0; right: calc(100% + 14px);
  display: flex; flex-direction: column; gap: 8px; padding: 16px;
  background: #fff; border-radius: 16px; box-shadow: 0 18px 50px rgba(26, 77, 122, 0.18);
  min-width: 250px; opacity: 0; visibility: hidden;
  transform: translateX(12px); transform-origin: right bottom;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}
.side-links.is-open .side-links__panel { opacity: 1; visibility: visible; transform: translateX(0); }
.side-links__panel::after {
  content: ''; position: absolute; right: -8px; bottom: 22px; width: 16px; height: 16px;
  background: #fff; transform: rotate(45deg); box-shadow: 4px -4px 8px rgba(26, 77, 122, 0.04);
}
.side-links__close {
  position: absolute; top: -10px; right: -10px; width: 26px; height: 26px; border: 0;
  border-radius: 50%; background: #1A4D7A; color: #fff;
  display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2;
  box-shadow: 0 2px 8px rgba(26, 77, 122, 0.25); transition: background 0.2s, transform 0.2s;
}
.side-links__close:hover { background: #F39200; transform: rotate(90deg); }
.side-links__list { display: flex; flex-direction: column; gap: 8px; }
.side-links__item {
  display: flex; align-items: center; gap: 12px; padding: 10px 14px;
  background: #FAF7F3; border: 0; border-radius: 10px; text-decoration: none; text-align: left;
  cursor: pointer; color: #273A29; font-size: 13px; font-weight: 600; line-height: 1.25;
  transition: background 0.2s, color 0.2s, transform 0.15s; width: 100%;
}
.side-links__item:hover { background: #F39200; color: #fff; transform: translateX(-2px); }
.side-links__item:hover .side-links__icon { background: rgba(255,255,255,0.2); color: #fff; }
.side-links__item--phone { background: linear-gradient(135deg, #1A4D7A, #2E6B9E); color: #fff; }
.side-links__item--phone .side-links__icon { background: rgba(255,255,255,0.2); color: #fff; }
.side-links__item--phone:hover { background: linear-gradient(135deg, #16406a, #255c8a); color: #fff; transform: translateX(-2px); }
.side-links__icon {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  background: #fff; color: #1A4D7A; display: flex; align-items: center; justify-content: center;
  font-size: 15px; transition: background 0.2s, color 0.2s;
}
.side-links__label { display: block; }
@keyframes cnlSidePulse { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.4); } }

@media (max-width: 640px) {
  .cnl-side-widgets { right: 46px; bottom: 104px; }
  .side-links__toggle { width: 52px; height: 52px; }
  .side-links__panel {
    position: absolute; bottom: calc(100% + 10px); right: 0; left: auto;
    min-width: 220px; max-width: calc(100vw - 70px); transform: translateY(10px);
  }
  .side-links__panel::after { display: none; }
  .side-links.is-open .side-links__panel { transform: translateY(0); }
}


/* ══════════════════════════════════════════════════════
   POPUPS — модалки (consult / прайс / дякуємо / політика)
   ══════════════════════════════════════════════════════ */
body.cnl-popup-open { overflow: hidden; }

.cnl-popup {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
}
.cnl-popup.is-active { opacity: 1; visibility: visible; }
.cnl-popup__overlay { position: absolute; inset: 0; background: rgba(26, 77, 122, 0.55); backdrop-filter: blur(2px); }
.cnl-popup__dialog {
  position: relative; z-index: 1; width: 100%; max-width: 440px;
  background: #fff; border-radius: 18px; padding: 38px 34px 30px;
  box-shadow: 0 30px 80px rgba(26, 77, 122, 0.3);
  transform: translateY(16px) scale(0.98); transition: transform 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: calc(100vh - 40px); overflow-y: auto;
}
.cnl-popup.is-active .cnl-popup__dialog { transform: translateY(0) scale(1); }
.cnl-popup__dialog--wide { max-width: 620px; }
.cnl-popup__close {
  position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border: 0;
  border-radius: 50%; background: #FAF7F3; color: #1A4D7A; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s;
}
.cnl-popup__close:hover { background: #F39200; color: #fff; transform: rotate(90deg); }
.cnl-popup__header { text-align: center; margin-bottom: 22px; }
.cnl-popup__title { font-size: 24px; font-weight: 700; color: #1A4D7A; line-height: 1.25; margin: 0 0 8px; }
.cnl-popup__subtitle { font-size: 14px; color: var(--text-color); line-height: 1.55; margin: 0; }

.cnl-popup__form { display: flex; flex-direction: column; gap: 12px; }
.cnl-field { position: relative; }
.cnl-field__input, .cnl-field__select {
  width: 100%; background: #FAF7F3; border: 1.5px solid rgba(26, 77, 122, 0.14);
  border-radius: 10px; padding: 14px 16px; font-size: 15px; color: #1A4D7A;
  outline: none; transition: border-color 0.2s, background 0.2s; box-sizing: border-box;
}
.cnl-field__input:focus, .cnl-field__select:focus { border-color: #F39200; background: #fff; }
.cnl-field__input::placeholder { color: #9aa4ad; opacity: 1; }
.cnl-field__select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%231A4D7A' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.cnl-popup__submit { margin-top: 4px; width: 100%; justify-content: center; }

.cnl-consent {
  display: flex; align-items: flex-start; gap: 9px; margin-top: 6px;
  font-size: 12px; line-height: 1.45; color: var(--text-color); cursor: pointer; user-select: none;
}
.cnl-consent input { position: absolute; opacity: 0; width: 0; height: 0; }
.cnl-consent__box {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 1px; border-radius: 5px;
  border: 1.5px solid rgba(26, 77, 122, 0.3); position: relative; transition: all 0.15s;
}
.cnl-consent input:checked + .cnl-consent__box { background: #F39200; border-color: #F39200; }
.cnl-consent input:checked + .cnl-consent__box::after {
  content: ''; position: absolute; left: 5px; top: 1px; width: 5px; height: 10px;
  border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg);
}
.cnl-consent a { color: #1A4D7A; text-decoration: underline; }
.cnl-consent a:hover { color: #F39200; }

/* Дякуємо */
.cnl-popup__dialog--thanks { text-align: center; max-width: 420px; }
.cnl-thanks { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.cnl-thanks__icon {
  width: 78px; height: 78px; border-radius: 50%; background: rgba(243, 146, 0, 0.12);
  color: #F39200; font-size: 40px; display: flex; align-items: center; justify-content: center;
}
.cnl-thanks__title { font-size: 26px; font-weight: 700; color: #1A4D7A; margin: 0; }
.cnl-thanks__text { font-size: 14px; color: var(--text-color); line-height: 1.65; margin: 0; max-width: 340px; }
.cnl-thanks__phone {
  font-size: 20px; font-weight: 700; color: #1A4D7A;
  display: inline-flex; align-items: center; gap: 9px; margin: 4px 0 6px;
}
.cnl-thanks__phone:hover { color: #F39200; }
.cnl-thanks__phone i { color: #F39200; font-size: 17px; }
.cnl-thanks__btn { justify-content: center; }

/* Політика (text/wide + scroll) */
.cnl-popup__scroll { max-height: calc(100vh - 120px); overflow-y: auto; padding-right: 6px; }
.cnl-popup__scroll .cnl-popup__title { text-align: left; margin-bottom: 16px; }
.cnl-popup__text { font-size: 14px; color: var(--text-color); line-height: 1.7; }
.cnl-popup__text h4 { font-size: 16px; color: #1A4D7A; margin: 18px 0 6px; }
.cnl-popup__text p { margin: 0 0 10px; }
.cnl-popup__text a { color: #1A4D7A; text-decoration: underline; }

@media (max-width: 575.98px) {
  .cnl-popup__dialog { padding: 32px 22px 24px; border-radius: 14px; }
  .cnl-popup__title { font-size: 21px; }
}

/* ── Прайс — широкий попап з фото-фоном + кружок «Оновлено» ── */
.cnl-popup--price .cnl-popup__dialog--price {
  max-width: 940px; padding: 0; overflow: hidden; border-radius: 18px;
  background-color: #16406a; background-size: cover; background-position: center;
  color: #fff;
}
.cnl-popup--price .cnl-popup__dialog--price::after {
  content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(90deg, rgba(26,77,122,0.96) 0%, rgba(26,77,122,0.8) 52%, rgba(26,77,122,0.42) 100%);
}
.cnl-popup--price .cnl-popup__close {
  z-index: 5; background: rgba(255,255,255,0.16); color: #fff; backdrop-filter: blur(4px);
}
.cnl-popup--price .cnl-popup__close:hover { background: #fff; color: #1A4D7A; }

.cnl-price {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1fr) 150px; gap: 28px; align-items: center;
  padding: 46px 52px; min-height: 320px;
}
.cnl-price__content { display: flex; flex-direction: column; justify-content: center; gap: 22px; }
.cnl-price__title {
  font-family: 'Lora', Georgia, serif; font-size: clamp(26px, 3vw, 38px);
  font-weight: 700; line-height: 1.15; color: #fff; margin: 0; letter-spacing: -0.01em;
}
.cnl-price__title b { display: block; font-weight: 700; color: #fff; }
.cnl-price__title span { color: #F39200; }
.cnl-price__hint { font-size: 14px; color: rgba(255,255,255,0.78); margin: 0 0 12px; }
.cnl-price__form { display: flex; flex-direction: column; gap: 14px; }
.cnl-price__row { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: stretch; }
.cnl-price__row .cnl-field__input, .cnl-price__row .cnl-field__select {
  background: #fff; border-color: transparent; height: 54px; color: #1A4D7A;
}
.cnl-price__row .cnl-field__input::placeholder { color: #6b7480; }
/* Цінова модалка: dial-code (+380) успадковував білий колір діалогу → на білому інпуті
   був невидимий, лишалась «порожнеча» під padding. Робимо його видимим (темним). */
.cnl-popup--price .cnl-price__row .iti__selected-dial-code,
.cnl-popup--price .cnl-price__row .iti__country-container,
.cnl-popup--price .cnl-price__row .iti__selected-country { color: #1A4D7A; }
.cnl-popup--price .cnl-price__row .iti__arrow { border-top-color: #1A4D7A; }
.cnl-price__submit {
  height: 54px; white-space: nowrap; padding: 0 26px; border: 0; border-radius: 10px;
  background: linear-gradient(135deg, #F39200, #d97f00); color: #fff; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: filter 0.2s, transform 0.15s; box-shadow: 0 6px 16px rgba(243,146,0,0.35);
}
.cnl-price__submit:hover { filter: brightness(1.06); transform: translateY(-1px); }
.cnl-consent--light { color: rgba(255,255,255,0.82); }
.cnl-consent--light .cnl-consent__box { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.35); }
.cnl-consent--light a { color: #F8B24D; }
.cnl-consent--light a:hover { color: #fff; }

.cnl-price__circle {
  position: relative; width: 150px; height: 150px; border-radius: 50%; background: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 14px; color: #1A4D7A; justify-self: center;
}
.cnl-price__circle::before {
  content: ''; position: absolute; inset: 7px; border-radius: 50%;
  border: 1.5px dashed rgba(26,77,122,0.3); animation: cnlCircleSpin 14s linear infinite;
}
.cnl-price__circle-icon { color: #F39200; font-size: 22px; margin-bottom: 6px; }
.cnl-price__circle p { margin: 0; font-weight: 600; font-size: 11px; letter-spacing: 0.03em; color: #5a6470; }
.cnl-price__circle span { display: block; font-weight: 700; font-size: 14px; color: #1A4D7A; margin-top: 2px; }
@keyframes cnlCircleSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }

@media (max-width: 767.98px) {
  .cnl-price { grid-template-columns: 1fr; padding: 38px 26px; gap: 20px; }
  .cnl-price__circle { display: none; }
  .cnl-price__row { grid-template-columns: 1fr; }
  .cnl-price__submit { height: 52px; }
  .cnl-popup--price .cnl-popup__dialog--price::after {
    background: linear-gradient(180deg, rgba(26,77,122,0.92) 0%, rgba(26,77,122,0.92) 100%);
  }
}

/* ══════════════════════════════════════════════════════
   CALC-BANNER — плаваючий банер «Дізнайтесь вартість»
   Зліва внизу (не колізить з FAB/back-to-top праворуч).
   ══════════════════════════════════════════════════════ */
.cnl-calc-banner {
  position: fixed; left: 24px; bottom: 24px; z-index: 9990; max-width: 340px;
  opacity: 0; visibility: hidden; transform: translateY(40px);
  transition: opacity 0.45s ease, visibility 0.45s ease, transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cnl-calc-banner.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.cnl-calc-banner__inner {
  position: relative; padding: 24px 24px 22px; border-radius: 16px; overflow: hidden;
  background-size: cover; background-position: center; color: #fff;
  box-shadow: 0 18px 50px rgba(26, 77, 122, 0.35);
}
.cnl-calc-banner__inner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #F39200, #d97f00);
}
.cnl-calc-banner__title { font-size: 19px; font-weight: 700; line-height: 1.25; margin: 0 0 6px; color: #fff; }
.cnl-calc-banner__text { font-size: 13px; line-height: 1.45; color: rgba(255,255,255,0.85); margin: 0 0 14px; }
.cnl-calc-banner__btn {
  border: 0; border-radius: 100px; padding: 12px 22px; font-size: 14px; font-weight: 700; cursor: pointer;
  background: linear-gradient(135deg, #F39200, #d97f00); color: #fff;
  box-shadow: 0 6px 16px rgba(243,146,0,0.35); transition: filter 0.2s, transform 0.15s;
}
.cnl-calc-banner__btn:hover { filter: brightness(1.06); transform: translateY(-1px); }
.cnl-calc-banner__close {
  position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; border: 0; border-radius: 50%;
  background: rgba(255,255,255,0.18); color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: background 0.2s, transform 0.2s;
}
.cnl-calc-banner__close:hover { background: #fff; color: #1A4D7A; transform: rotate(90deg); }

@media (max-width: 640px) {
  .cnl-calc-banner { left: 50%; right: auto; bottom: 16px; width: calc(100% - 24px); max-width: 420px;
    transform: translateX(-50%) translateY(40px); }
  .cnl-calc-banner.is-visible { transform: translateX(-50%) translateY(0); }
}


/* ══════════════════════════════════════════════════════
   404 — кастомна сторінка «не знайдено» (креатив під бренд)
   ══════════════════════════════════════════════════════ */
.cnl-404 { background: #fff; }
.cnl-404__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cnl-404 .sec-title .title { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.2; }

.cnl-404__code {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-bottom: 28px; line-height: 1;
}
.cnl-404__digit {
  font-family: 'Lora', Georgia, serif; font-weight: 700;
  font-size: clamp(96px, 18vw, 200px); color: #1A4D7A; letter-spacing: -0.02em;
}
.cnl-404__zero {
  position: relative; width: clamp(110px, 20vw, 210px); height: clamp(110px, 20vw, 210px);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cnl-404__zero-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: clamp(9px, 1.6vw, 16px) solid rgba(26, 77, 122, 0.14);
  border-top-color: #F39200; border-right-color: #F39200;
  animation: cnl404Spin 6s linear infinite;
}
.cnl-404__zero i {
  font-size: clamp(40px, 7vw, 74px); color: #1A4D7A;
}
@keyframes cnl404Spin { to { transform: rotate(360deg); } }

.cnl-404 .sec-sub-title { margin-left: auto; margin-right: auto; }
.cnl-404__desc {
  font-size: 16px; line-height: 1.7; color: var(--text-color);
  max-width: 580px; margin: 0 auto 34px;
}
.cnl-404__actions {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-bottom: 38px;
}
.cnl-404 .cnl-btn-outline { background: transparent !important; border: 2px solid #1A4D7A !important; }
.cnl-404 .cnl-btn-outline .btn-title { color: #1A4D7A !important; }
.cnl-404 .cnl-btn-outline:hover .btn-title { color: #fff !important; }

.cnl-404__links { margin-bottom: 34px; }
.cnl-404__links-label { font-size: 13px; font-weight: 600; color: #1A4D7A; margin: 0 0 14px; letter-spacing: 0.02em; }
.cnl-404__links ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
}
.cnl-404__links li a {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid rgba(26, 77, 122, 0.12); border-radius: 100px;
  padding: 10px 18px; font-size: 14px; font-weight: 600; color: #273A29;
  transition: all 0.2s;
}
.cnl-404__links li a i { color: #F39200; font-size: 13px; }
.cnl-404__links li a:hover { background: #1A4D7A; color: #fff; border-color: #1A4D7A; transform: translateY(-2px); }
.cnl-404__links li a:hover i { color: #fff; }

.cnl-404__contact {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding-top: 28px; border-top: 1px solid rgba(26, 77, 122, 0.12);
}
.cnl-404__phone {
  font-size: 24px; font-weight: 700; color: #1A4D7A;
  display: inline-flex; align-items: center; gap: 10px;
}
.cnl-404__phone:hover { color: #F39200; }
.cnl-404__phone i { color: #F39200; font-size: 20px; }
.cnl-404__hours { font-size: 13px; color: var(--text-color); }

@media (max-width: 575.98px) {
  .cnl-404__code { gap: 4px; }
  .cnl-404__phone { font-size: 20px; }
  .cnl-404__actions { flex-direction: column; align-items: center; }
}


/* ══════════════════════════════════════════════════════
   PAGE-TITLE — переюзовний банер сторінки (Seniar .page-title).
   Navy-градієнт замість orange, помірна висота.
   ══════════════════════════════════════════════════════ */
.cnl-page-title {
  min-height: 380px !important; background-color: #1A4D7A !important;
  background-position: center 30% !important;
}
/* Збоку темніше (під текст зліва), праворуч світліше — фото читається; знизу легка віньєтка */
.cnl-page-title::before {
  background:
    linear-gradient(90deg, rgba(20,58,92,0.9) 0%, rgba(20,58,92,0.62) 45%, rgba(20,58,92,0.32) 100%),
    linear-gradient(180deg, rgba(20,58,92,0) 55%, rgba(20,58,92,0.5) 100%) !important;
  opacity: 1 !important;
}
.cnl-page-title .auto-container { position: relative; z-index: 2; }
.cnl-page-title .cnl-page-title__content { padding: 8px 0; }
.cnl-page-title .title { font-size: clamp(34px, 5vw, 56px) !important; margin: 0 0 18px !important; }
.cnl-page-title .text { letter-spacing: 0; opacity: 0.92; margin: 0 0 24px !important; max-width: 540px; }
/* Хлібні крихти — дихання + чистий CSS-шеврон (не залежить від FA Pro) */
.cnl-page-title .page-breadcrumb { margin-top: 0 !important; }
.cnl-page-title .page-breadcrumb li { font-size: 15px; margin-right: 22px; padding-right: 0; }
.cnl-page-title .page-breadcrumb li a { color: #F39200; }
.cnl-page-title .page-breadcrumb li a:hover { color: #fff; }
.cnl-page-title .page-breadcrumb li::after {
  content: "" !important; font-family: inherit !important;
  position: absolute; right: -15px; top: 50%;
  width: 6px; height: 6px; margin-top: -4px; padding: 0;
  border-top: 2px solid rgba(255,255,255,0.6);
  border-right: 2px solid rgba(255,255,255,0.6);
  transform: rotate(45deg); transition: none;
}
.cnl-page-title .page-breadcrumb li:last-child::after { display: none; }
@media (max-width: 767.98px) {
  .cnl-page-title { min-height: 240px !important; }
}

/* Google-карта — у контейнері, заокруглена */
.cnl-map { padding: 0 0 100px; }
.cnl-map__frame {
  line-height: 0; border-radius: 24px; overflow: hidden;
  box-shadow: 0 18px 50px rgba(26, 77, 122, 0.14);
  border: 1px solid rgba(26, 77, 122, 0.1);
}
.cnl-map__frame { position: relative; }
.cnl-map__frame iframe { display: block; width: 100%; filter: grayscale(0.1); }

/* Власний брендовий пін по центру карти (Google-iframe не дає вставити маркер всередину) */
.cnl-map__pin {
  position: absolute; left: 50%; top: 50%; width: 42px; height: 56px;
  margin-left: -21px; margin-top: -56px; /* вістря пін-краплі = точка адреси */
  pointer-events: none; z-index: 2;
  filter: drop-shadow(0 6px 9px rgba(0,0,0,0.3));
  animation: cnlPinDrop 2.4s ease-in-out infinite;
}
.cnl-map__pin svg { width: 100%; height: 100%; display: block; }
.cnl-map__pulse {
  position: absolute; left: 50%; bottom: -4px; width: 26px; height: 9px; margin-left: -13px;
  background: rgba(26,77,122,0.35); border-radius: 50%;
  animation: cnlPinShadow 2.4s ease-in-out infinite;
}
@keyframes cnlPinDrop { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes cnlPinShadow { 0%,100% { transform: scale(1); opacity: 0.35; } 50% { transform: scale(0.7); opacity: 0.2; } }
@media (max-width: 767.98px) {
  .cnl-map { padding: 0 0 70px; }
  .cnl-map__frame { border-radius: 16px; }
}


/* ══════════════════════════════════════════════════════
   МОБІЛЬНЕ МЕНЮ — брендова панель: меню + повна контактна інфо
   ══════════════════════════════════════════════════════ */
.mobile-menu .menu-box {
  background: linear-gradient(180deg, #1A4D7A 0%, #12395a 100%) !important;
}
.mobile-menu .navigation > li { border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-menu .navigation > li > a {
  color: #fff !important; font-weight: 600; text-transform: none;
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu .navigation > li > a:hover,
.mobile-menu .navigation > li.current > a { color: #F39200 !important; padding-left: 32px; }

.cnl-mm { padding: 22px 25px 40px; }
/* CTA на повну ширину: менший title (16px жорстко в донорі) + менші відступи,
   щоб текст і слайд-стрілка вміщалися й не обрізались. */
.cnl-mm__cta { width: 100%; justify-content: center; margin-bottom: 24px; padding-left: 18px !important; padding-right: 8px !important; }
.cnl-mm__cta .btn-title { font-size: 14px !important; white-space: nowrap; }

.cnl-mm__contacts { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 4px; }
.cnl-mm__contacts li a, .cnl-mm__static {
  display: flex; align-items: center; gap: 13px; padding: 9px 0; color: #fff; transition: color 0.2s;
}
.cnl-mm__contacts li a:hover { color: #F39200; }
.cnl-mm__contacts li a:hover .cnl-mm__ic { background: #F39200; color: #fff; }
.cnl-mm__ic {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); color: #F39200;
  display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all 0.2s;
}
.cnl-mm__txt { display: flex; flex-direction: column; font-size: 15px; font-weight: 600; line-height: 1.3; }
.cnl-mm__txt small { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.6); margin-top: 2px; }

.cnl-mm__msg-label { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 12px; font-weight: 600; }
.cnl-mm__msg-row { display: flex; gap: 12px; }
.cnl-mm__msg-btn {
  width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 20px; transition: transform 0.2s, filter 0.2s;
}
.cnl-mm__msg-btn:hover { transform: translateY(-2px); filter: brightness(1.1); color: #fff; }
.cnl-mm__msg-btn--viber { background: #7c4dff; }
.cnl-mm__msg-btn--wa { background: #25d366; }
.cnl-mm__msg-btn--tg { background: #2aabee; }

/* ─── Footer — Google reviews badge (білий пілл на темному футері) ─────── */
.cnl-greviews {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.cnl-greviews:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
}
.cnl-greviews__g { flex: 0 0 auto; line-height: 0; }
.cnl-greviews__body { display: flex; flex-direction: column; gap: 2px; }
.cnl-greviews__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #FBBC04;            /* Google gold */
  font-size: 14px;
  line-height: 1;
}
.cnl-greviews__rating {
  margin-left: 6px;
  color: #1A4D7A;            /* brand navy */
  font-size: 15px;
  font-weight: 700;
}
.cnl-greviews__count {
  color: #5f6368;            /* Google grey */
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
}


/* ══════════════════════════════════════════════════════
   SINGLE POST (news-details) — стаття блогу
   ══════════════════════════════════════════════════════ */
.cnl-post__wrap { max-width: 820px; margin: 0 auto; }
.cnl-post__meta { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 24px; font-size: 14px; color: var(--text-color); }
.cnl-post__meta i { color: #F39200; margin-right: 5px; }
.cnl-post__meta a { color: var(--text-color); }
.cnl-post__thumb { border-radius: 18px; overflow: hidden; margin-bottom: 32px; box-shadow: 0 14px 40px rgba(26,77,122,0.12); }
.cnl-post__thumb img { width: 100%; height: auto; display: block; }
.cnl-post__body { font-size: 17px; line-height: 1.8; color: #404040; }
.cnl-post__body h2 { font-size: 28px; color: #1A4D7A; margin: 34px 0 14px; }
.cnl-post__body h3 { font-size: 22px; color: #1A4D7A; margin: 28px 0 12px; }
.cnl-post__body p { margin: 0 0 18px; }
.cnl-post__body ul, .cnl-post__body ol { margin: 0 0 18px; padding-left: 22px; }
.cnl-post__body li { margin-bottom: 8px; }
.cnl-post__body a { color: #1A4D7A; text-decoration: underline; }
.cnl-post__body blockquote { border-left: 4px solid #F39200; background: #FAF7F3; padding: 18px 22px; margin: 24px 0; border-radius: 0 12px 12px 0; font-style: italic; color: #1A4D7A; }
.cnl-post__cta { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; background: #FAF7F3; border: 1px solid rgba(26,77,122,0.1); border-radius: 18px; padding: 30px 34px; margin: 42px 0 26px; }
.cnl-post__cta h3 { font-size: 22px; color: #1A4D7A; margin: 0 0 6px; }
.cnl-post__cta p { margin: 0; color: var(--text-color); font-size: 15px; }
.cnl-post__back { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: #1A4D7A; }
.cnl-post__back:hover { color: #F39200; }
.cnl-post__back i { color: #F39200; }
@media (max-width: 767.98px) { .cnl-post__cta { flex-direction: column; align-items: flex-start; padding: 24px; } .cnl-post__body { font-size: 16px; } }

/* Текстова/юридична сторінка — використовує типографіку .cnl-post__body */
.cnl-text__wrap { max-width: 860px; margin: 0 auto; }
.cnl-text__wrap h2:first-child, .cnl-text__wrap h3:first-child { margin-top: 0; }

/* Автор-бокс (E-E-A-T) у статті */
.cnl-author {
  display: flex; gap: 18px; align-items: flex-start;
  background: #FAF7F3; border: 1px solid rgba(26,77,122,0.1); border-radius: 16px;
  padding: 22px 24px; margin: 34px 0 4px;
}
.cnl-author__avatar {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: #1A4D7A; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.cnl-author__label { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: #F39200; font-weight: 700; margin-bottom: 2px; }
.cnl-author__name { display: block; font-size: 17px; font-weight: 700; color: #1A4D7A; margin-bottom: 6px; }
.cnl-author__bio { margin: 0; font-size: 14px; line-height: 1.6; color: var(--text-color); }
@media (max-width: 575.98px) { .cnl-author { flex-direction: column; gap: 12px; padding: 18px; } }

/* Підсторінка послуги — «Інші напрями» */
.cnl-other-services { margin-top: 40px; padding-top: 28px; border-top: 1px solid rgba(26,77,122,0.12); }
.cnl-other-services h3 { font-size: 20px; color: #1A4D7A; margin: 0 0 16px; }
.cnl-other-services ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.cnl-other-services li a { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: #273A29; font-size: 15px; }
.cnl-other-services li a i { color: #F39200; font-size: 13px; transition: transform 0.2s; }
.cnl-other-services li a:hover { color: #1A4D7A; }
.cnl-other-services li a:hover i { transform: translateX(3px); }
@media (max-width: 575.98px) { .cnl-other-services ul { grid-template-columns: 1fr; } }

/* Юр-лінки у футері */
.cnl-legal-links { display: flex; flex-wrap: wrap; gap: 6px 20px; }
.cnl-legal-links a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.cnl-legal-links a:hover { color: #F39200; }

/* wp_nav_menu активні класи → той самий orange, що донорський .current */
.main-header .navigation > li.current-menu-item > a,
.main-header .navigation > li.current_page_item > a,
.main-header .navigation > li.current-menu-parent > a,
.mobile-menu .navigation > li.current-menu-item > a,
.mobile-menu .navigation > li.current_page_item > a { color: var(--theme-color2) !important; }

/* ─── Tour / Consultation CTA (.cnl-tour) — витягнуто з архіву, адаптовано navy/orange ── */
.cnl-tour { padding: 90px 0; }
@media (max-width: 1023px) { .cnl-tour { padding: 64px 0; } }
@media (max-width: 767px)  { .cnl-tour { padding: 48px 0; } }
.cnl-tour__card {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: 26px; color: #fff; min-height: 380px;
  padding: 56px 56px 48px;
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,0.85fr);
  gap: 48px; align-items: center;
}
@media (max-width: 1199px) { .cnl-tour__card { padding: 44px; gap: 32px; } }
@media (max-width: 1023px) { .cnl-tour__card { grid-template-columns: 1fr; padding: 36px; } }
@media (max-width: 767px)  { .cnl-tour__card { padding: 26px; border-radius: 18px; } }
.cnl-tour__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 15% 15%, rgba(243,146,0,0.22), transparent 55%),
    radial-gradient(circle at 90% 85%, rgba(46,107,158,0.40), transparent 55%),
    linear-gradient(120deg, #1A4D7A 0%, #143b5e 50%, #2E6B9E 100%);
}
.cnl-tour__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 24px 24px; opacity: 0.55;
}
.cnl-tour__content { position: relative; z-index: 2; max-width: 540px; }
@media (max-width: 1023px) { .cnl-tour__content { max-width: 100%; } }
.cnl-tour__eyebrow {
  display: inline-block; margin: 0 0 14px; padding: 4px 14px;
  border: 1px solid rgba(243,146,0,0.55); border-radius: 999px;
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.14em; color: #F39200;
}
.cnl-tour__title {
  margin: 0 0 16px; font-size: clamp(1.625rem, 2.6vw, 2.25rem);
  line-height: 1.2; font-weight: 400; color: #fff; letter-spacing: -0.015em;
}
.cnl-tour__title b { font-weight: 700; }
.cnl-tour__subtitle {
  margin: 0 0 32px; font-size: 1rem; line-height: 1.55;
  color: rgba(255,255,255,0.82); max-width: 480px;
}
.cnl-tour__hl {
  color: #fff; font-weight: 500; text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.55);
}
.cnl-tour__widgets { list-style: none; margin: 0 0 32px; padding: 0; display: flex; flex-wrap: wrap; gap: 24px; }
.cnl-tour__widget { display: flex; align-items: center; gap: 12px; min-width: 200px; }
.cnl-tour__widget-icon {
  flex-shrink: 0; width: 44px; height: 44px; display: inline-flex;
  align-items: center; justify-content: center; border-radius: 14px;
  background: rgba(243,146,0,0.16); color: #F39200;
}
.cnl-tour__widget-icon svg { width: 22px; height: 22px; }
.cnl-tour__widget-text { display: flex; flex-direction: column; gap: 2px; line-height: 1.25; }
.cnl-tour__widget-text b { font-size: 0.9375rem; font-weight: 600; color: #fff; }
.cnl-tour__widget-text span { font-size: 0.8125rem; color: rgba(255,255,255,0.65); }
.cnl-tour__actions { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 20px 28px; }
.cnl-tour__phone { font-size: 0.9375rem; color: rgba(255,255,255,0.78); text-decoration: none; transition: color .2s ease; }
.cnl-tour__phone b { font-size: 1rem; color: #fff; font-weight: 600; letter-spacing: 0.01em; }
.cnl-tour__phone:hover { color: #fff; }
.cnl-tour__phone:hover b { color: #F39200; }
.cnl-tour__photo {
  position: relative; align-self: stretch; min-height: 280px;
  border-radius: 16px; overflow: hidden; background: rgba(255,255,255,0.04);
}
.cnl-tour__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
@media (max-width: 1023px) { .cnl-tour__photo { min-height: 240px; max-height: 340px; } }

/* ─── 14 Contact — форма у білій картці + чіткі інпути (блендились у бежевий фон) ── */
.contact-section-four .form-column .inner-column {
  background: #fff;
  border-radius: 22px;
  padding: 38px;
  box-shadow: 0 24px 54px rgba(26, 77, 122, 0.10);
}
@media (max-width: 575.98px) {
  .contact-section-four .form-column .inner-column { padding: 24px; }
}
.contact-section-four .form-clt input,
.contact-section-four .form-clt textarea {
  background-color: #F7F5F1 !important;       /* було --bg-color = фон секції */
  border: 1.5px solid rgba(26, 77, 122, 0.12) !important;
  border-radius: 10px !important;
  color: var(--headings-color) !important;
}
.contact-section-four .form-clt input:focus,
.contact-section-four .form-clt textarea:focus {
  background-color: #fff !important;
  border-color: var(--theme-color1) !important;
  box-shadow: 0 0 0 3px rgba(26, 77, 122, 0.10) !important;
}
.contact-section-four .form-clt input::placeholder,
.contact-section-four .form-clt textarea::placeholder { color: #9a958d !important; }

/* .cnl-tour title <b> — форс білий (глобальний strong/heading колір робив його темним на navy) */
.cnl-tour__title,
.cnl-tour__title b,
.cnl-tour__title strong { color: #fff !important; }

/* ─── Consultation CTA (.cnl-consultation) — витягнуто 1в1 з архіву, адаптовано navy/orange ── */
.cnl-consultation { padding: 96px 0; }
@media (max-width: 1023px) { .cnl-consultation { padding: 64px 0; } }
@media (max-width: 767px)  { .cnl-consultation { padding: 48px 0; } }
.cnl-consultation .sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.cnl-consultation__card {
  position: relative; isolation: isolate; overflow: hidden;
  border-radius: 24px; background-color: #0B1E31;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  color: #fff; min-height: 540px; padding: 64px 64px 48px;
}
@media (max-width: 1199px) { .cnl-consultation__card { padding: 48px 40px 40px; } }
@media (max-width: 1023px) { .cnl-consultation__card { min-height: 0; padding: 40px; } }
@media (max-width: 767px)  { .cnl-consultation__card { padding: 32px 24px; border-radius: 16px; } }
.cnl-consultation__overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(92deg, rgba(11,30,49,0.92) 0%, rgba(15,56,89,0.78) 45%, rgba(15,56,89,0.38) 75%, rgba(15,56,89,0.12) 100%),
    radial-gradient(circle at 12% 18%, rgba(46,107,158,0.35), transparent 55%),
    radial-gradient(circle at 88% 90%, rgba(243,146,0,0.18), transparent 55%);
}
@media (max-width: 1023px) {
  .cnl-consultation__overlay { background: linear-gradient(180deg, rgba(11,30,49,0.80) 0%, rgba(15,56,89,0.93) 100%); }
}
.cnl-consultation__content { position: relative; z-index: 2; max-width: 700px; }
@media (max-width: 1023px) { .cnl-consultation__content { max-width: 100%; } }
.cnl-consultation__eyebrow {
  display: inline-block; margin: 0 0 16px; padding: 4px 14px;
  border: 1px solid rgba(243,146,0,0.55); border-radius: 999px;
  font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.14em; color: #F39200;
}
.cnl-consultation__title {
  margin: 0 0 16px; font-size: clamp(1.75rem, 3vw, 2.5rem); line-height: 1.2;
  font-weight: 400; color: #fff !important; letter-spacing: -0.015em;
}
.cnl-consultation__title b { font-weight: 700; color: #fff !important; }
.cnl-consultation__subtitle { margin: 0 0 16px; max-width: 560px; font-size: 1rem; line-height: 1.55; color: rgba(255,255,255,0.82); }
.cnl-consultation__hl {
  color: #fff; font-weight: 500; text-decoration: underline;
  text-decoration-thickness: 1px; text-underline-offset: 4px; text-decoration-color: rgba(255,255,255,0.55);
}
.cnl-consultation__sla { margin: 12px 0 0; font-size: 0.8125rem; line-height: 1.5; color: rgba(255,255,255,0.55); }
.cnl-consultation__sla .cnl-consultation__hl { color: rgba(255,255,255,0.78); text-decoration-color: rgba(255,255,255,0.35); }
.cnl-consultation__form { margin: 0 0 24px; }
.cnl-consultation__form-label { margin: 0 0 12px; font-size: 1rem; color: rgba(255,255,255,0.82); }
.cnl-consultation__form-row { display: grid; grid-template-columns: 177px 1fr auto; align-items: stretch; gap: 12px; }
@media (max-width: 1023px) { .cnl-consultation__form-row { grid-template-columns: 177px 1fr; } }
@media (max-width: 600px)  { .cnl-consultation__form-row { grid-template-columns: 1fr; } }
.cnl-consultation__field { position: relative; display: block; }
.cnl-consultation__field input,
.cnl-consultation__field select {
  width: 100%; height: 56px; padding: 0 22px; font-size: 0.9375rem; font-weight: 500;
  color: #273A29; background: #fff; border: 0; border-radius: 5px; outline: none;
  transition: box-shadow .2s ease; -webkit-appearance: none; appearance: none;
}
.cnl-consultation__field input::placeholder { color: #9a958d; font-weight: 400; }
.cnl-consultation__field input:focus-visible,
.cnl-consultation__field select:focus-visible { box-shadow: 0 0 0 3px rgba(243,146,0,0.45); }
.cnl-consultation__field--select::after {
  content: ''; position: absolute; top: 50%; right: 22px; width: 12px; height: 12px;
  pointer-events: none; transform: translateY(-65%) rotate(45deg);
  border-right: 2px solid #1A4D7A; border-bottom: 2px solid #1A4D7A;
}
.cnl-consultation__field--select select { padding-right: 44px; cursor: pointer; }
.cnl-consultation__submit {
  height: 56px; padding: 0 32px; border: 0; border-radius: 5px; cursor: pointer;
  background: #F39200; color: #fff; font-size: 0.9375rem; font-weight: 600; white-space: nowrap;
  transition: background .2s ease, transform .2s ease;
}
.cnl-consultation__submit:hover { background: #1A4D7A; transform: translateY(-1px); }
@media (max-width: 600px) { .cnl-consultation__submit { width: 100%; } }
.cnl-consultation__agreement { display: inline-flex; align-items: center; gap: 12px; margin-top: 16px; cursor: pointer; user-select: none; }
.cnl-consultation__agreement input { position: absolute; opacity: 0; width: 0; height: 0; }
.cnl-consultation__agreement-box {
  flex-shrink: 0; width: 20px; height: 20px; border: 1px solid rgba(255,255,255,0.45);
  border-radius: 4px; background: rgba(255,255,255,0.06); position: relative; transition: all .2s ease;
}
.cnl-consultation__agreement-box::after {
  content: ''; position: absolute; top: 50%; left: 50%; width: 6px; height: 10px;
  transform: translate(-50%, -60%) rotate(45deg);
  border-right: 2px solid #0B1E31; border-bottom: 2px solid #0B1E31; opacity: 0;
}
.cnl-consultation__agreement input:checked + .cnl-consultation__agreement-box { background: #F39200; border-color: #F39200; }
.cnl-consultation__agreement input:checked + .cnl-consultation__agreement-box::after { opacity: 1; }
.cnl-consultation__agreement-text { font-size: 0.8125rem; line-height: 1.5; color: rgba(255,255,255,0.72); }
.cnl-consultation__agreement-text a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.cnl-consultation__agreement-text a:hover { color: #F39200; }
.cnl-consultation__links {
  display: flex; align-items: center; flex-wrap: wrap; gap: 16px;
  margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.13);
}
.cnl-consultation__links p { margin: 0 8px 0 0; font-size: 1.125rem; color: rgba(255,255,255,0.85); }
.cnl-consultation__links p b { color: #fff; font-weight: 600; }
.cnl-consultation__links a { display: inline-flex; align-items: center; justify-content: center; transition: transform .2s ease; line-height: 0; }
.cnl-consultation__links a img { display: block; width: 44px; height: 44px; }
.cnl-consultation__links a:hover { transform: scale(1.12); }
.cnl-consultation__person { position: absolute; right: 32px; bottom: 0; width: 480px; height: 100%; max-height: 640px; z-index: 1; pointer-events: none; }
@media (max-width: 1199px) { .cnl-consultation__person { width: 380px; right: 16px; } }
@media (max-width: 1023px) { .cnl-consultation__person { position: relative; width: 100%; max-width: 320px; height: 360px; margin: 32px auto 0; right: auto; bottom: auto; } }
.cnl-consultation__person-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: contain; object-position: bottom center; }
.cnl-consultation__person-info {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 12px 16px; background: rgba(15,56,89,0.55); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.16); border-radius: 16px;
}
.cnl-consultation__person-info p { margin: 0; font-size: 1.0625rem; font-weight: 600; letter-spacing: 0.01em; color: #fff; }
.cnl-consultation__person-info span { font-size: 0.75rem; letter-spacing: 0.04em; color: #F39200; text-transform: uppercase; }
@media (max-width: 1023px) { .cnl-consultation__person-info { top: 12px; bottom: auto; right: 50%; transform: translateX(50%); text-align: center; } }

/* ─── Consultation — фікси: відступ + nice-select + кнопка у стилі сайту ─── */
/* 1) Прибрати «конський» нижній відступ (під ним News має свій padding-top 120) */
.cnl-consultation { padding-bottom: 0 !important; }

/* 2) Select підмінює плагін nice-select → стилізуємо його під білий інпут (як телефон) */
.cnl-consultation__field--select::after { display: none; }   /* прибрати мою дублюючу стрілку */
.cnl-consultation__field .nice-select {
  height: 56px; line-height: 54px; padding: 0 44px 0 22px;
  background: #fff !important; border: 0; border-radius: 5px;
  color: #273A29; font-size: 0.9375rem; font-weight: 500;
  width: 100%; float: none; display: flex; align-items: center;
}
.cnl-consultation__field .nice-select .current { color: #273A29; font-weight: 500; }
.cnl-consultation__field .nice-select::after {
  border-bottom: 2px solid #1A4D7A; border-right: 2px solid #1A4D7A;
  right: 22px; width: 9px; height: 9px;
}
.cnl-consultation__field .nice-select .list { width: 100%; margin-top: 6px; }
.cnl-consultation__field .nice-select .option.selected.focus,
.cnl-consultation__field .nice-select .option.selected { font-weight: 600; color: #1A4D7A; }

/* 3) Submit → канонічна theme-btn (site style): прибираю плоский вигляд, вирівнюю в гріді */
.cnl-consultation__form-row { align-items: center; }
button.cnl-consultation__submit {
  height: auto; padding: 14px 28px; background: none; border-radius: 30px;
  white-space: nowrap;
}

/* ─── Consultation v2: нативний select (nice-select off) + чиста кнопка 56px ── */
.cnl-consultation__field--select::after { display: block; }   /* повернути власну стрілку */
button.cnl-consultation__submit {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 56px; padding: 0 30px; background: #F39200 !important; color: #fff !important;
  border: 0; border-radius: 6px; cursor: pointer; white-space: nowrap; line-height: 1;
  font-size: 0.9375rem; font-weight: 600; transition: background .2s ease, transform .2s ease;
}
button.cnl-consultation__submit:hover { background: #1A4D7A !important; transform: translateY(-1px); }
button.cnl-consultation__submit i { font-size: 13px; }
@media (max-width: 600px) { button.cnl-consultation__submit { width: 100%; } }

/* ─── intl-tel-input у наших лід-формах (прапори + dial-code + маска) ─── */
.cnl-consultation__field .iti,
.form-column .contact-form .form-clt .iti,
.cnl-lead-form .iti { width: 100%; display: block; }
/* інпут лишається у стилі форми (білий 56px), iti додає flag/dial-code зліва */
.cnl-consultation__field .iti input[type="tel"] { height: 56px; }
.iti__selected-dial-code { font-weight: 500; }

/* ─── Consultation v3: субміт = кнопка «Усі статті» (theme-btn 56/40) + інпути 56/40 ─── */
.cnl-consultation__form-row { align-items: center; }
/* субміт: не дублюємо стилі — лишаємо theme-btn (orange-пілл 56px, radius 40, біле коло-стрілка) */
button.cnl-consultation__submit {
  height: 56px !important; min-height: 56px; width: auto;
  padding: 0 10px 0 30px !important; border-radius: 40px !important;
  gap: 0; line-height: 1; white-space: nowrap;
}
button.cnl-consultation__submit i { font-size: inherit; }
/* інпути/select/iti — та сама висота 56 + радіус 40 (пілл) */
.cnl-consultation__field input,
.cnl-consultation__field select,
.cnl-consultation__field .nice-select,
.cnl-consultation__field .iti input[type="tel"] {
  height: 56px !important; border-radius: 40px !important;
}
.cnl-consultation__field input,
.cnl-consultation__field select { padding-left: 26px; }

/* ─── Section rhythm fixes ─── */
/* FAQ→Consultation був завеликий (cons +96 зверху поверх FAQ 120) → прибираємо верхній */
.cnl-consultation { padding-top: 0 !important; }
/* Funfact мав padding 0/0 (контент впритул до navy-країв) → секційний відступ */
.funfact-section { padding-top: 96px; padding-bottom: 96px; }

/* ─── Consultation v4: кнопка gap + видимий +380 ─── */
/* мій gap:0 ламав theme-btn (нативний gap:10) */
button.cnl-consultation__submit { gap: 10px !important; }
/* dial-code +380 був невидимий (світлий на білому) → темний, видно поряд із номером */
.cnl-consultation .iti__selected-dial-code { color: #273A29; font-weight: 500; }
.cnl-consultation .iti__country-container { color: #273A29; }

/* ─── Consultation submit hover: НЕ navy (зливався з navy-карткою) → темніший orange ─── */
button.cnl-consultation__submit:hover,
.cnl-consultation .theme-btn.btn-style-one:hover {
  background-color: #d97f00 !important;   /* темніший orange — лишається помітним на navy */
  color: #fff !important;
}

/* hover-padding як у нативної theme-btn (мій padding !important перебивав → справа тісно) */
button.cnl-consultation__submit:hover {
  padding-right: 40px !important;
  padding-left: 10px !important;
}

/* Консультація остання перед футером (напр. /pro-nas/) → нижній відступ (інакше картка впритул) */
.cnl-consultation:has(+ .footer-section),
.page-template-page-pro-nas .cnl-consultation { padding-bottom: 96px !important; }

/* ─── Consultation padding ПО КОНТЕКСТУ сторінки (перекриває попередні глобальні 0) ─── */
.home .cnl-consultation { padding-top: 0 !important; padding-bottom: 0 !important; }                 /* FAQ+News дають відступ */
.page-template-page-pro-nas .cnl-consultation { padding-top: 0 !important; padding-bottom: 96px !important; }  /* FAQ зверху / футер знизу */
.page-template-page-kontakty .cnl-consultation { padding-top: 90px !important; padding-bottom: 90px !important; } /* тайтл-бар + мапа не дають */

/* ─── Плаваючі кнопки на моб — ближче до правого/нижнього краю (були ~по центру) ─── */
@media (max-width: 640px) {
  .back-to-top-wrapper { right: 16px !important; bottom: 16px !important; }
  .cnl-side-widgets    { right: 16px !important; bottom: 74px !important; } /* над back-to-top (16+44+gap) */
}

/* Блог: title-bar → картки був ~150px (section-padding 120 поверх тайтл-бару) → менше */
.page-template-page-blog .news-section { padding-top: 56px; }

/* Сервісні сторінки: консультація після cnl-text, перед футером */
.page-template-page-service .cnl-consultation { padding-top: 0 !important; padding-bottom: 96px !important; }

/* hover на ТЕМНИХ секціях = темніший orange (navy зливається). На світлих — navy-hover лишаємо. */
.footer-section .theme-btn:hover,
.cnl-consultation .theme-btn:hover,
.banner-section-four .theme-btn:hover,
.video-section-two .theme-btn:hover {
  background-color: #d97f00 !important;
  color: #fff !important;
}

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE PASS · 2026-06-25 (скріни #17–#32)
   ════════════════════════════════════════════════════════════════ */

/* #17 — десктоп: головне меню абсолютно по центру шапки (лого зліва, кнопка справа) */
@media (min-width:1200px){
  .header-1 .header-lower .main-box .nav-outer{ position:static; flex:1 1 auto; justify-content:flex-end; }
  .header-1 .header-lower .main-box .nav-outer .nav.main-menu{
    position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); margin:0;
  }
}

/* #20 #28 — заголовки секцій «сплюснуті» на планшеті/моб → дихаючий line-height */
@media (max-width:1199.98px){
  .sec-title .title{ line-height:1.2; }
}

/* спільні крапки-пагінація слайдерів (project #21, team #22) — як .services-dot */
.project-section-2 .dot2,
.team-section-2 .team-dot{
  display:flex; justify-content:center; align-items:center; flex-wrap:wrap; gap:7px;
  margin-top:36px; position:relative; z-index:1;
}
.project-section-2 .dot2 .swiper-pagination-bullet{
  width:50px; height:5px; margin:0; border-radius:10px; opacity:1;
  background-color:#e7e7e7; cursor:pointer; transition:background-color .2s ease;
}
/* team має 8 слайдів (дубль для loop) → компактні круглі крапки, щоб влізли на моб */
.team-section-2 .team-dot .swiper-pagination-bullet{
  width:10px; height:10px; margin:0; border-radius:50%; opacity:1;
  background-color:#d8d8d8; cursor:pointer; transition:background-color .2s ease, transform .2s ease;
}
.project-section-2 .dot2 .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color:var(--theme-color1);
}
.team-section-2 .team-dot .swiper-pagination-bullet.swiper-pagination-bullet-active{
  background-color:var(--theme-color1); transform:scale(1.25);
}

/* #25 — project CTA: десктоп зверху-справа, на моб під слайдером */
.cnl-project-cta--bottom{ display:none; margin-top:34px; }
@media (max-width:767.98px){
  .cnl-project-cta--top{ display:none; }
  .cnl-project-cta--bottom{ display:block; }
}

/* #18 #24 #27 — секція «Про нас»: фіксована ширина icon-box (730px) розпирала колонку */
@media (max-width:1199.98px){
  .about-section-two .row > [class*="col-"]{ flex:0 0 100%; max-width:100%; }
  .about-block-items-1 .about-wrap{ width:100%; }
  .about-block-items-1 .about-wrap > *{ min-width:0; max-width:100%; }
  .about-block-items-1 .about-wrap .about-icon-items{ width:100% !important; max-width:none !important; }
  .about-block-items-1 .about-wrap .about-right-items{ width:100%; }
}

/* #19 — «Чому саме ми»: на lg сирітська фото-колонка лишалась зліва → центруємо ряд */
@media (min-width:992px) and (max-width:1199.98px){
  .choose-us-section-2 .row.align-items-center{ justify-content:center; }
}

/* #23 — FAQ: подвійний відступ між секціями на планшеті */
@media (max-width:1199.98px){
  .faq-section-four{ padding-top:60px; }
}

/* #29 — funfact лічильники: на моб по 2 в ряд (донор робив 1 у стовпчик) */
@media (max-width:767.98px){
  .funfact-section .outer-box .content-column .inner-column .funfact-box{
    display:grid !important; grid-template-columns:1fr 1fr; gap:26px 20px; align-items:start;
  }
}
/* Після прибирання середньої плашки лишились 2 — донорський space-between розкидав їх по краях.
   Ставимо рівним рядом зліва з фіксованим проміжком (десктоп/планшет). */
@media (min-width:768px){
  .funfact-section .outer-box .content-column .inner-column .funfact-box{
    justify-content:flex-start !important; gap:70px;
  }
}

/* #30 — бейдж лікарки на моб не перекриває обличчя → опускаємо до низу фото */
@media (max-width:575.98px){
  .cnl-consultation__person-info{ top:auto; bottom:10px; }
}

/* #32 — месенджери консультації на моб: підпис у свій рядок, 3 іконки рівним рядом */
@media (max-width:575.98px){
  .cnl-consultation__links{ gap:14px; }
  .cnl-consultation__links p{ flex:1 0 100%; margin:0 0 2px; }
}

/* #18/#20 — стіки-шапка на планшеті/моб: CTA переносився у 2 рядки → вищий за бар і обрізався.
   (header-lower CTA донор уже ховає на моб — вилазила саме .cnl-sticky-cta при скролі.)
   Тримаємо один рядок + компактний бар, щоб кнопка влізла. */
@media (max-width:1024px){
  .sticky-header .cnl-sticky-cta{ display:block !important; flex:0 0 auto; }
  .sticky-header .cnl-sticky-cta .theme-btn.btn-style-one{
    height:46px; min-height:46px; padding:0 8px 0 20px;
    white-space:nowrap; line-height:46px; font-size:13px;
  }
  .sticky-header .cnl-sticky-cta .theme-btn .btn-title{ white-space:nowrap; }
  .sticky-header .inner-container{ padding-top:8px; padding-bottom:8px; }
}
@media (max-width:399.98px){
  .sticky-header .cnl-sticky-cta .theme-btn.btn-style-one{ font-size:12px; padding-left:16px; }
  .sticky-header .logo{ max-width:160px; }
}

/* #22 — прибрати примусовий <br class="d-block"> у заголовку «Не лікарня — а тихий дім»
   на телефоні (.d-block = display:block !important → перебиваємо з !important) */
@media (max-width:767.98px){
  .project-section-2 .sec-title .title br{ display:none !important; }
}

/* #19 — «Про нас»: на телефоні блоки «Психіатр / Європейська супервізія» одне під одне */
@media (max-width:575.98px){
  .about-block-items-1 .about-wrap .about-icon-items{
    flex-direction:column; align-items:flex-start; gap:24px;
  }
}

/* ─── Месенджери в шапці (моб): лого + бургер + соц. CTA ховаємо, бо топбар ≤767 прихований ─── */
.cnl-header-social{ display:none; align-items:center; gap:8px; }
.cnl-header-social__item{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%; background:rgba(26,77,122,0.08);
  transition:transform .2s ease, background-color .2s ease;
}
.cnl-header-social__item img{ width:20px; height:20px; display:block; }
.cnl-header-social__item:hover{ transform:translateY(-1px); background:rgba(26,77,122,0.14); }
@media (max-width:767.98px){
  .cnl-header-social{ display:flex; }
  /* на моб фіксована/стікі шапка: лише лого + месенджери + бургер */
  .header-1 .header-lower .main-box .outer-box .ui-btn-outer,
  .sticky-header .cnl-sticky-cta{ display:none !important; }
  .sticky-header .mobile-nav-toggler{ display:block !important; }
}

/* #23 — моб: менше лого + компактніші месенджери, менший проміжок до бургера */
@media (max-width:767.98px){
  .header-1 .header-lower .logo img,
  .sticky-header .logo img{ max-height:42px; }
  .cnl-header-social{ gap:6px; }
  .cnl-header-social__item{ width:34px; height:34px; }
  .cnl-header-social__item img{ width:18px; height:18px; }
  .header-style-two .main-box .outer-box{ gap:14px; }
  /* стікі: nav-outer на моб був display:block → месенджери й бургер ставали один над одним */
  .sticky-header .inner-container .nav-outer{ display:flex; align-items:center; justify-content:flex-end; gap:12px; }
}

/* стікі-лого на моб: донорський padding:19px 0 20px завеликий зверху → зменшуємо */
@media (max-width:1024px){
  .sticky-header .logo{ padding-top:8px; padding-bottom:10px; }
}

/* Випадашка «Послуги» на десктопі: лінки в один рядок (донорські 228px обрізали «Деменція й Альцгеймер») */
@media (min-width:1200px){
  .main-menu .navigation > li > ul{ width:auto; min-width:228px; }
  .main-menu .navigation > li > ul > li > a{ white-space:nowrap; }
}

/* Hero-слоган (оверлайн): прибрати нижній відступ параграфа */
.banner-section-four .sub-title.tx-subTitle{ margin-bottom:0 !important; }

/* «Про нас» — кнопка «Записатись на екскурсію» довша за донорську: текст в один рядок,
   кнопка росте під нього (інакше 2 рядки вилазили за межі 56px-пігулки, стрілка сплющувалась) */
.about-block-items-1 .about-wrap .about-counter .theme-btn.btn-style-one,
.about-block-items-1 .about-wrap .about-counter .theme-btn.btn-style-one .btn-title{ white-space:nowrap; }

/* «Про нас» — зменшити завеликий проміжок між лічильником і текстом/картками (донор 44px) */
.about-block-items-1 .about-wrap{ gap:28px; }

/* ═══════════════════════════════════════════════════════════════════
   ПРАВКИ ЦИКЛ 2 (15.07.2026)
   ═══════════════════════════════════════════════════════════════════ */

/* #2 Hero-слоган (оверлайн) — жирніший (погано читався) */
.banner-section-four .sub-title.tx-subTitle{ font-weight:700; }

/* #3 / #48 Hero H1-accent — без підкреслення, менший за головний рядок */
.cnl-hero-h1__accent{ text-decoration:none !important; font-size:0.6em; font-weight:700; line-height:1.18; }
@media (max-width:575.98px){ .cnl-hero-h1__accent{ font-size:0.64em; } }

/* #25 Переваги hero — по центру на моб */
@media (max-width:575.98px){ .cnl-hero-trust{ justify-content:center; } }

/* #26 / #33 / #42 / #49 Прибрати передній фото-лікар у hero на планшеті + моб */
@media (max-width:991.98px){ .banner-section-four .image-column{ display:none !important; } }

/* #1 / #18 Хедер CTA «Записатись на консультацію» — довгий текст: в один рядок + прибираємо
   донорський hover-зсув (translateX 55px), бо він вилазив за межі кнопки. Лишаємо праву стрілку й колір. */
.header-style-two .main-box .btn-style-one .btn-title{ white-space:nowrap; }
.header-style-two .main-box .btn-style-one:hover{ padding-left:30px; padding-right:20px; }
.header-style-two .main-box .btn-style-one:hover .btn-title{ transform:none; }
.header-style-two .main-box .btn-style-one:hover .btn-arrow-left{ scale:0; }
.header-style-two .main-box .btn-style-one:hover .btn-arrow-right{ scale:1; }

/* #32 Більші месенджер-іконки у шапці на моб */
@media (max-width:767.98px){
  .cnl-header-social__item{ width:40px; height:40px; }
  .cnl-header-social__item img{ width:22px; height:22px; }
}

/* #12 Жирні назви пакетів (Стандарт / Преміум) */
.pricing-section .pricing-header .title{ font-weight:800; }

/* #15 Більші цифри у статах «Наша місія» */
.funfact-section .count-title{ font-size:66px; line-height:1; }
@media (max-width:767.98px){ .funfact-section .count-title{ font-size:50px; } }

/* #54 Футер — вирівняти вліво на моб (донор центрує) */
@media (max-width:767.98px){
  .footer-section [class*="col-"], .footer-section .footer-widget-wrapper{ text-align:left; }
}

/* #39 Делікатна pulse-анімація на головних CTA (привертає увагу, не ламає hover-стрілку) */
@keyframes cnlCtaPulse { 0%,100%{ box-shadow:0 0 0 0 rgba(243,146,0,0.45); } 70%{ box-shadow:0 0 0 12px rgba(243,146,0,0); } }
.banner-content .btn-box > .theme-btn.btn-style-one:first-child{ animation: cnlCtaPulse 2.8s ease-out infinite; }

/* #25 Переваги hero — центрувати (до 991, коли фото приховано) */
@media (max-width:991.98px){ .cnl-hero-trust{ justify-content:center; } }
/* Hero H1-accent (width:fit-content у flex-колонці) ліпився вліво → центруємо колонку, коли hero по центру */
@media (max-width:991.98px){ .cnl-hero-h1{ align-items:center; } }
/* #20 Квіз — фото координатора вище/помітніше й на планшеті (до 1199, не лише ≤991) */
@media (max-width:1199.98px){
  .qv2__right .qv2-manager__img{ height:340px; object-fit:cover; object-position:top center; }
}
@media (max-width:575.98px){
  .cnl-hero-trust li{ width:100%; justify-content:center; padding-right:0; }
}

/* #24 FAQ-картка «Ще питання?» — overlay на ВСЮ фотку (градієнт), текст+кнопка знизу */
.faq-section-four .image-column .inner-column{ position:relative; border-radius:20px; overflow:hidden; padding-left:0; }
.faq-section-four .image-column .inner-column .image{ margin:0; height:100%; }
.faq-section-four .image-column .inner-column .image img{ width:100%; height:100%; object-fit:cover; min-height:360px; }
.faq-section-four .image-column .inner-column .content{
  position:absolute !important; inset:0; display:flex; flex-direction:column; justify-content:flex-end; align-items:flex-start;
  background:linear-gradient(to top, rgba(26,77,122,0.92) 0%, rgba(26,77,122,0.55) 26%, rgba(26,77,122,0) 52%) !important;
  padding:34px 32px; border-radius:0;
}
/* #24b На десктопі/планшеті (≥992, вкл. 1024) фото тягнеться на ВСЮ висоту колонки
   (рівень акордеону зліва), інакше картка коротша за текст → фон «не грає». */
@media (min-width:992px){
  .faq-section-four .row{ align-items:stretch; }
  .faq-section-four .image-column{ display:flex; }
  .faq-section-four .image-column .inner-column{ width:100%; height:auto; align-self:stretch; display:flex; flex-direction:column; }
  .faq-section-four .image-column .inner-column .image{ flex:1 1 auto; height:auto; }
  .faq-section-four .image-column .inner-column .image img{ height:100%; min-height:100%; }
}

/* Планшет 768-991: блок «24/7» ставимо ЗЛІВА від основного тексту (заповнюємо порожнечу) */
@media (min-width:768px) and (max-width:991.98px){
  .about-block-items-1 .about-wrap{ display:flex; flex-direction:row; align-items:flex-start; gap:32px; }
  .about-block-items-1 .about-wrap .about-counter{ flex:0 0 auto; min-width:180px; }
  .about-block-items-1 .about-wrap .about-right-items{ flex:1 1 auto; }
}

/* #19 / #27 About-лічильник на моб: 24/7 ЗЛІВА, текст СПРАВА, кнопка нижче */
@media (max-width:767.98px){
  .about-block-items-1 .about-counter{ display:grid; grid-template-columns:auto 1fr; align-items:center; gap:4px 18px; }
  .about-block-items-1 .about-counter .count-box{ grid-column:1; grid-row:1; margin:0; }
  .about-block-items-1 .about-counter > p{ grid-column:2; grid-row:1; margin:0; text-align:left; }
  .about-block-items-1 .about-counter .theme-btn.btn-style-one{ grid-column:1 / -1; grid-row:2; margin-top:20px; }
}

/* #28 Why-choose на моб: фото по центру (лінії-роздільники прибираємо нижче) */
@media (max-width:991.98px){
  .choose-us-section-2 .choose-us-image-2{ display:flex; justify-content:center; margin:26px auto; }
  .choose-us-section-2 .choose-us-block-list2 li{ border:0 !important; }
  .choose-us-section-2 .choose-us-block-list2 li::before,
  .choose-us-section-2 .choose-us-block-list2 li::after{ display:none !important; }
}

/* #20 Квіз — фото координатора вище/помітніше на моб */
@media (max-width:991.98px){
  .qv2__right .qv2-manager__img{ height:300px; object-fit:cover; object-position:top center; }
}

/* #21 «Від першого дзвінка до заселення — 3 кроки» — не в 4 рядки на моб */
@media (max-width:767.98px){
  .work-section .sec-title .title{ font-size:24px !important; line-height:1.22; }
}

/* #31 / #46 / #51 Консультація на моб: лікаря нижче, плашку-підпис НЕ на обличчя, ширший eyebrow */
@media (max-width:1023.98px){
  .cnl-consultation__person-info{ top:auto !important; bottom:0 !important; transform:translateX(50%); background:rgba(26,77,122,0.85); padding:8px 14px; border-radius:12px; }
}
.cnl-consultation__eyebrow{ padding:8px 22px; }
/* Моб/планшет: контент іде під фото лікаря в потоці — додаємо відступ, щоб eyebrow/заголовок
   не липли до бейджа «Лікар-психіатр» */
@media (max-width:1023px){
  .cnl-consultation__content{ margin-top:44px; }
}
@media (max-width:575.98px){
  .cnl-consultation__person-info span{ font-size:0.7rem; white-space:nowrap; }
  .cnl-consultation__eyebrow{ font-size:0.75rem; padding:7px 16px; }
}

/* #22 Бургер ЗАВЖДИ по правому краю — і в основній, і у sticky шапці */
.header-1 .header-lower .main-box .outer-box{ display:flex; align-items:center; gap:12px; }
.header-1 .header-lower .main-box .outer-box .mobile-nav-toggler{ order:99; margin-left:2px; }
.sticky-header .inner-container{ display:flex; align-items:center; }
.sticky-header .inner-container > .mobile-nav-toggler{ margin-left:14px; order:99; }
@media (max-width:991.98px){
  .header-1 .header-lower .main-box .outer-box{ margin-left:auto; }
  .header-1 .header-lower .logo{ max-width:170px; }
}
@media (max-width:767.98px){
  .header-1 .header-lower .logo{ max-width:150px; }
  .cnl-header-social{ gap:8px; }
}
/* #47 Дуже вузькі (≤400): стискаємо лого + месенджер-іконки, щоб не налазили на лого — ОБИДВІ шапки */
@media (max-width:767.98px){
  .sticky-header .logo{ max-width:150px; }
}
@media (max-width:400px){
  .header-1 .header-lower .main-box{ display:flex; align-items:center; }
  .header-1 .header-lower .logo{ max-width:118px; flex:0 0 auto; }
  .header-1 .header-lower .main-box .outer-box{ flex:1 1 auto; justify-content:flex-end; }
  /* sticky */
  .sticky-header .logo{ max-width:118px; flex:0 0 auto; }
  .sticky-header .inner-container .nav-outer{ flex:1 1 auto; min-width:0; justify-content:flex-end; }
  /* спільні (обидві шапки, клас .cnl-header-social) */
  .cnl-header-social{ gap:5px; }
  .cnl-header-social__item{ width:32px; height:32px; }
  .cnl-header-social__item img{ width:17px; height:17px; }
}

/* #36 / #37 / #44 Менші вертикальні відступи секцій на моб */
@media (max-width:767.98px){
  .section-padding{ padding-top:56px; padding-bottom:56px; }
}

/* #52 Mobile-menu CTA «Записатись на консультацію» — довгий текст: кнопка росте під нього,
   текст переноситься ВСЕРЕДИНІ кнопки (не вилазить за пігулку), по центру */
.cnl-mm__cta.theme-btn.btn-style-one{ height:auto; min-height:54px; padding-top:11px; padding-bottom:11px; align-items:center; }
.cnl-mm__cta .btn-title{ font-size:14px !important; white-space:normal; line-height:1.25; text-align:left; }

/* Футер-CTA «Записатись на консультацію» — довгий текст на вузькій колонці вилазив за пігулку → кнопка росте під нього */
.footer-content .theme-btn.btn-style-one{ height:auto; min-height:56px; padding-top:10px; padding-bottom:10px; align-items:center; }
.footer-content .theme-btn.btn-style-one .btn-title{ white-space:normal; line-height:1.25; }

/* #53 Side-widget попап — лейбли вліво */
.side-links__label{ text-align:left; }

/* #46 Консультація: eyebrow-плашка в ОДИН рядок; #40 ширша верхня плашка (бейдж лікаря) */
.cnl-consultation__eyebrow{ white-space:nowrap; letter-spacing:0.02em; }
@media (max-width:400px){ .cnl-consultation__eyebrow{ font-size:0.68rem; } }
.cnl-consultation__person-info{ min-width:220px; }

/* #24 / #45 FAQ-картка: контент по центру на моб */
@media (max-width:991.98px){
  .faq-section-four .image-column .inner-column .content{ text-align:center; }
  .faq-section-four .image-column .inner-column .content .theme-btn{ margin-left:auto; margin-right:auto; }
}

/* #13 Фото команди — однаковий розмір (плейсхолдери різних пропорцій) */
.team-block-items2 .thumb{ aspect-ratio:3/4; overflow:hidden; }
.team-block-items2 .thumb img{ width:100%; height:100%; object-fit:cover; object-position:top center; }

/* Футер — адреса як клікабельне посилання (клік → маршрут, правки ц2 #18) */
.cnl-footer-addr{ display:inline-flex; align-items:flex-start; gap:8px; transition:.2s; }
.cnl-footer-addr i{ margin-top:3px; color:#F39200; }
.cnl-footer-addr:hover{ color:#F39200; }

/* Обтічні фото в контенті послуг (align left/right) — розбавляють текст (правки ц2) */
.cnl-post__body figure{ margin:0; }
.cnl-post__body .cnl-content-img{ max-width:42%; }
.cnl-post__body .cnl-content-img img{ width:100%; height:auto; border-radius:16px; display:block; box-shadow:0 14px 36px rgba(26,77,122,.12); }
.cnl-post__body .alignright{ float:right; margin:6px 0 22px 30px; }
.cnl-post__body .alignleft{ float:left; margin:6px 30px 22px 0; }
@media (max-width:767.98px){
  .cnl-post__body .cnl-content-img{ max-width:100%; }
  .cnl-post__body .alignleft, .cnl-post__body .alignright{ float:none; margin:14px 0 22px; }
}

/* Контент сторінок послуг + статей: тема ресетить ul → пункти без «дотів». Повертаємо марковані
   списки (буліт/номер), маркер у брендовий оранжевий. */
.cnl-post__body ul{ list-style: disc; }
.cnl-post__body ol{ list-style: decimal; }
.cnl-post__body ul li, .cnl-post__body ol li{ list-style: inherit; display: list-item; }
.cnl-post__body li::marker{ color: #F39200; }

/* «Інші напрями догляду» на сторінці послуги — картки «фото + назва» (правки ц2, Сторінки послуг #2) */
.cnl-other-services{ margin-top:44px; }
.cnl-other-services > h3{ font-size:24px; font-weight:800; color:#1A4D7A; margin:0 0 22px; }
.cnl-other-services__grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.cnl-other-card{ display:flex; flex-direction:column; background:#fff; border:1px solid #e7edf3; border-radius:16px;
  overflow:hidden; box-shadow:0 10px 30px rgba(26,77,122,.06); transition:.22s; text-decoration:none; }
.cnl-post__body .cnl-other-card, .cnl-post__body .cnl-other-card:hover,
.cnl-post__body .cnl-other-card *{ text-decoration:none !important; }
.cnl-other-card:hover{ transform:translateY(-4px); box-shadow:0 20px 46px rgba(26,77,122,.13); }
.cnl-other-card__img{ display:block; aspect-ratio:16/10; overflow:hidden; }
.cnl-other-card__img img{ width:100%; height:100%; object-fit:cover; transition:.4s; }
.cnl-other-card:hover .cnl-other-card__img img{ transform:scale(1.05); }
.cnl-other-card__title{ display:flex; align-items:center; justify-content:space-between; gap:10px;
  padding:16px 18px; font-size:17px; font-weight:700; color:#1A4D7A; }
.cnl-other-card__title i{ color:#F39200; transition:.2s; }
.cnl-other-card:hover .cnl-other-card__title i{ transform:translateX(4px); }
@media (max-width:767.98px){ .cnl-other-services__grid{ grid-template-columns:1fr 1fr; gap:14px; } }
@media (max-width:479.98px){ .cnl-other-services__grid{ grid-template-columns:1fr; } }

/* ГЛОБАЛЬНО: два сусідні section-padding = верх+низ = подвійний відступ (×2).
   Не прибираємо повністю (це підтискає контент іншої секції), а ДІЛИМО навпіл:
   нижній попередньої + верхній наступної ≈ по 60px → разом один нормальний відступ, обидві дихають. */
.section-padding:has(+ .section-padding){ padding-bottom:60px; }
.section-padding + .section-padding{ padding-top:60px; }
/* funfact-section має власний padding (96px) без класу section-padding — теж включаємо в поділ, щоб не подвоювалось */
.section-padding:has(+ .funfact-section), .funfact-section:has(+ .section-padding){ padding-bottom:60px; }
.section-padding + .funfact-section, .funfact-section + .section-padding{ padding-top:60px; }

/* ============================================================
   Live QA 17.07 — консультаційна секція (моб/планшет)
   ============================================================ */
/* На моб/планшеті картка стає flex-колонкою → форма ПЕРШОЮ, фото лікаря ПІД нею */
@media (max-width:1023.98px){
  .cnl-consultation__card{ display:flex; flex-direction:column; }
  .cnl-consultation__content{ order:1; margin-top:0 !important; }
  .cnl-consultation__person{ order:2; }
}
/* Плашка «Психіатр» — внизу по ЦЕНТРУ фото лікаря */
@media (max-width:1023.98px){
  .cnl-consultation__person-info{
    left:50% !important; right:auto !important; bottom:8px !important; top:auto !important;
    transform:translateX(-50%) !important; text-align:center !important;
  }
}
/* Кнопка «Чекаю на дзвінок»: на 601–1023 grid має 2 колонки (177px 1fr) і кнопка
   падала у вузьку колонку → текст різало. Розтягуємо на всю ширину під полями. */
@media (min-width:601px) and (max-width:1023.98px){
  .cnl-consultation__form-row{ grid-template-columns:177px 1fr; }
  button.cnl-consultation__submit{ grid-column:1 / -1; width:100%; }
}

/* Слайдер галереї впритул до країв на планшеті/мобі → бічні відступи
   (слайдер повнотілий поза .auto-container; вирівнюємо із заголовком) */
@media (max-width:1199.98px){
  .project-section-2 .project-slider{ margin-left:16px; margin-right:16px; }
}
@media (max-width:575.98px){
  .project-section-2 .project-slider{ margin-left:14px; margin-right:14px; }
}

/* Головна: прибрати верхній відступ funfact-секції на моб (перебиваємо і split-правило) */
@media (max-width:767.98px){
  .home .funfact-section{ padding-top:0 !important; }
}

/* Funfact без цифри (плашка «Кваліфіковані фахівці») — іконка замість лічильника */
.funfact-section .count-title.cnl-ff-nostat{ line-height:1; }
.funfact-section .count-title.cnl-ff-nostat i{ font-size:48px; color:#F39200; }

/* Меню: донор має text-transform:capitalize → «Деменція Й Альцгеймер», «Після Інсульту».
   Наші підписи вже в правильному регістрі — прибираємо примусовий капіталайз. */
.main-menu .navigation > li > a,
.main-menu .navigation > li > ul > li > a,
.main-menu .navigation > li > ul > li > ul > li > a,
.mobile-menu .navigation li a{ text-transform:none; }
