/* SENS extra sections — match Reclin design language */

/* ════════════════════════════════════════════════════════════════
   TYPE-SCALE TOKENS (vendor reclin baseline — DO NOT override locally)
   .section-title h2     46px → 36px (≤991) → 26px (≤767)
   .section-title h1     70px → 50px (≤991) → 30px (≤767)
   .section-eyebrow      12px (pill)  · letter-spacing 0.14em
   .section-desc         ~16px        · line-height 1.55–1.7
   .section-subdesc      16px         · max-width 640px

   SPACING
   .section padding-y    100/120px desktop → 80px (≤991) → 60px (≤767) → 48px (≤575)

   Правило: НЕ перевизначай font-size для section-title h2 локально.
   Якщо потрібна корекція — додай у глобальний блок нижче, а не у секцію.
   ════════════════════════════════════════════════════════════════ */


/* ── 404 page ───────────────────────────────────────────────── */
.error-404 {
    padding: 100px 0 120px;
    background: var(--bg-color, #FAF6F1);
    position: relative;
    overflow: hidden;
}
.error-404::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.10) 0%, transparent 65%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}
.error-404__inner {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

/* Велика цифра 404 */
.error-404__code {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    line-height: 1;
    color: var(--primary-color, #172637);
}
.error-404__digit {
    font-family: var(--font-serif, Georgia, 'Times New Roman', serif);
    font-size: 180px;
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}
.error-404__digit--zero {
    width: 160px;
    height: 180px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.error-404__digit--zero svg { width: 100%; height: auto; max-width: 160px; }

/* Content */
.error-404__content .section-eyebrow {
    display: inline-block;
    margin: 0 0 18px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C9A961;
    background: rgba(201, 169, 97, 0.10);
    border: 1px solid rgba(201, 169, 97, 0.30);
    border-radius: 100px;
    line-height: 1;
}
.error-404__title {
    font-size: 44px;
    line-height: 1.15;
    color: var(--primary-color, #172637);
    margin: 0 0 18px;
}
.error-404__title .accent-gold {
    color: #C9A961;
    font-style: italic;
    font-weight: 500;
}
.error-404__desc {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-color, #5a5650);
    max-width: 540px;
    margin: 0 auto 36px;
}

/* Actions */
.error-404__actions {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 44px;
}
.error-404__actions .btn-default.btn-outline {
    background: transparent;
    color: var(--primary-color, #172637);
    border: 1.5px solid var(--primary-color, #172637);
}
.error-404__actions .btn-default.btn-outline::before {
    background-color: var(--primary-color, #172637);
}
.error-404__actions .btn-default.btn-outline:hover {
    background: var(--primary-color, #172637);
    color: #fff;
}

/* Quick links */
.error-404__links {
    margin: 0 0 40px;
    padding: 24px 28px;
    background: #fff;
    border: 1px solid rgba(23, 38, 55, 0.08);
    border-radius: 16px;
    text-align: left;
    display: inline-block;
    max-width: 540px;
    width: 100%;
}
.error-404__links-label {
    margin: 0 0 12px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(23, 38, 55, 0.55);
    font-weight: 600;
}
.error-404__links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 24px;
}
.error-404__links li { position: relative; padding-left: 16px; }
.error-404__links li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 5px;
    height: 5px;
    background: #C9A961;
    border-radius: 50%;
    transform: translateY(-50%);
}
.error-404__links a {
    color: var(--primary-color, #172637);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}
.error-404__links a:hover { color: #C9A961; }

/* Contact */
.error-404__contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.error-404__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color, #172637);
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    padding-bottom: 2px;
}
.error-404__phone svg { color: #C9A961; }
.error-404__phone:hover { color: #C9A961; }
.error-404__hours {
    font-size: 13px;
    color: rgba(23, 38, 55, 0.6);
}

/* Адаптив */
@media (max-width: 991px) {
    .error-404 { padding: 80px 0 100px; }
    .error-404__digit { font-size: 140px; }
    .error-404__digit--zero { width: 130px; height: 140px; }
    .error-404__digit--zero svg { max-width: 130px; }
    .error-404__title { font-size: 36px; }
    .error-404__desc { font-size: 16px; }
}

@media (max-width: 767px) {
    .error-404 { padding: 64px 0 80px; }
    .error-404__digit { font-size: 110px; }
    .error-404__digit--zero { width: 100px; height: 110px; }
    .error-404__digit--zero svg { max-width: 100px; }
    .error-404__title { font-size: 28px; }
    .error-404__desc { margin-bottom: 28px; }
    .error-404__actions { gap: 12px; margin-bottom: 32px; }
    .error-404__links ul { grid-template-columns: 1fr; gap: 10px; }

    .error-404__actions .btn-default {
        padding: 14px 50px 14px 20px;
        font-size: 14px;
    }
    .error-404__actions .btn-default::before {
        width: 36px;
        height: 36px;
        background-size: 18px auto;
    }
}

@media (max-width: 480px) {
    .error-404 { padding: 56px 0 64px; }
    .error-404__code { gap: 4px; margin-bottom: 24px; }
    .error-404__digit { font-size: 84px; }
    .error-404__digit--zero { width: 76px; height: 84px; }
    .error-404__digit--zero svg { max-width: 76px; }
    .error-404__title { font-size: 24px; }
    .error-404__desc { font-size: 15px; }
    .error-404__links { padding: 20px; }
    .error-404__phone { font-size: 17px; }
}


/* ── Navbar layout (Bootstrap-free) ───────────────────────────── */
.navbar {
    display: flex;
    align-items: center;
    padding: 16px 0 !important;
}

.main-menu .nav-menu-wrapper > ul {
    margin-bottom: 0;
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
}
.main-menu {
    display: flex;
    align-items: center;
}
@media (max-width: 991px) {
    .main-menu { display: none; }
}

/* ── Hamburger button (mobile) ────────────────────────────────── */
.nav-burger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 1px solid rgba(23, 38, 55, 0.12);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.nav-burger:hover { border-color: #C9A961; }
.nav-burger span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary-color, #172637);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
    .nav-burger { display: inline-flex; }
}

/* ── Mobile Drawer (off-canvas) ───────────────────────────────── */
.mobile-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(11, 25, 41, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    z-index: 998;
}
.mobile-drawer-backdrop.is-open { opacity: 1; pointer-events: auto; }

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 88%;
    max-width: 360px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid rgba(23, 38, 55, 0.08);
}
.mobile-drawer__brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}
.mobile-drawer__brand img { height: 40px; width: auto; }
.mobile-drawer__brand span { display: flex; flex-direction: column; line-height: 1.2; }
.mobile-drawer__brand strong {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--primary-color, #172637);
}
.mobile-drawer__brand small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(23, 38, 55, 0.55);
    margin-top: 2px;
}
.mobile-drawer__close {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid rgba(23, 38, 55, 0.12);
    background: transparent;
    color: var(--primary-color, #172637);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.mobile-drawer__close:hover { border-color: #C9A961; color: #C9A961; }

.mobile-drawer__nav {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid rgba(23, 38, 55, 0.08);
}
.mobile-drawer__nav a {
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 500;
    color: var(--primary-color, #172637);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.mobile-drawer__nav a:hover,
.mobile-drawer__nav a:focus {
    border-left-color: #C9A961;
    color: #C9A961;
    background: rgba(201, 169, 97, 0.05);
}

.mobile-drawer__cta { padding: 20px 24px; }
.mobile-drawer__btn {
    width: 100%;
    text-align: left;
    padding: 14px 50px 14px 20px !important;
    font-size: 14px !important;
}
.mobile-drawer__btn::before {
    width: 36px !important;
    height: 36px !important;
    background-size: 18px auto !important;
}

.mobile-drawer__contacts {
    padding: 8px 24px 28px;
    margin-top: auto;
    border-top: 1px solid rgba(23, 38, 55, 0.08);
}
.mobile-drawer__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-color, #172637);
    text-decoration: none;
    border-bottom: 1px dashed currentColor;
    padding-bottom: 2px;
}
.mobile-drawer__phone svg { color: #C9A961; flex-shrink: 0; }
.mobile-drawer__hours {
    margin: 10px 0 12px;
    font-size: 13px;
    color: rgba(23, 38, 55, 0.6);
}
.mobile-drawer__address {
    display: inline-block;
    font-size: 13px;
    color: rgba(23, 38, 55, 0.7);
    text-decoration: none;
    line-height: 1.45;
}
.mobile-drawer__address:hover { color: #C9A961; }

/* Header sticky ще щільніший на mobile */
@media (max-width: 575px) {
    .nav-inner { padding: 0 12px; }
    .navbar { padding: 10px 0 !important; }
    .navbar-brand { gap: 6px !important; }
    .navbar-brand img { height: 34px; }
    .navbar-brand-name { font-size: 17px !important; letter-spacing: 0.08em !important; }
    .navbar-brand-desc { font-size: 7px !important; letter-spacing: 0.06em !important; margin-top: 1px !important; line-height: 1.15 !important; }
}

@media (max-width: 380px) {
    .navbar-brand img { height: 30px; }
    .navbar-brand-name { font-size: 15px !important; }
    .navbar-brand-desc { font-size: 6.5px !important; }
}

/* ── Navbar Brand ─────────────────────────────────────────────── */
.navbar-brand {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.navbar-brand img {
    height: 48px;
    width: auto;
    flex-shrink: 0;
}

.navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand-name {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.navbar-brand-desc {
    font-size: 8px;
    color: rgba(23, 38, 55, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 400;
    margin-top: 2px;
}

@media (max-width: 480px) {
    /* .navbar-brand-text { display: none; } */
    .footer-logo .navbar-brand-text { display: flex; }
}

/* ── Our Team ─────────────────────────────────────────────────── */
.our-team { padding: 110px 0; }
.our-team .section-title { margin-bottom: 0; }

.team-list { margin-top: 50px; row-gap: 30px; }

.team-item {
    background-color: #fff;
    border-radius: 20px;
    padding: 20px;
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}
.team-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(38, 80, 94, .12);
}

.team-image { position: relative; overflow: hidden; border-radius: 14px; }
.team-image figure { margin: 0; }
.team-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.team-content { padding: 22px 8px 8px; }
.team-content h3 {
    font-size: 22px;
    line-height: 1.25;
    color: var(--primary-color);
    margin: 0 0 6px;
}
.team-content p {
    margin: 0;
    font-size: 14px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: .04em;
}

@media (max-width: 991px) {
    .our-team { padding: 80px 0; }
    .our-team .section-row > .col-lg-6:first-child { margin-bottom: 16px; }
    .team-list { margin-top: 36px; row-gap: 24px; }
}

@media (max-width: 767px) {
    .team-item { padding: 16px; border-radius: 16px; }
    .team-content { padding: 18px 6px 6px; }
    .team-content h3 { font-size: 20px; }
    .team-content p { font-size: 13px; }
}

@media (max-width: 575px) {
    .our-team { padding: 60px 0; }
    .team-list { margin-top: 28px; row-gap: 20px; }
    .team-content { padding: 16px 4px 4px; }
    .team-content h3 { font-size: 19px; }
    .team-image img { aspect-ratio: 4 / 5; }
}

/* ── Our Clinic ───────────────────────────────────────────────── */
.our-clinic { padding: 110px 0; background-color: var(--bg-color, #FAF6F1); }

.clinic-slider-box { position: relative; margin-top: 0; }

/* ── Hero: satisfy-client-images hidden ───────────────────────── */
.hero .satisfy-client-images { display: none; }

/* ── Hero — точкові доповнення поверх scss ─────────────────────── */
@media (max-width: 991px) {
    .hero .section-title { margin-bottom: 28px !important; }
    .hero-body { gap: 24px; }
}

@media (max-width: 767px) {
    .hero { padding: 72px 0 56px !important; }
    .hero .section-title { margin-bottom: 24px !important; }
    .hero__h1-main { font-size: 32px !important; }
    .hero__h1-city { font-size: 28px !important; }
    .hero__h1-slogan { font-size: 22px !important; }
}

@media (max-width: 575px) {
    .hero { padding: 56px 0 48px !important; }
    .hero .section-title { margin-bottom: 20px !important; }
    .hero-body { gap: 16px; }

    /* Кнопка "Підібрати програму" — уніфіковано з рештою mobile-CTA */
    .hero-btn .btn-default {
        padding: 14px 50px 14px 20px;
        font-size: 14px;
    }
    .hero-btn .btn-default::before {
        width: 36px;
        height: 36px;
        background-size: 18px auto;
    }
}

@media (max-width: 360px) {
    .hero__h1-main { font-size: 26px !important; }
    .hero__h1-city { font-size: 22px !important; }
    .hero__h1-slogan { font-size: 18px !important; }
}

/* ── Why Choose: satisfy-client-box hidden ────────────────────── */
.why-choose-us .satisfy-client-box { display: none; }

/* ── Why Choose — адаптив ─────────────────────────────────────── */
@media (max-width: 991px) {
  .why-choose-us { padding: 80px 0 0 !important; }
  .why-choose-image-box { margin: 0 !important; }
  .why-choose-image { padding: 0 !important; }
  .why-choose-image img { margin-bottom: 0 !important; border-radius: 16px; }
  .why-choose-us-content {
    margin-bottom: 32px !important;
    display: flex;
    flex-direction: column;
  }
  .why-choose-us-content .section-title    { order: 1; margin-bottom: 0 !important; }
  .why-choose-us-content .section-title h2 { margin-bottom: 16px; }
  .why-choose-us-content .why-choose-item-box { order: 2; margin-top: 8px !important; gap: 20px; }
  .why-choose-us-content .why-choose-btn   { order: 3; margin-top: 32px; margin-bottom: 0 !important; }
}

@media (max-width: 575px) {
  .why-choose-us { padding: 64px 0 0 !important; }
  .why-choose-image img { border-radius: 12px; }
  .why-choose-item { width: 100%; }
  .why-choose-item h3 { font-size: 18px; }
  .why-choose-item p { font-size: 14px; }

  /* На моб лишаємо одну фічу, друга — забагато для першого скріну */
  .why-choose-item:nth-child(2) { display: none; }

  .why-choose-btn .btn-default {
    padding: 14px 50px 14px 20px;
    font-size: 14px;
  }
  .why-choose-btn .btn-default::before {
    width: 36px;
    height: 36px;
    background-size: 18px auto;
  }
}
.clinic-slider { position: relative; }
.clinic-slider .swiper { padding-bottom: 12px; }

.clinic-slide-item {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    height: 100%;
}
.clinic-slide-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(38, 80, 94, .12);
}

.clinic-slide-image { position: relative; overflow: hidden; }
.clinic-slide-image figure { margin: 0; }
.clinic-slide-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.clinic-slide-item:hover .clinic-slide-image img { transform: scale(1.05); }

.clinic-slide-content { padding: 24px 24px 28px; }
.clinic-slide-content h3 {
    font-size: 22px;
    line-height: 1.25;
    color: var(--primary-color);
    margin: 0 0 10px;
}
.clinic-slide-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-color, #555);
}

.clinic-slider-btn {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}
.clinic-button-prev,
.clinic-button-next {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background-color .25s ease, color .25s ease, transform .25s ease;
}
.clinic-button-prev:hover,
.clinic-button-next:hover {
    background-color: var(--accent-color);
    color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .our-clinic { padding: 80px 0; }
}
@media (max-width: 575px) {
    .our-clinic { padding: 60px 0; }
    .clinic-slide-content { padding: 20px; }
    .clinic-slide-content h3 { font-size: 19px; }
}

/* ── Appointment / Contacts ───────────────────────────────────── */
.appointment-section { padding: 110px 0; }
.appointment-info { padding-right: 30px; }
.appointment-info .section-title { margin-bottom: 36px; }

.appointment-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}
.appointment-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background-color: #fff;
    border-radius: 14px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.appointment-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(38, 80, 94, .1);
}
.appointment-info-item .icon-box {
    flex: 0 0 56px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background-color: var(--accent-secondary-color);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.appointment-info-item .icon-box svg { width: 26px; height: 26px; }
.appointment-info-content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: var(--primary-color);
}
.appointment-info-content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color, #555);
}
.appointment-info-content a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
}
.appointment-info-content a:hover { color: var(--accent-color); }

.appointment-form-box {
    background-color: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 18px 60px rgba(38, 80, 94, .06);
}
.appointment-form .form-control {
    width: 100%;
    border: 1px solid #e7e0d3;
    background-color: #faf6f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px;
    color: var(--primary-color);
    transition: border-color .2s ease, background-color .2s ease;
}
.appointment-form .form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    background-color: #fff;
}
.appointment-form .form-control::placeholder { color: #9aa0a3; }
.appointment-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23CE9E6E' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
}
.appointment-form textarea.form-control { resize: vertical; min-height: 110px; }

.appointment-form .form-btn .btn-default {
    width: 100%;
    border: 0;
    cursor: pointer;
}

.appointment-form-status { margin-top: 14px; min-height: 1.4em; font-size: 14px; }
.appointment-form-status.is-success { color: #14843e; }
.appointment-form-status.is-error   { color: #c83232; }

@media (max-width: 991px) {
    .appointment-section { padding: 80px 0; }
    .appointment-info { padding-right: 0; margin-bottom: 36px; }
    .appointment-form-box { padding: 28px; }
}
@media (max-width: 575px) {
    .appointment-section { padding: 60px 0; }
    .appointment-form-box { padding: 22px; border-radius: 16px; }
    .appointment-info-item { padding: 18px; }
}

/* ── Results / Counters ───────────────────────────────────────── */
.results-section { padding: 110px 0; }

.results-list { row-gap: 30px; }

.result-item {
    text-align: center;
    padding: 36px 24px;
    background-color: #fff;
    border: 1px solid #efe6d4;
    border-radius: 18px;
    height: 100%;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.result-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(38, 80, 94, .1);
    border-color: var(--accent-color);
}

.result-number {
    font-family: inherit;
    font-weight: 700;
    font-size: 64px;
    line-height: 1;
    color: var(--accent-color);
    margin-bottom: 14px;
    display: flex;
    align-items: baseline;
    justify-content: center;
}
.result-number .counter { display: inline-block; }
.result-number sup {
    font-size: 32px;
    margin-left: 4px;
    top: -.4em;
    color: var(--accent-color);
}

.result-title p {
    margin: 0;
    font-size: 15px;
    line-height: 1.5;
    color: var(--primary-color);
    font-weight: 500;
}

@media (max-width: 991px) {
    .results-section { padding: 80px 0; }
    .result-number { font-size: 52px; }
    .result-number sup { font-size: 26px; }
}
@media (max-width: 575px) {
    .results-section { padding: 60px 0; }
    .result-item { padding: 28px 18px; }
    .result-number { font-size: 46px; }
    .result-number sup { font-size: 22px; }
}

/* ── Pricing Plan ─────────────────────────────────────────────── */
.pricing-plan-section { padding: 110px 0; }

.pricing-plan-slider {
    position: relative;
    margin-top: 30px;
}

.pricing-plan-list {
    padding: 8px 4px 18px;
    overflow: hidden;
}

.pricing-plan-list .swiper-wrapper {
    align-items: stretch;
}

.pricing-plan-list .swiper-slide {
    height: auto;
    display: flex;
}

.pricing-plan-list .pricing-item {
    width: 100%;
}

.pricing-item {
    position: relative;
    background-color: #fff;
    border-radius: 22px;
    padding: 40px 32px 32px;
    height: 100%;
    border: 1px solid #efe6d4;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
    display: flex;
    flex-direction: column;
}
.pricing-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(38, 80, 94, .12);
    border-color: var(--accent-color);
}
.pricing-item.is-highlight {
    background: linear-gradient(180deg, var(--primary-color) 0%, #1f4250 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 22px 50px rgba(38, 80, 94, .25);
}
.pricing-item.is-highlight:hover { transform: translateY(-10px); }

.pricing-tag {
    position: absolute;
    top: 16px;
    right: 24px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 500;
}

.pricing-header { margin-bottom: 22px; }
.pricing-title {
    margin: 0 0 6px;
    font-size: 26px;
    color: var(--primary-color);
}
.pricing-item.is-highlight .pricing-title { color: #fff; }
.pricing-subtitle {
    margin: 0;
    font-size: 14px;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: .06em;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px dashed rgba(38, 80, 94, .15);
    color: var(--primary-color);
}
.pricing-item.is-highlight .pricing-price {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, .2);
}
.pricing-price-value { font-size: 40px; font-weight: 700; line-height: 1; }
.pricing-price-currency { font-size: 22px; font-weight: 600; }
.pricing-price-period { font-size: 15px; opacity: .7; margin-left: 4px; }

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
}
.pricing-features i {
    color: var(--accent-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}
.pricing-item.is-highlight .pricing-features i { color: var(--accent-color); }

.pricing-btn-wrap { text-align: center; }
.pricing-btn-wrap .btn-default { width: 100%; }
.pricing-btn-wrap .btn-default.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
}
.pricing-btn-wrap .btn-default.btn-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.pricing-trust-list {
    list-style: none;
    padding: 0;
    margin: 50px 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    text-align: center;
}
.pricing-trust-list li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 15px;
}
.pricing-trust-list i { color: var(--accent-color); font-size: 20px; }

.pricing-slider-controls {
    align-items: center;
    margin-top: 32px;
}

.pricing-button-prev.swiper-button-disabled,
.pricing-button-next.swiper-button-disabled {
    opacity: .45;
    cursor: default;
}

.pricing-pagination {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 !important;
    background-color: rgba(38, 80, 94, .28);
    opacity: 1;
}

.pricing-pagination .swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 999px;
    background-color: var(--accent-color);
}

@media (max-width: 991px) {
    .pricing-plan-section { padding: 80px 0; }
    .pricing-plan-section .section-row > .col-lg-6:first-child { margin-bottom: 16px; }
    .pricing-trust-list { gap: 18px; margin-top: 36px; }
    .pricing-item { padding: 36px 28px 28px; }
    .pricing-title { font-size: 24px; }
    .pricing-price-value { font-size: 36px; }
    .pricing-price-currency { font-size: 20px; }
}

@media (max-width: 767px) {
    .pricing-item { padding: 32px 24px 24px; }
    .pricing-header { margin-bottom: 18px; }
    .pricing-price { margin-bottom: 22px; padding-bottom: 18px; }
    .pricing-features { gap: 12px; margin-bottom: 24px; }
    .pricing-features li { font-size: 14px; }
}

@media (max-width: 575px) {
    .pricing-plan-section { padding: 60px 0; }
    .pricing-plan-list { padding: 4px 2px 14px; }

    .pricing-item { padding: 28px 20px 20px; }
    .pricing-title { font-size: 22px; }
    .pricing-subtitle { font-size: 12px; }
    .pricing-price-value { font-size: 32px; }
    .pricing-price-currency { font-size: 18px; }
    .pricing-tag { top: 12px; right: 16px; font-size: 11px; padding: 5px 12px; }

    /* Trust list — стек у колонку, центровано */
    .pricing-trust-list { flex-direction: column; align-items: flex-start; gap: 14px; text-align: left; margin-top: 28px; }
    .pricing-trust-list li { font-size: 14px; }

    .pricing-slider-controls { margin-top: 24px; }

    /* Кнопка з кружком-стрілкою всередині картки — зменшений кружок */
    .pricing-btn-wrap .btn-default {
        padding: 14px 50px 14px 20px;
        font-size: 14px;
    }
    .pricing-btn-wrap .btn-default::before {
        width: 36px;
        height: 36px;
        background-size: 18px auto;
    }
}

/* ── Patient Stories ──────────────────────────────────────────── */
.patient-stories { padding: 110px 0; }

.stories-list { row-gap: 36px; }

.story-card .post-featured-image a {
    position: relative;
}

.story-card .post-item-content p {
    margin: 12px 0 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color, #555);
}

.story-item {
    background-color: #fff;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    transition: transform .35s ease, box-shadow .35s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #efe6d4;
}
.story-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(38, 80, 94, .12);
}

.story-image {
    position: relative;
    overflow: hidden;
}
.story-image figure { margin: 0; }
.story-image img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    transition: transform .8s ease;
}
.story-item:hover .story-image img { transform: scale(1.05); }

.story-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--accent-color);
    color: #fff;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .06em;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 500;
    z-index: 2;
}

.story-content {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.story-content h3 {
    margin: 0 0 14px;
    font-size: 22px;
    line-height: 1.3;
}
.story-content h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color .25s;
}
.story-content h3 a:hover { color: var(--accent-color); }
.story-content p {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-color, #555);
    flex: 1;
}
.story-content .readmore-btn {
    align-self: flex-start;
}

@media (max-width: 991px) {
    .patient-stories { padding: 80px 0; }
}
@media (max-width: 575px) {
    .patient-stories { padding: 60px 0; }
    .story-content { padding: 22px; }
    .story-content h3 { font-size: 19px; }
}

/* ── Transfer Bento ───────────────────────────────────────────── */
.transfer-section {
    padding: 110px 0;
    background-color: #faf6f1;
    overflow: hidden;
}

.transfer-bento {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-template-areas:
        "hero hero hero hero hero hero hero map map map map map"
        "hero hero hero hero hero hero hero map map map map map"
        "hero hero hero hero hero hero hero map map map map map"
        "doc doc doc doc quote quote quote phone phone phone phone phone"
        "doc doc doc doc quote quote quote phone phone phone phone phone"
        "doc doc doc doc quote quote quote pills pills pills pills pills";
    gap: 18px;
}

.transfer-tile {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.transfer-tile--hero {
    grid-area: hero;
    min-height: 410px;
    background-color: var(--primary-color);
    color: #fff;
}

.transfer-hero-media,
.transfer-hero-media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.transfer-hero-media {
    margin: 0;
}

.transfer-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, rgb(38 80 94 / 88%), rgb(38 80 94 / 42%));
    transition: background .6s ease;
}

.transfer-hero-media img {
    object-fit: cover;
    transform: scale(1);
    transition: transform .6s ease;
}

.transfer-tile--hero:hover .transfer-hero-media::after {
    background: linear-gradient(135deg, rgb(38 80 94 / 94%), rgb(38 80 94 / 62%));
}

.transfer-tile--hero:hover .transfer-hero-media img {
    transform: scale(1.04);
}

.transfer-hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    padding: 52px;
}

.transfer-kicker {
    display: block;
    margin-bottom: 16px;
    color: var(--accent-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.transfer-hero-content h2 {
    margin: 0 0 18px;
    color: #fff;
    font-size: 44px;
    line-height: 1.18;
}

.transfer-hero-content p {
    max-width: 590px;
    margin: 0 0 30px;
    color: rgb(255 255 255 / 84%);
    font-size: 17px;
    line-height: 1.7;
}

.transfer-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.transfer-phone-link {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: color .25s ease;
}

.transfer-phone-link:hover {
    color: var(--accent-color);
}

.transfer-tile--map {
    grid-area: map;
    min-height: 320px;
    padding: 26px 24px 22px;
    background-color: #faf6f1;
    border: 1px solid #efe6d4;
}

.transfer-map-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

.transfer-map {
    width: min(100%, 320px);
    height: auto;
}

.transfer-map-shape {
    fill: rgb(206 158 110 / 13%);
    stroke: rgb(38 80 94 / 35%);
    stroke-width: 2;
}

.transfer-map-line {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 1.8;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    opacity: .78;
    transition: stroke-dashoffset .8s ease;
}

.transfer-section.is-map-visible .transfer-map-line {
    stroke-dashoffset: 0;
}

.transfer-section.is-map-visible .transfer-map-line--two {
    transition-delay: .15s;
}

.transfer-section.is-map-visible .transfer-map-line--three {
    transition-delay: .3s;
}

.transfer-section.is-map-visible .transfer-map-line--four {
    transition-delay: .45s;
}

.transfer-map-city circle:not(.transfer-map-pulse) {
    fill: var(--primary-color);
    stroke: #fff;
    stroke-width: 3;
}

.transfer-map-city text {
    fill: rgb(38 80 94 / 70%);
    font-size: 12px;
    font-weight: 700;
}

.transfer-map-pulse {
    fill: none;
    stroke: var(--accent-color);
    stroke-width: 3;
    transform-box: fill-box;
    transform-origin: center;
    animation: transfer-pulse 2s ease-out infinite;
}

.transfer-tile--map p {
    margin: 0;
    color: rgb(38 80 94 / 62%);
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.transfer-tile--phone {
    grid-area: phone;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 180px;
    padding: 30px;
    background-color: var(--accent-color);
    color: #fff;
    text-decoration: none;
    transition: transform .3s ease, background-color .3s ease, box-shadow .3s ease;
}

.transfer-tile--phone:hover {
    transform: scale(1.02);
    background-color: #bd8f5f;
    color: #fff;
    box-shadow: 0 18px 44px rgb(206 158 110 / 28%);
}

.transfer-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 22px;
    border-radius: 50%;
    background-color: #fff;
    color: var(--accent-color);
    font-size: 22px;
}

.transfer-phone-note {
    margin-bottom: 8px;
    color: rgb(255 255 255 / 84%);
    font-size: 13px;
    line-height: 1.4;
}

.transfer-tile--phone strong {
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
}

.transfer-tile--doc {
    grid-area: doc;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 190px;
    padding: 26px;
    background-color: #faf6f1;
    border: 1px solid #efe6d4;
    transition: transform .3s ease, box-shadow .3s ease;
}

.transfer-tile--doc:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 38px rgb(38 80 94 / 10%);
}

.transfer-doc-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background-color: var(--accent-secondary-color);
    color: var(--accent-color);
    font-size: 26px;
}

.transfer-tile--doc h3 {
    margin: 26px 0 0;
    color: var(--primary-color);
    font-size: 24px;
    line-height: 1.25;
}

.transfer-tile--quote {
    grid-area: quote;
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: 190px;
    padding: 28px;
    background-color: #fff;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 12px 32px rgb(38 80 94 / 6%);
}

.transfer-quote-person {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
}

.transfer-quote-person img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transfer-tile--quote blockquote {
    margin: 0;
}

.transfer-tile--quote p {
    margin: 0 0 12px;
    color: var(--primary-color);
    font-size: 14px;
    font-style: italic;
    line-height: 1.65;
}

.transfer-tile--quote cite {
    color: rgb(38 80 94 / 70%);
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.transfer-tile--pills {
    grid-area: pills;
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 82px;
    padding: 18px;
    background-color: #fff;
    border: 1px solid #efe6d4;
}

.transfer-pill {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    border-radius: 999px;
    background-color: var(--accent-secondary-color);
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transform: translateX(-12px);
    opacity: 0;
    transition: transform .45s ease, opacity .45s ease;
}

.transfer-pill i {
    color: var(--accent-color);
}

.transfer-section.is-map-visible .transfer-pill {
    transform: translateX(0);
    opacity: 1;
}

.transfer-section.is-map-visible .transfer-pill:nth-child(2) {
    transition-delay: .1s;
}

.transfer-section.is-map-visible .transfer-pill:nth-child(3) {
    transition-delay: .2s;
}

@keyframes transfer-pulse {
    0% {
        opacity: .95;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.42);
    }
}

@media (width <= 1199px) {
    .transfer-bento {
        grid-template-columns: repeat(8, minmax(0, 1fr));
        grid-template-areas:
            "hero hero hero hero hero map map map"
            "hero hero hero hero hero map map map"
            "phone phone phone doc doc quote quote quote"
            "phone phone phone pills pills pills pills pills";
    }

    .transfer-tile--hero {
        min-height: 380px;
    }

    .transfer-hero-content {
        padding: 42px;
    }

    .transfer-hero-content h2 {
        font-size: 38px;
    }
}

@media (width <= 991px) {
    .transfer-section {
        padding: 80px 0;
    }

    .transfer-bento {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-areas:
            "hero hero"
            "map phone"
            "pills pills"
            "doc quote";
    }
}

@media (width <= 767px) {
    .transfer-section {
        padding: 60px 0;
    }

    .transfer-bento {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .transfer-tile--hero {
        min-height: 470px;
    }

    .transfer-hero-content {
        padding: 30px 24px;
    }

    .transfer-hero-content h2 {
        font-size: 30px;
    }

    .transfer-hero-content p {
        font-size: 15px;
    }

    .transfer-tile--phone {
        min-height: auto;
        padding: 24px;
    }

    .transfer-tile--map {
        min-height: auto;
        padding: 22px 16px 18px;
    }

    .transfer-map-wrap {
        min-height: 210px;
    }

    .transfer-tile--pills {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .transfer-tile--pills::-webkit-scrollbar {
        display: none;
    }

    .transfer-tile--quote {
        align-items: flex-start;
        padding: 24px;
    }
}

@media (width <= 575px) {
    .transfer-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .transfer-tile--quote {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    .transfer-map-pulse {
        animation: none;
    }

    .transfer-map-line,
    .transfer-pill,
    .transfer-hero-media img,
    .transfer-hero-media::after,
    .transfer-tile--phone,
    .transfer-tile--doc {
        transition: none;
    }
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

/* Hero */
.about-hero-section {
    padding: 80px 0;
}

.about-breadcrumb {
    background: none;
    padding: 0;
    margin-bottom: 16px;
}

.about-breadcrumb .breadcrumb-item,
.about-breadcrumb .breadcrumb-item a,
.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,.6);
}

.about-hero-section .section-title h1 em {
    font-style: italic;
    color: var(--accent-color);
}

.about-hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.about-hero-stat h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.about-hero-stat p {
    color: rgba(255,255,255,.65);
    font-size: 13px;
    margin: 4px 0 0;
}

.about-hero-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px;
    padding: 32px;
    text-align: center;
    position: relative;
}

.about-hero-badge {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    display: block;
    margin-bottom: 4px;
}

.about-hero-badge small {
    display: block;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,.7);
    margin-bottom: 24px;
}

.about-hero-card .trusted-profession-box {
    margin-top: 0;
}

/* Mission note */
.about-mission-note {
    margin-top: 48px;
    padding: 24px 28px;
    background: #FAF6F1;
    border-left: 4px solid var(--accent-color);
    border-radius: 12px;
}

.about-mission-note p {
    margin: 0;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.7;
}

/* Team bio */
.about-team-bio {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin-top: 6px;
}

/* Process: numbered icon-box */
.about-process-num {
    background: var(--primary-color) !important;
    border-radius: 50% !important;
    min-width: 52px !important;
    width: 52px !important;
    height: 52px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-weight: 700;
    font-size: 16px;
}

.about-process-num span {
    color: #fff;
}

/* Standards card */
.about-standards-card {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 40px;
    color: #fff;
    position: relative;
}

.about-standards-card h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.about-standards-card > p {
    color: rgba(255,255,255,.8);
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.7;
}

.about-standards-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.about-standards-list li {
    color: rgba(255,255,255,.85);
    font-size: 14px;
    padding: 6px 0 6px 24px;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.about-standards-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.about-standards-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--accent-color);
    text-align: center;
    position: absolute;
    bottom: -12px;
    right: -12px;
    transform: rotate(-8deg);
    padding: 8px;
}

.about-standards-badge span {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.about-standards-badge small {
    font-size: 9px;
    font-weight: 700;
    color: rgba(255,255,255,.9);
    text-transform: uppercase;
    line-height: 1.3;
}

/* CTA form box */
.about-cta-form-box {
    background: #FAF6F1;
    border-radius: 24px;
    padding: 32px;
}

.about-cta-form-box h3 {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-cta-phone {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.about-cta-phone:hover {
    color: var(--accent-color);
}

.about-cta-microcopy {
    font-size: 12px;
    color: rgba(38,80,94,.6);
    text-align: center;
    margin: 12px 0 0;
}

/* Responsive */
@media (width <= 991px) {
    .about-hero-card {
        margin-top: 40px;
    }

    .about-standards-badge {
        position: static;
        transform: none;
        margin-top: 24px;
    }

    .about-cta-form-box {
        margin-top: 40px;
    }
}

@media (width <= 767px) {
    .about-hero-stats {
        gap: 20px;
    }

    .about-hero-stat h2 {
        font-size: 28px;
    }

    .about-standards-card {
        padding: 28px;
    }
}

/* ── Transfer / Engaged ─────────────────────────────────────────── */
.engaged {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.engaged__img {
    position: absolute;
    left: -3rem;
    top: 50%;
    transform: translateY(-50%);
    /* height: 100%; */
    max-width: 36vw;
    object-fit: cover;
    border-radius: 12px;
}

.engaged__content {
    max-width: 620px;
    margin-left: auto;
    padding: 110px 0;
}

.engaged h2 { margin-bottom: 60px; }

.engaged__list {
    display: flex;
    gap: 24px;
    margin-bottom: 60px;
}

.engaged__item {
    flex: 1;
    text-align: center;
}

.engaged__item-icon {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.engaged__desk {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color);
}

@media (max-width: 1920px) {
    .engaged__img { max-width: 45vw; }
}

@media (max-width: 1200px) {
    .engaged__img { left: -4rem; max-width: 42%; }
    .engaged__content { max-width: 580px; }
}

@media (max-width: 991px) {
    /* Фото машини — banner внизу секції, без фіксованої висоти */
    .engaged {
        overflow: visible;
        display: flex;
        flex-direction: column-reverse;
    }
    .engaged__img {
        position: static;
        display: block;
        transform: none;
        width: calc(100% - 24px);
        max-width: 100%;
        height: auto;
        object-fit: contain;
        margin: 0 12px 32px;
        border-radius: 16px;
    }
    .engaged__content { max-width: 100%; margin-left: 0; padding: 80px 0 32px; }
    .engaged h2 { text-align: left; }
    .engaged__list { gap: 20px; margin-bottom: 40px; }
    .engaged__item-icon svg { width: 52px; height: 52px; }
}

@media (max-width: 767px) {
    .engaged__img { margin-bottom: 24px; }
    .engaged__content { padding: 64px 0 24px; }
    .engaged h2 { margin-bottom: 36px; }
    .engaged__desk { font-size: 14px; }
}

@media (max-width: 576px) {
    .engaged__img { border-radius: 12px; margin-bottom: 20px; }
    .engaged__content { padding: 48px 0 20px; }
    .engaged h2 { margin-bottom: 28px; }
    .engaged__list { flex-direction: column; gap: 24px; margin-bottom: 32px; }
    .engaged__item { text-align: left; display: flex; align-items: flex-start; gap: 14px; }
    .engaged__item-icon { margin-bottom: 0; flex-shrink: 0; }
    .engaged__item-icon svg { width: 44px; height: 44px; }
    .engaged__desk { font-size: 14px; line-height: 1.45; padding-top: 4px; }

    /* CTA-row: кнопка + телефон щільніше */
    .engaged__btn { width: 100%; }
    .engaged__btn .btn-default {
        padding: 14px 50px 14px 20px;
        font-size: 14px;
    }
    .engaged__btn .btn-default::before {
        width: 36px;
        height: 36px;
        background-size: 18px auto;
    }
}

/* ── Footer carely-style ────────────────────────────────────────── */

.main-footer {
    margin-bottom: 0;
}

.about-footer {
    margin-bottom: 0;
}

.footer-newsletter-box {
    margin-left: 0;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.footer-logo img {
    height: 64px;
    width: auto;
    flex-shrink: 0;
}

.footer-logo .navbar-brand-text { display: flex; flex-direction: column; }
.footer-logo .navbar-brand-name {
    color: #fff;
    font-size: 32px;
    letter-spacing: 0.14em;
}
.footer-logo .navbar-brand-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-top: 4px;
}

.footer-social-links {
    margin-top: 40px;
}

.footer-social-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-links ul li {
    display: inline-block;
    margin-right: 12px;
}

.footer-social-links ul li:last-child {
    margin-right: 0;
}

.footer-social-links ul li a {
    width: 40px;
    height: 40px;
    color: var(--white-color);
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a:hover {
    background: var(--accent-color);
}

.footer-social-links ul li a i {
    font-size: 18px;
    color: inherit;
}

.footer-links h3 {
    font-size: 20px;
    text-transform: none;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer-links p {
    color: var(--white-color);
    margin: 0;
}

.footer-links p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links p a:hover {
    color: var(--accent-color);
}

.footer-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links ul li {
    position: relative;
    text-transform: none;
    color: var(--white-color);
    line-height: normal;
    margin-bottom: 14px;
    padding-left: 16px;
}

.footer-links ul li:last-child {
    margin-bottom: 0;
}

.footer-links ul li::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9A961;
}

.footer-links ul li a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
    color: var(--accent-color);
}

.footer-contact-item {
    display: block;
    margin-bottom: 30px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-item h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 10px;
}

.footer-contact-item p {
    color: var(--white-color);
    margin: 0;
}

.footer-contact-item p a {
    color: inherit;
    transition: all 0.3s ease-in-out;
}

.footer-contact-item p a:hover {
    color: var(--accent-color);
}

.footer-newsletter-form .form-group {
    border-radius: 10px;
    margin-top: 20px;
}

.footer-copyright {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
    margin-top: 60px;
}

.footer-copyright-text p {
    color: var(--white-color);
    text-align: left;
    margin-bottom: 0;
}

.footer-privacy-policy {
    text-align: right;
}

.footer-privacy-policy ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 32px;
}

.footer-privacy-policy ul li {
    color: var(--white-color);
    text-transform: none;
    line-height: 1.6em;
    transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover {
    color: var(--accent-color);
}

.footer-privacy-policy ul li a {
    color: inherit;
}

@media (max-width: 991px) {
    .main-footer { padding: 64px 0 0; }
    .main-footer .row > [class*="col-"] { margin-bottom: 40px; }
    .main-footer .row > .col-lg-12 { margin-bottom: 0; }
    .footer-social-links { margin-top: 24px; }
    .footer-copyright { margin-top: 20px; padding: 28px 0; }
}

@media (max-width: 767px) {
    .footer-copyright {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 28px 0;
    }
    .footer-copyright-text p { text-align: center; }
    .footer-privacy-policy { text-align: center; }
    .footer-privacy-policy ul { justify-content: center; gap: 8px 24px; }
    .footer-contact-item { margin-bottom: 20px; }
    .footer-logo img { height: 52px; }
    .footer-logo .navbar-brand-name { font-size: 26px; }
    .footer-links h3 { font-size: 18px; margin-bottom: 14px; }
}

/* ── Calc Banner (fixed sliding popup) ─────────────────────────────── */
.calc-banner.md-calc-banner-fixed {
    position: fixed;
    left: -360px;
    bottom: 24px;
    width: 320px;
    z-index: 9990;
    opacity: 0;
    transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.calc-banner.md-calc-banner-fixed.visible {
    left: 24px;
    opacity: 1;
}
.calc-banner__container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    padding: 28px;
    min-height: 170px;
    background-color: var(--primary-color);
    background-size: cover;
    background-position: center right;
    color: #fff;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}
.calc-banner__container::after { z-index: -1; }
.calc-banner__title {
    font-size: 15px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    color: #fff !important;
    margin: 0 0 10px !important;
}
.calc-banner__text {
    font-size: 13px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 16px;
}
.calc-banner__link a {
    display: inline-flex;
    align-items: center;
    background: var(--accent-color);
    color: #fff;
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: filter 0.25s ease;
}
.calc-banner__link a:hover { filter: brightness(1.1); }
.calc-banner__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s ease;
}
.calc-banner__close:hover { color: #fff; }

@media (max-width: 480px) {
    .calc-banner.md-calc-banner-fixed {
        width: calc(100vw - 32px);
        left: calc(-100vw);
    }
    .calc-banner.md-calc-banner-fixed.visible { left: 16px; }
}

/* ── Our Services ────────────────────────────────────────────────── */
.our-services {
    padding: 100px 0;
}

.service-item {
    position: relative;
    background: var(--white-color);
    box-shadow: 0px 0px 10px 0px #0B10300D;
    border-radius: 20px;
    height: calc(100% - 30px);
    margin-bottom: 30px;
    padding: 40px;
    overflow: hidden;
}

.service-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white-color);
    border-radius: 20px;
    width: 100%;
    height: 100%;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
    transform: translate(100%, -100%);
}

.service-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-image,
.service-item:hover .service-image {
    opacity: 1;
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 70%;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    position: relative;
    z-index: 2;
}

.service-body .icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-color);
    border-radius: 50%;
    margin-bottom: 30px;
    padding: 0;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-body .icon-box,
.service-item:hover .service-body .icon-box {
    background: var(--secondary-color);
}

.service-body .icon-box img {
    width: 32px;
    height: 32px;
    display: block;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-body .icon-box img,
.service-item:hover .service-body .icon-box img {
    filter: brightness(0) invert(0);
}

.service-content {
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 25px;
    padding-bottom: 25px;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-content,
.service-item:hover .service-content {
    border-color: var(--dark-divider-color);
}

.service-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    transition: all 0.4s ease-in-out;
}

.service-content h3 a {
    color: inherit;
}

.service-content p {
    margin-bottom: 0;
    transition: all 0.4s ease-in-out;
}

.service-item.active .service-content h3,
.service-item:hover .service-content h3,
.service-item.active .service-content p,
.service-item:hover .service-content p {
    color: var(--white-color);
}

.service-item.active .service-readmore-btn .readmore-btn,
.service-item:hover .service-readmore-btn .readmore-btn {
    color: var(--white-color);
}

.service-item.active .service-readmore-btn .readmore-btn::before,
.service-item:hover .service-readmore-btn .readmore-btn::before {
    filter: brightness(0) invert(1);
}

.service-cta-box {
    position: relative;
    border-radius: 20px;
    height: calc(100% - 30px);
    overflow: hidden;
    margin-bottom: 30px;
}

.service-cta-image {
    height: 100%;
}

.service-cta-image figure {
    display: block;
    height: 100%;
}

.service-cta-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    transition: all 0.4s ease-in-out;
}

.service-cta-box:hover .service-cta-image img {
    transform: scale(1.1);
}

.service-cta-content {
    position: absolute;
    right: 30px;
    bottom: 30px;
    left: 30px;
    background: var(--dark-divider-color);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    text-align: center;
    padding: 20px 30px;
    z-index: 1;
}

.service-cta-content h3 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 30px;
}

.section-footer-text {
    margin-top: 30px;
    text-align: center;
}

.section-footer-text p {
    margin: 0;
}

.dark-section .section-footer-text p {
    color: var(--white-color);
}

.section-footer-text p span {
    display: inline-block;
    line-height: 1.1em;
    color: var(--white-color);
    background: var(--accent-color);
    border-radius: 30px;
    padding: 4px 12px;
    margin-right: 10px;
}

/* Services адаптив */
@media (max-width: 991px) {
    .our-services { padding: 80px 0; }
    .our-services .section-row > .col-lg-6:first-child { margin-bottom: 16px; }
    .service-item { padding: 32px 28px; }
}

@media (max-width: 767px) {
    .our-services { padding: 64px 0; }
    .service-item { padding: 28px 24px; height: auto; margin-bottom: 20px; }
    .service-body .icon-box { width: 44px; height: 44px; margin-bottom: 20px; }
    .service-body .icon-box img { width: 26px; height: 26px; }
    .service-content { margin-bottom: 18px; padding-bottom: 18px; }
    .service-content h3 { font-size: 18px; }
    .service-content p { font-size: 14px; }
    .service-cta-box { height: auto; margin-bottom: 20px; }
    .service-cta-content { right: 16px; left: 16px; bottom: 16px; padding: 16px 20px; }
    .service-cta-content h3 { font-size: 17px; margin-bottom: 20px; }
}

@media (max-width: 575px) {
    .our-services { padding: 56px 0; }
    .service-item { padding: 24px 20px; }
    .service-content h3 { font-size: 17px; }
    .service-cta-content h3 { font-size: 16px; }
    .section-footer-text { margin-top: 16px; font-size: 13px; }
    .section-footer-text p span { font-size: 12px; padding: 3px 10px; }

    /* Service CTA кнопка з кружком-стрілкою */
    .service-cta-content .btn-default {
        padding: 12px 44px 12px 18px;
        font-size: 13px;
    }
    .service-cta-content .btn-default::before {
        width: 32px;
        height: 32px;
        background-size: 16px auto;
    }
}

.section-footer-text p a {
    font-weight: 600;
    color: var(--accent-color);
    text-decoration: underline;
    transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
    color: var(--primary-color);
}

.dark-section .section-footer-text p a:hover {
    color: var(--white-color);
}


/* ── Calc Price Section ──────────────────────────────────────────────── */
.calc-price {
  --main-color: var(--accent-color);
  --brad-regular: 12px;
  --quiz-hover: var(--accent-color);
  padding-bottom: 5.46875vw;
  padding-top: 4vw;
}
.calc-price__title { margin-bottom: 1.0416666667vw; }
.calc-price__text {
  font-size: 1.6666666667vw;
  line-height: 4.1666666667vw;
  letter-spacing: 0.04em;
  font-weight: 300;
  margin-bottom: 2.6041666667vw;
}
.calc-price__container {
  color: #000;
  min-height: 44.2708333333vw;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
}
.calc-price__container.md-final-step .calc-price__info { display: none; }
.calc-price__container.md-final-step .calc-price__quiz { width: 100%; }

/* Quiz panel */
.calc-price__quiz {
  width: 57.2916666667vw;
  height: auto;
  border-radius: var(--brad-regular);
  background-color: #fff;
  padding: 2.0833333333vw 4.6875vw 2.6041666667vw 4.6875vw;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 40px rgba(0,0,0,.07);
}

/* Progress bar */
.calc-price__quiz .quiz-progress {
  width: 100%;
  height: 2.0833333333vw;
  padding: 0.2604166667vw 0.3125vw;
  border-radius: var(--brad-regular);
  background-color: #f0f0f0;
  position: relative;
  margin-bottom: 2.34375vw;
}
.calc-price__quiz .quiz-progress .progress-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 400;
  font-size: 0.8333333333vw;
  line-height: 0.9375vw;
  letter-spacing: 0.03em;
  transform: translate(-50%, -50%);
  z-index: 5;
}
.calc-price__quiz .quiz-progress .progress-bar {
  width: 0%;
  height: 100%;
  border-radius: var(--brad-regular);
  background-color: var(--main-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.5s;
}
.calc-price__quiz .quiz-progress .progress-bar::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 100%; height: 100%;
  background-image: url("../images/quiz/icons/progress-bar.svg");
  background-position: center left;
  background-size: contain;
  background-repeat: repeat-x;
  z-index: 2;
  animation: calc_progress_bar 40s linear infinite;
}

/* Quiz questions */
.quiz-questions-container { flex-grow: 1; }
.quiz-questions-container .quiz-question { display: none; }
.quiz-questions-container .quiz-question.active {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
}
.quiz-questions-container .quiz-question[data-question-id="1"] .question-control .prev-btn {
  opacity: 0; pointer-events: none;
}

.quiz-questions-container .question-title {
  margin-bottom: 2.0833333333vw;
  display: flex; align-items: center;
}
.quiz-questions-container .question-title span {
  padding: 0 1.5625vw;
  height: 2.34375vw;
  border-radius: var(--brad-regular);
  background-color: var(--main-color);
  font-weight: 600;
  font-size: 0.78125vw;
  line-height: 2.34375vw;
  letter-spacing: 0.04em;
  color: #fff;
  margin-right: 1.1458333333vw;
  flex-shrink: 0;
}
.quiz-questions-container .question-title p {
  font-weight: 700;
  font-size: 1.875vw;
  line-height: 2.1875vw;
  letter-spacing: 0.04em;
}

/* Answers container */
.quiz-questions-container .answers-container {
  flex-grow: 1;
  margin-top: 0; margin-bottom: auto;
  height: 26.0416666667vw;
  overflow-x: hidden; overflow-y: auto;
  margin-right: -1.5625vw;
  padding-right: 0.5208333333vw;
}
.quiz-questions-container .answers-container .container-flex {
  display: flex; flex-wrap: wrap;
  margin: -0.9114583333vw -1.4322916667vw;
}
.quiz-questions-container .answers-container .answers-wrap {
  margin: 0.9114583333vw 1.4322916667vw;
  position: relative;
}

/* Answer item with image */
.quiz-questions-container .answers-container .answers-item {
  width: 14.0625vw;
  position: relative;
  cursor: pointer;
  display: flex; flex-direction: column;
}
.quiz-questions-container .answers-container .answers-item input {
  position: absolute; top: 0; left: 0;
  z-index: 5; pointer-events: none; opacity: 0;
}
.quiz-questions-container .answers-container .answers-item__img {
  width: 100%;
  height: 9.1145833333vw;
  border-radius: var(--brad-regular);
  overflow: hidden;
  background-size: cover; background-position: center; background-repeat: no-repeat;
  border: 0.1041666667vw solid transparent;
  transition: 0.3s;
}
.quiz-questions-container .answers-container .answers-item__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.quiz-questions-container .answers-container .answers-item__icon {
  width: 1.7708333333vw; height: 1.7708333333vw;
  margin: 0 auto; margin-top: -0.8854166667vw;
  border-radius: 50%;
  background-color: #fff;
  border: 0.2083333333vw solid #FBFBFB;
  margin-bottom: 0.5208333333vw;
  display: flex; align-items: center; justify-content: center;
  transition: 0.3s;
}
.quiz-questions-container .answers-container .answers-item__icon svg { fill: #AEAEAE; transition: 0.3s; }
.quiz-questions-container .answers-container .answers-item__text {
  font-weight: 500;
  font-size: 0.9375vw; line-height: 1.09375vw;
  text-align: center; letter-spacing: 0.04em;
}
.quiz-questions-container .answers-container .answers-item:hover .answers-item__img {
  border-color: var(--quiz-hover);
}
.quiz-questions-container .answers-container .answers-item.checked .answers-item__img { border-color: var(--main-color); }
.quiz-questions-container .answers-container .answers-item.checked .answers-item__icon { background-color: var(--main-color); }
.quiz-questions-container .answers-container .answers-item.checked .answers-item__icon svg { fill: #fff; }

/* No-image answers */
.quiz-questions-container .answers-container.md-no-img-item {
  height: auto; overflow: visible; margin-right: 0; padding-right: 0;
}
.quiz-questions-container .answers-container.md-no-img-item .container-flex {
  margin: -0.78125vw -1.0416666667vw;
}
.quiz-questions-container .answers-container.md-no-img-item .answers-wrap {
  margin: 0.78125vw 1.0416666667vw; position: relative;
}
.quiz-questions-container .answers-container.md-no-img-item .answers-item {
  width: 22.9166666667vw; flex-direction: row;
  padding: 1.1458333333vw 1.0416666667vw; padding-right: 3.6458333333vw;
  align-items: center;
  background-color: #fff;
  border-radius: var(--brad-regular);
  border: 0.0520833333vw solid #fff;
  transition: 0.3s;
}
.quiz-questions-container .answers-container.md-no-img-item .answers-item__icon {
  margin: 0; background-color: #FBFBFB; margin-right: 0.7291666667vw;
  border: none; width: 1.5625vw; height: 1.5625vw;
}
.quiz-questions-container .answers-container.md-no-img-item .answers-item__text { text-align: left; }
.quiz-questions-container .answers-container.md-no-img-item .answers-item:hover { border-color: var(--quiz-hover); }
.quiz-questions-container .answers-container.md-no-img-item .answers-item.checked { border-color: var(--main-color); }
.quiz-questions-container .answers-container.md-no-img-item .answers-item.checked .answers-item__icon { background-color: var(--main-color); }
.quiz-questions-container .answers-container.md-no-img-item .answers-item.checked .answers-item__icon svg { fill: #fff; }

/* Answers with inputs */
.quiz-questions-container .answers-container.md-answers-with-image {
  margin-right: 0; padding-right: 0;
  display: flex; align-items: flex-start; justify-content: center;
  margin-bottom: auto; height: auto; overflow: visible;
}
.quiz-questions-container .answers-container.md-answers-with-image .answers-content {
  width: 20.8333333333vw; margin: 0 auto;
  display: flex; flex-direction: column; align-items: flex-start;
}
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .input-wrap {
  margin-bottom: 1.0416666667vw; width: 100%;
}
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .input-wrap p {
  font-size: 0.8333333333vw; margin-bottom: 0.5208333333vw; font-weight: 600;
}
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .input-wrap label { position: relative; display: block; }
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .input-wrap label input {
  width: 20.8333333333vw; height: 3.90625vw;
  border-radius: var(--brad-regular); padding: 0 1.5625vw; font-size: 0.8333333333vw;
  border: 1px solid #e0e0e0; background: #fafafa;
}
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .input-wrap label span {
  position: absolute; top: 50%; transform: translateY(-50%);
  left: 100%; font-size: 0.8333333333vw; padding-left: 0.5208333333vw;
}
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .answer-skip {
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; margin-top: 0.5vw;
}
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .answer-skip span {
  width: 1.0416666667vw; height: 1.0416666667vw;
  border-radius: var(--brad-regular);
  border: 0.1041666667vw solid var(--main-color);
  background-color: transparent; margin-right: 0.5208333333vw;
  display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .answer-skip span img { width: 0.4166666667vw; height: 0.3125vw; opacity: 0; transition: 0.3s; }
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .answer-skip.checked span { background-color: var(--main-color); }
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .answer-skip.checked span img { opacity: 1; }
.quiz-questions-container .answers-container.md-answers-with-image .answers-content .answer-skip p { font-size: 0.8333333333vw; line-height: 0.9375vw; font-weight: 600; }

/* Question controls */
.quiz-questions-container .question-control {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1.5625vw; position: relative; z-index: 15;
}
.quiz-questions-container .question-control .btn-wrap { position: relative; border-radius: var(--brad-regular); }
.quiz-questions-container .question-control .btn-wrap:hover .btn-wrap__hint { opacity: 1; pointer-events: all; }
.quiz-questions-container .question-control .btn-wrap.active { cursor: not-allowed; }
.quiz-questions-container .question-control .btn-wrap__hint {
  position: absolute; width: 130%; left: 50%; transform: translateX(-50%);
  bottom: 110%; padding: 0.78125vw;
  border-radius: var(--brad-regular); background-color: #fff;
  box-shadow: 0 0 0.5208333333vw rgba(0,0,0,.25);
  font-size: 0.8333333333vw; line-height: 0.9375vw;
  transition: 0.3s; opacity: 0; pointer-events: none; display: none; text-align: center;
}
.quiz-questions-container .question-control__btn {
  width: 9.1145833333vw; height: 3.90625vw;
  justify-content: center; padding: 0 1.5625vw;
  display: flex; align-items: center; cursor: pointer;
}
.quiz-questions-container .question-control .prev-btn {
  color: #000; background-color: #fff;
  border-radius: var(--brad-regular);
}
.quiz-questions-container .question-control .prev-btn span {
  font-weight: 600; font-size: 1.0416666667vw; line-height: 1.25vw;
  text-align: center; letter-spacing: 0.05em;
}

/* md-main-color-btn (quiz next/submit buttons) */
.md-main-color-btn {
  background-color: var(--main-color);
  color: #fff;
  border-radius: var(--brad-regular);
  font-weight: 600;
  font-size: 1.0416666667vw;
  letter-spacing: 0.04em;
  border: none;
  display: inline-flex; align-items: center; justify-content: center;
  transition: 0.3s;
  cursor: pointer;
}
.md-main-color-btn:hover { filter: brightness(1.1); color: #fff; }
.md-main-color-btn.disabled { opacity: 0.5; pointer-events: none; }

/* Final step */
.quiz-final { display: flex; align-items: stretch; justify-content: center; }
.quiz-final__content { width: 100%; display: flex; flex-direction: column; align-items: center; }
.quiz-final__text {
  padding: 0.5208333333vw 1.5625vw; min-height: 2.34375vw;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78125vw; letter-spacing: 0.04em; margin-bottom: 0.78125vw;
  font-weight: 600; background-color: var(--main-color);
  border-radius: var(--brad-regular); color: #fff;
}
.quiz-final__title {
  font-weight: 700; font-size: 1.875vw; line-height: 2.1875vw;
  text-align: center; letter-spacing: 0.04em; margin-bottom: 1.8229166667vw;
}
.quiz-final__form { width: 100%; }
.quiz-final__form .form-container {
  width: 22.3958333333vw; margin: 0 auto;
  display: flex; flex-direction: column; margin-bottom: 0.78125vw;
}
.quiz-final__form .form-container .hidden { display: none; }
.quiz-final__form .form-container .form-input {
  width: 100%; margin: 0; margin-bottom: 0.5208333333vw;
  background: #f5f5f5; border: 1px solid #e0e0e0;
  border-radius: var(--brad-regular); padding: 0 1.5625vw; height: 3.4375vw;
  font-size: 0.875vw;
}
.quiz-final__form .form-container .form-btn {
  width: 100%; justify-content: center;
  height: 3.90625vw;
}
.quiz-final__form .form-checkbox {
  width: 20.8333333333vw; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: center; margin-bottom: 1.0416666667vw;
}
.quiz-final__form .form-checkbox div { display: flex; align-items: center; margin-right: 0.5vw; }
.quiz-final__form .form-checkbox div input { margin-right: 0.3vw; }
.quiz-final__form .form-checkbox div img { width: 0.8333333333vw; }
.quiz-final__form .form-checkbox p { font-size: 0.7291666667vw; }
.quiz-final__form .form-checkbox p a { color: var(--main-color); }
.quiz-final__form .form-top {
  display: flex; align-items: center; justify-content: center; margin-bottom: 1.8229166667vw;
}
.quiz-final__form .form-top__item {
  width: 5.2083333333vw; margin: 0 0.1041666667vw; padding: 0.3645833333vw;
  background-color: transparent; border-radius: var(--brad-regular);
  border: 0.0520833333vw solid transparent;
  position: relative; display: flex; flex-direction: column;
  align-items: center; cursor: pointer; transition: 0.3s;
}
.quiz-final__form .form-top__item input { position: absolute; top: 0; left: 0; opacity: 0; pointer-events: none; }
.quiz-final__form .form-top__item span {
  width: 3.125vw; height: 3.125vw; border-radius: 50%;
  background-color: var(--main-color);
  display: flex; align-items: center; justify-content: center; margin-bottom: 0.78125vw;
}
.quiz-final__form .form-top__item span.WhatsApp { background-color: #31B939; }
.quiz-final__form .form-top__item span.telegram  { background-color: #05A0EB; }
.quiz-final__form .form-top__item span.zvonok    { background-color: #f44336; }
.quiz-final__form .form-top__item span img { width: 1.3020833333vw; pointer-events: none; }
.quiz-final__form .form-top__item p { font-size: 0.8333333333vw; font-weight: 600; }
.quiz-final__form .form-top__item:hover,
.quiz-final__form .form-top__item.active { background-color: #fff; border-color: var(--main-color); }
.quiz-final__form .form-bottom { width: 20.8333333333vw; margin: 0 auto; }
.quiz-final__form .form-bottom__title {
  font-weight: 600; font-size: 1.0416666667vw; text-align: center;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.1979166667vw;
}
.quiz-final__form .form-bottom__item {
  width: 100%; height: 4.4270833333vw; position: relative;
  padding: 0 1.5625vw 0 2.03125vw;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.78125vw; border-radius: var(--brad-regular); overflow: hidden;
}
.quiz-final__form .form-bottom__item .item-img {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1; border-radius: var(--brad-regular);
}
.quiz-final__form .form-bottom__item .item-img img { width: 100%; height: 100%; object-fit: cover; }
.quiz-final__form .form-bottom__item .item-img::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,15,15,0.6); border-radius: var(--brad-regular); z-index: 2;
}
.quiz-final__form .form-bottom__item .item-text {
  position: relative; z-index: 3; width: 10.4166666667vw;
  font-weight: 500; font-size: 0.9375vw; letter-spacing: 0.04em; color: #fff;
}
.quiz-final__form .form-bottom__item .item-icon {
  width: 1.8229166667vw; height: 1.8229166667vw; border-radius: 50%;
  background-color: var(--main-color);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 3;
}
.quiz-final__form .form-bottom__item .item-icon img { width: 0.5208333333vw; }

/* Sidebar info */
.calc-price__info {
  width: 23.4375vw; height: auto;
  border-radius: var(--brad-regular);
  background-position: center; background-repeat: no-repeat; background-size: cover;
  padding: 1.3541666667vw 1.3020833333vw 1.40625vw 1.3020833333vw;
  position: relative; display: flex; flex-direction: column;
}
.calc-price__info .info-status {
  padding: 0 1.0416666667vw; height: 2.34375vw;
  display: flex; align-items: center;
  font-size: 0.78125vw; letter-spacing: 0.04em;
  color: #fff; background-color: var(--main-color);
  border-radius: var(--brad-regular);
  position: absolute; top: 1.3541666667vw; left: 1.6145833333vw;
}
.calc-price__info .info-status.md-always-green { background-color: #31B939 !important; }
.calc-price__info .info-status::before {
  content: ""; width: 0.3645833333vw; height: 0.3645833333vw;
  border-radius: 50%; background-color: #fff; margin-right: 0.4166666667vw;
  animation: calc_pulse 2.5s linear infinite;
}
.calc-price__info .info-person { width: 14.5833333333vw; margin: 0 auto; margin-bottom: 2.3958333333vw; }
.calc-price__info .info-person__img { width: 113%; height: 18.4166666667vw; }
.calc-price__info .info-person__img img { width: 100%; height: 100%; object-fit: contain; pointer-events: none; }
.calc-price__info .info-person__name {
  display: flex; align-items: center; justify-content: center;
  padding: 1.0416666667vw 1.5625vw;
  background: #fff; border-radius: var(--brad-regular);
  font-weight: 600; font-size: 1.0416666667vw; text-align: center; letter-spacing: 0.04em;
}
.calc-price__info .info-text {
  font-size: 0.9375vw; line-height: 1.3020833333vw;
  text-align: center; letter-spacing: 0.04em;
  margin-bottom: 3.0729166667vw; flex-grow: 1; padding: 0 3.125vw;
}
.calc-price__info .info-text p { display: none; }
.calc-price__info .info-text p.active { display: block; }
.calc-price__info .info-bottom { margin-top: auto; margin-bottom: 0; }
.calc-price__info .info-bottom__text {
  font-weight: 600; font-size: 1.0416666667vw; text-align: center;
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 1.1979166667vw;
}
.calc-price__info .info-bottom__item {
  width: 100%; height: 4.4270833333vw; position: relative;
  padding: 0 1.5625vw 0 2.03125vw;
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 0.78125vw; border-radius: var(--brad-regular); overflow: hidden;
}
.calc-price__info .info-bottom__item .item-img {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1; border-radius: var(--brad-regular);
}
.calc-price__info .info-bottom__item .item-img img { width: 100%; height: 100%; object-fit: cover; }
.calc-price__info .info-bottom__item .item-img::after {
  content: ""; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15,15,15,0.6); border-radius: var(--brad-regular); z-index: 2;
}
.calc-price__info .info-bottom__item .item-text {
  position: relative; z-index: 3; font-weight: 500;
  font-size: 0.9375vw; letter-spacing: 0.04em; color: #fff;
}
.calc-price__info .info-bottom__item .item-icon {
  width: 1.8229166667vw; height: 1.8229166667vw; border-radius: 50%;
  background-color: var(--main-color);
  display: flex; align-items: center; justify-content: center; position: relative; z-index: 3;
}
.calc-price__info .info-bottom__item .item-icon img { width: 0.5208333333vw; }
.calc-price__info .info-agreement {
  text-align: center; font-size: 0.625vw; color: rgba(0,0,0,.4);
  margin-top: 0.78125vw;
}

/* Keyframes */
@keyframes calc_progress_bar {
  0%   { background-position: 0 center; }
  100% { background-position: 200% center; }
}
@keyframes calc_pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: .6; }
}

/* ── Calc Price — site-style overrides ─────────────────────────────── */

/* Remove old standalone title/text styles — replaced by section-title row */
.calc-price__title,
.calc-price__text { display: none; }

/* Section container top margin after section-row */
.calc-price__container { margin-top: 3.125vw; }

/* Sidebar: navy background matching primary color */
.calc-price__info {
    background-image: none !important;
    background-color: var(--primary-color);
}
.calc-price__info .info-status {
    background-color: var(--accent-color) !important;
    color: #fff;
}
.calc-price__info .info-person__name {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.calc-price__info .info-text {
    color: rgba(255, 255, 255, 0.75);
}
.calc-price__info .info-bottom__text {
    color: rgba(255, 255, 255, 0.55);
}
.calc-price__info .info-agreement {
    color: rgba(255, 255, 255, 0.3);
}

/* Answer images: primary-color overlay to mask placeholder photos */
.quiz-questions-container .answers-container .answers-item__img {
    position: relative;
}
.quiz-questions-container .answers-container .answers-item__img::after {
    content: "";
    position: absolute; inset: 0;
    background: rgba(23, 38, 55, 0.5);
    border-radius: var(--brad-regular);
    z-index: 1;
    transition: 0.3s;
    pointer-events: none;
}
.quiz-questions-container .answers-container .answers-item.checked .answers-item__img::after {
    background: rgba(204, 181, 123, 0.45);
}
.quiz-questions-container .answers-container .answers-item__icon {
    position: relative; z-index: 2;
}

/* ── Calc Price responsive ──────────────────────────────────────────── */
@media (max-width: 1200px) {
  .calc-price { padding-top: 60px; padding-bottom: 60px; }
  .calc-price__container { min-height: unset; flex-direction: column; gap: 24px; margin-top: 40px; }
  .calc-price__quiz { width: 100%; padding: 32px 28px; }
  .calc-price__info { width: 100%; }
  .calc-price__quiz .quiz-progress { height: 32px; }
  .calc-price__quiz .quiz-progress .progress-text { font-size: 11px; }
  .quiz-questions-container .question-title { margin-bottom: 24px; }
  .quiz-questions-container .question-title span { padding: 0 16px; height: 32px; font-size: 12px; line-height: 32px; margin-right: 12px; }
  .quiz-questions-container .question-title p { font-size: 20px; line-height: 1.3; }
  .quiz-questions-container .answers-container { height: auto; max-height: 50vh; margin-right: 0; padding-right: 0; }
  .quiz-questions-container .answers-container .answers-item { width: 140px; }
  .quiz-questions-container .answers-container .answers-item__img { height: 100px; }
  .quiz-questions-container .answers-container .answers-item__icon { width: 24px; height: 24px; margin-top: -12px; }
  .quiz-questions-container .answers-container .answers-item__text { font-size: 13px; line-height: 1.3; }
  .quiz-questions-container .answers-container.md-no-img-item .answers-item { width: 100%; padding: 14px 16px; }
  .quiz-questions-container .answers-container.md-answers-with-image .answers-content { width: 100%; }
  .quiz-questions-container .answers-container.md-answers-with-image .answers-content .input-wrap label input { width: 100%; height: 48px; font-size: 15px; }
  .quiz-questions-container .answers-container.md-answers-with-image .answers-content .input-wrap p { font-size: 14px; }
  .quiz-questions-container .answers-container.md-answers-with-image .answers-content .answer-skip span { width: 20px; height: 20px; }
  .quiz-questions-container .answers-container.md-answers-with-image .answers-content .answer-skip p { font-size: 13px; }
  .quiz-questions-container .question-control__btn { width: 140px; height: 48px; padding: 0 20px; }
  .md-main-color-btn { font-size: 14px; }
  .quiz-final__text { font-size: 12px; padding: 8px 20px; }
  .quiz-final__title { font-size: 22px; margin-bottom: 24px; }
  .quiz-final__form .form-container { width: 100%; }
  .quiz-final__form .form-container .form-input { height: 48px; font-size: 15px; padding: 0 18px; }
  .quiz-final__form .form-container .form-btn { height: 52px; font-size: 15px; }
  .quiz-final__form .form-checkbox { width: 100%; }
  .quiz-final__form .form-checkbox p { font-size: 12px; }
  .quiz-final__form .form-top__item { width: 80px; }
  .quiz-final__form .form-top__item span { width: 48px; height: 48px; }
  .quiz-final__form .form-top__item span img { width: 24px; }
  .quiz-final__form .form-top__item p { font-size: 12px; }
  .quiz-final__form .form-bottom { width: 100%; }
  .quiz-final__form .form-bottom__title { font-size: 14px; }
  .quiz-final__form .form-bottom__item { height: 64px; }
  .quiz-final__form .form-bottom__item .item-text { font-size: 14px; }
  .quiz-final__form .form-bottom__item .item-icon { width: 28px; height: 28px; }
  .quiz-final__form .form-bottom__item .item-icon img { width: 10px; }
  .calc-price__info { padding: 24px; min-height: 320px; }
  .calc-price__info .info-status { font-size: 12px; height: 32px; padding: 0 16px; }
  .calc-price__info .info-person { width: 200px; }
  .calc-price__info .info-person__img { height: 240px; }
  .calc-price__info .info-person__name { font-size: 15px; padding: 12px 20px; }
  .calc-price__info .info-text { font-size: 14px; line-height: 1.5; padding: 0 20px; margin-bottom: 32px; }
  .calc-price__info .info-bottom__text { font-size: 13px; }
  .calc-price__info .info-bottom__item { height: 56px; }
  .calc-price__info .info-bottom__item .item-text { font-size: 13px; }
  .calc-price__info .info-agreement { font-size: 11px; }
}

/* ── What We Do — відступ між фото і контакт-карткою на mobile ───────── */
@media (max-width: 991px) {
  .what-we-image-box .what-we-contact-box { margin-top: 64px !important; }
  .what-we-contact-box { gap: 24px; }
}

@media (max-width: 575px) {
  .what-we-image-box .what-we-contact-box { margin-top: 48px !important; }

  /* Кнопка з кружком — узгоджено з рештою mobile-кнопок */
  .what-we-contact-btn .btn-default {
    padding: 14px 50px 14px 20px;
    font-size: 14px;
  }
  .what-we-contact-btn .btn-default::before {
    width: 36px;
    height: 36px;
    background-size: 18px auto;
  }
}


/* ── CTA Box — точкові покращення (поверх vendor) ─────────────────────── */

.cta-box .section-title { margin-bottom: 28px; }
.cta-box-list ul li { font-size: 15px; }

/* Image притиснуто до низу секції на десктопі */
@media (min-width: 992px) {
  .cta-box .row > .col-lg-6:last-child { align-self: flex-end; }
}

@media (max-width: 991px) {
  .cta-box-list ul { gap: 12px 24px; }
}

@media (max-width: 991px) {
  .cta-box { padding-bottom: 0 !important; }
  .cta-box-image { display: flex; flex-direction: column; justify-content: flex-end; }
  .cta-box-image img {
    margin-bottom: 0 !important;
    display: block;
    aspect-ratio: auto;
    height: auto;
    width: 100%;
    object-position: bottom;
  }
}

@media (max-width: 767px) {
  .cta-box .section-title { margin-bottom: 22px; }
  .cta-box-list ul li { font-size: 14px; line-height: 1.45; }
  .cta-box-btn { margin-top: 24px; }
}

@media (max-width: 575px) {
  .cta-box { padding-top: 60px !important; }
  .cta-box-content { margin-bottom: 24px; }

  /* Список — у колонку для читабельності */
  .cta-box-list ul { flex-direction: column; gap: 10px; }
  .cta-box-list ul li { padding-left: 24px; }
  .cta-box-list ul li::before { font-size: 14px; top: 2px; }

  .cta-box-image { margin: 0; }
  .cta-box-image img { aspect-ratio: auto; }

  /* Кнопка з кружком — як у FAQ-картки, але це primary CTA — лишаємо текст 14, кружок 36 */
  .cta-box-btn .btn-default {
    padding: 14px 50px 14px 20px;
    font-size: 14px;
  }
  .cta-box-btn .btn-default::before {
    width: 36px;
    height: 36px;
    background-size: 18px auto;
  }
}


/* ── FAQ — точкові покращення (поверх vendor) ────────────────────────── */

/* CTA-картка overlay: на дуже малих, де може злипатись текст з іконкою */
@media (max-width: 575px) {
  .our-faqs { padding: 60px 0 !important; }

  /* Між accordion items щільніше */
  .faq-accordion .accordion-item { margin-bottom: 12px; }

  /* CTA-картка — gap між текстом і телефонною іконкою менший */
  .faqs-contact-box { gap: 14px; padding: 18px 0 18px 18px; }
  .faqs-cta-box-content h3 { margin-bottom: 14px; }

  /* Кнопка в CTA-картці — стрілка лишається, але кружок зменшений + padding під нього */
  .faqs-cta-box-content .btn-default {
    padding: 12px 46px 12px 18px;
    font-size: 13px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .faqs-cta-box-content .btn-default::before {
    width: 32px;
    height: 32px;
    right: 4px;
    background-size: 16px auto;
  }
}

@media (max-width: 360px) {
  .faqs-contact-box .icon-box img { max-width: 48px; }
  .faqs-contact-box .icon-box { margin-bottom: -14px; }
  .faqs-cta-box-content .btn-default {
    font-size: 12px;
    padding: 10px 40px 10px 14px;
    white-space: normal;
  }
  .faqs-cta-box-content .btn-default::before {
    width: 28px;
    height: 28px;
    background-size: 14px auto;
  }
}

/* Активна (відкрита) кнопка — у вендора немає виразної маркіровки */
.faq-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  color: var(--accent-color, #C9A961) !important;
}

/* ── Simple Text (SEO block) ─────────────────────────────────────────── */
.simple-text {
  padding-top: 80px;
  padding-bottom: 80px;
}

.simple-text__title {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  color: var(--primary-color, #1a3c47);
}

.simple-text__content {
  width: 100%;
  max-height: 93px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.03em;
  color: #333;
  background: linear-gradient(180deg, #000000 0%, rgba(0,0,0,0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-fill-color: transparent;
  margin-bottom: 32px;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.simple-text__content a { color: var(--accent-color); }

.simple-text__content ul,
.simple-text__content ol { padding-left: 20px; }

.simple-text__content h1, .simple-text__content h2, .simple-text__content h3,
.simple-text__content h3, .simple-text__content h5, .simple-text__content h6,
.simple-text__content p,  .simple-text__content ul, .simple-text__content ol {
  margin-bottom: 20px;
}
.simple-text__content h1:last-child, .simple-text__content h2:last-child,
.simple-text__content h3:last-child, .simple-text__content h3:last-child,
.simple-text__content p:last-child,  .simple-text__content ul:last-child,
.simple-text__content ol:last-child { margin-bottom: 0; }

.simple-text__content h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color, #1a3c47);
  margin-top: 32px;
  letter-spacing: 0.02em;
}
.simple-text__content h3:first-child { margin-top: 0; }

.simple-text__content strong {
  font-weight: 600;
  color: var(--primary-color, #1a3c47);
}

.simple-text__content ol > li { margin-bottom: 14px; }
.simple-text__content ol > li:last-child { margin-bottom: 0; }
.simple-text__content ol > li > ul { margin-top: 6px; margin-bottom: 0; }
.simple-text__content ol > li > ul > li { margin-bottom: 4px; }

.simple-text__content a { color: var(--accent-color); text-decoration: underline; text-underline-offset: 3px; }
.simple-text__content a:hover { color: var(--primary-color, #1a3c47); }

.simple-text.open .simple-text__content {
  max-height: 2000px;
  background: transparent;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #333;
  text-fill-color: #333;
}

.simple-text.open .simple-text__bottom { display: none; }

.simple-text__bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.simple-text__btn {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ADADAD;
  padding-bottom: 3px;
  cursor: pointer;
  user-select: none;
}

.simple-text__btn::after { border-color: #ADADAD !important; }

.simple-text__btn:hover svg { transform: translateY(3px); }

.simple-text__btn svg {
  flex-shrink: 0;
  transition: transform 0.3s;
}

@media (max-width: 991px) {
  .simple-text { padding-top: 64px; padding-bottom: 64px; }
  .simple-text__title { font-size: 24px; margin-bottom: 20px; }
}

@media (max-width: 767px) {
  .simple-text { padding-top: 48px; padding-bottom: 48px; }
  .simple-text__title { font-size: 22px; margin-bottom: 16px; }
  .simple-text__content { font-size: 15px; max-height: 110px; }
  .simple-text__content h3 { font-size: 17px; margin-top: 24px; }
  .simple-text__content ul,
  .simple-text__content ol { padding-left: 18px; }
}

@media (max-width: 575px) {
  .simple-text { padding-top: 40px; padding-bottom: 40px; }
  .simple-text__title { font-size: 20px; }
  .simple-text__content { font-size: 14px; max-height: 100px; }
  .simple-text__content h3 { font-size: 16px; margin-top: 20px; }
  .simple-text__btn { font-size: 13px; }
}

/* ── About Us Images — border-radius fix ────────────────────────────── */
/* .image-anime has overflow:hidden but no border-radius — clips rectangularly
   inside the parent's rounded container, killing the rounded corners */
.about-img-1 figure,
.about-img-2 figure {
  border-radius: 20px;
}

/* About — адаптивні поліпшення */
@media (max-width: 991px) {
    .about-us { padding: 80px 0 !important; }
    .about-us-images { margin-bottom: 40px !important; }
    .about-us-content { padding: 0 !important; }
}

@media (max-width: 767px) {
    .about-us { padding: 64px 0 !important; }
    .about-us-images { max-width: 100% !important; margin: 0 0 32px !important; }
    .about-img-1 { margin-left: 80px !important; }
    .about-img-2 { max-width: 220px !important; margin-top: -160px !important; }
    .about-experience-item { margin-bottom: 18px !important; }
    .about-experience-content h3 { font-size: 17px !important; line-height: 1.35; }
}

@media (max-width: 575px) {
    .about-us { padding: 56px 0 !important; }
    .about-img-1 { margin-left: 60px !important; }
    .about-img-2 { max-width: 180px !important; margin-top: -120px !important; }
    .working-hours-header h3 { font-size: 14px; }
    .working-hours-body ul li { font-size: 13px; }

    .about-us-btn .btn-default {
        padding: 14px 50px 14px 20px;
        font-size: 14px;
    }
    .about-us-btn .btn-default::before {
        width: 36px;
        height: 36px;
        background-size: 18px auto;
    }
}

/* ── Communication Section (CTA before footer) ───────────────────────── */
.communication-section {
  padding: 80px 0;
}

.communication-wrap {
  position: relative;
  padding: 80px 80px 80px 505px;
  background: url("../images/real/communication-bg.webp") no-repeat center / cover;
  border-radius: 16px;
  box-shadow: 0 70px 70px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  min-height: 480px;
}
.communication-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  pointer-events: none;
  z-index: 0;
}

.communication-img-wrap {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 550px;
  pointer-events: none;
}

.communication-img {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
}

.communication-content {
  position: relative;
  z-index: 5;
  color: #fff;
}

.communication-content h2,
.communication-content .communication-heading h2 {
  color: #fff;
  margin-bottom: 14px;
}

/* Heading wrapper spacing */
.communication-heading { margin-bottom: 32px; }

/* Eyebrow на темному оверлеї — більше контрасту */
.communication-content .section-eyebrow {
  color: #D4AF37 !important;
  background: rgba(212, 175, 55, 0.14) !important;
  border-color: rgba(212, 175, 55, 0.45) !important;
}

/* Section desc — білим, із золотим хайлайтом для <strong> */
.communication-content .section-desc {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.communication-content .section-desc strong {
  color: #fff;
  font-weight: 600;
  background: linear-gradient(180deg, transparent 70%, rgba(201, 169, 97, 0.40) 70%);
  padding: 0 2px;
}

/* Subheading над формою */
.communication-subheading strong { color: #fff; font-weight: 600; }

/* Phone + social row */
.communication-contacts {
  margin-bottom: 40px;
}

.communication-phone {
  display: inline-block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}

.communication-phone:hover { color: var(--accent-color); }

.communication-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.communication-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}

.communication-social__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

/* Form */
.communication-subheading {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
}

.communication-input {
  width: 100%;
  height: 54px;
  border: 1.5px solid #e0dbd3;
  border-radius: 12px;
  padding: 0 18px;
  font-size: 15px;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color .2s, background .2s;
  outline: none;
}

.communication-input:focus {
  border-color: var(--accent-color);
  background: #fff;
}

.communication-input::placeholder { color: #9aa0a3; }

.communication-submit {
  height: 54px;
  padding: 16px 55px 16px 20px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  background: var(--primary-color);
  color: #fff;
}

.communication-submit::before {
  background-color: var(--accent-color);
}

.communication-submit:hover::before {
  background-color: var(--accent-color);
  filter: brightness(0.9);
}

.communication-submit::after {
  background: #1a3d4f;
}

/* Responsive — h2/h1 беруться з vendor scale, не дублюємо */
@media (max-width: 1200px) {
  .communication-wrap { padding: 60px 60px 60px 420px; }
  .communication-img-wrap { width: 400px; }
}

@media (max-width: 991px) {
  .communication-section { padding: 60px 0; }
  .communication-wrap {
    padding: 48px 40px;
    min-height: unset;
  }
  .communication-img-wrap { display: none; }
  .communication-heading { margin-bottom: 28px; }
  .communication-phone { font-size: 26px; }
  .communication-contacts { margin-bottom: 32px; }
}

@media (max-width: 767px) {
  .communication-subheading { font-size: 15px; margin-bottom: 18px; }
  .communication-social__link { width: 40px; height: 40px; }
  .communication-social { gap: 12px; }
}

@media (max-width: 575px) {
  .communication-section { padding: 48px 0; }
  .communication-wrap { padding: 32px 20px; border-radius: 12px; }
  .communication-heading { margin-bottom: 24px; }

  /* Phone + social — стек по вертикалі */
  .communication-contacts .row {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 18px;
  }
  .communication-contacts .col,
  .communication-contacts .col-auto {
    width: 100%;
    flex: unset;
  }
  .communication-phone { font-size: 24px; }
  .communication-contacts { margin-bottom: 28px; }

  .communication-subheading { font-size: 14px; margin-bottom: 16px; }
  .communication-input { height: 48px; font-size: 14px; padding: 0 16px; }
  .communication-submit { height: 48px; padding: 0 28px; font-size: 14px; width: 100%; }
}


/* ══════════════════════════════════════════════════════
   QUIZ v2 — підбір програми реабілітації
   ══════════════════════════════════════════════════════ */

/* додаткові змінні для quiz */
:root {
  --qv2-bg-alt     : #F0EBE4;
  --qv2-accent-soft: rgba(206, 158, 110, 0.15);
  --qv2-accent-dark: #9B6E3E;
  --qv2-heading    : #1a3d4f;
  --qv2-radius-lg  : 16px;
  --qv2-radius-md  : 12px;
  --qv2-radius-pill: 100px;
  --qv2-shadow-sm  : 0 2px 12px rgba(38, 80, 94, 0.08);
}

.quiz-v2 { background: var(--bg-color); }

.qv2__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 48px;
}
.qv2__header-left { flex: 1; }
.qv2__header-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-color);
  margin-bottom: 16px;
}
.qv2__header-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--qv2-heading);
  line-height: 1.2;
  margin: 0;
}
.qv2__header-desc {
  flex: 0 0 320px;
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
  text-align: right;
  margin: 0;
}

@media (max-width: 768px) {
  .qv2__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .qv2__header-desc { flex: none; text-align: left; }
}

.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 bar */
.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: 500;
  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(206, 158, 110, 0.1);
}
.qv2-card.is-selected {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(206, 158, 110, 0.15);
  background: var(--white-color);
}
.qv2-card__icon {
  width: 100%;
  aspect-ratio: 2 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--qv2-bg-alt);
  color: var(--primary-color);
}
.qv2-card__icon svg { width: 50px; height: 50px; }
.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__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 (radio) ────────────────────────────────── */
.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(206,158,110,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;
  /* inherits .btn-default styles */
}

/* ── 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(--secondary-color);
  border: 1px solid rgba(46, 125, 79, 0.25);
  border-radius: 50%;
  color: #2e7d4f;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qv2__success-title { font-size: 24px; font-weight: 500; 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; }

/* Pseudo-result */
.qv2-result {
  background: linear-gradient(135deg, var(--secondary-color), rgba(206,158,110,0.12));
  border: 1px solid rgba(38, 80, 94, 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(38,80,94,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(38,80,94,0.08);
  padding-top: 10px;
}

/* Warning */
.qv2-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(206,158,110,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 */
.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: 500;
  color: var(--qv2-heading);
  margin-bottom: 18px;
  line-height: 1.3;
}

/* Messengers */
.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(206,158,110,0.05);
  color: var(--qv2-heading);
  box-shadow: 0 0 0 3px rgba(206,158,110,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; }
/* Приглушений placeholder — щоб приклад не плутали з уведеним текстом */
.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: #2e7d4f; 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: 280px;
  object-fit: cover;
  display: block;
}
.qv2-manager__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(27,58,69,0.88), 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.7); }

.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: 500;
  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(27,58,69,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: 1024px) {
  .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) {
  .quiz-v2 { padding: 60px 0; }
  .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; }

  /* Cards — icon менший, label щільніший */
  .qv2-card__label { padding: 10px 12px; font-size: 12px; gap: 6px; }
  .qv2-card__icon svg { width: 40px; height: 40px; }

  /* Options — стек у 1 колонку */
  .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; }

  /* Messengers — 2x2 grid, але стиснуто */
  .qv2__messengers { gap: 8px; }
  .qv2-messenger__icon { width: 32px !important; height: 32px !important; }

  /* Manager + bonus stack */
  .qv2-manager__img { height: 180px; }
  .qv2-manager__name { font-size: 15px; }

  /* Nav buttons щільніші */
  .qv2__back { padding: 10px 16px; font-size: 13px; }
  .qv2__next { padding: 12px 44px 12px 18px !important; font-size: 13px; }
  .qv2__next::before { width: 32px !important; height: 32px !important; background-size: 14px auto !important; }

  /* Result block */
  .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; }
}

/* ───────────────────────────────────────────────────────────────
   HEADER TOP-BAR — насичена смуга з контактами над nav
   ─────────────────────────────────────────────────────────────── */
.header-topbar {
    background: linear-gradient(90deg, #172637 0%, #1f3047 100%);
    color: #fff;
    font-size: 13px;
    line-height: 1.4;
    border-bottom: 1px solid rgba(201, 169, 97, 0.18);
    padding: 0 40px;
    position: relative;
    z-index: 101;
}

.header-topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 85% 50%, rgba(201, 169, 97, 0.08), transparent 55%);
    pointer-events: none;
}

.header-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    min-height: 48px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 8px 0;
    position: relative;
}

@media (max-width: 1199px) {
    .header-topbar { padding: 0 24px; }
}

.header-topbar__info,
.header-topbar__contacts {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.topbar-divider {
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

/* Топ-бар: пункт інформації (адреса, графік) */
.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar-item svg {
    color: #C9A961;
    flex-shrink: 0;
}

.topbar-item--map:hover {
    color: #fff;
}

.topbar-item--map:hover svg {
    color: #D4AF37;
}

.topbar-item strong {
    color: #fff;
    font-weight: 600;
}

/* Месенджери */
.topbar-messengers {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-messengers__label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    letter-spacing: 0.04em;
    margin-right: 4px;
}

.topbar-messenger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.topbar-messenger--viber    { background: #7360F2; }
.topbar-messenger--telegram { background: #2AABEE; }
.topbar-messenger--whatsapp { background: #25D366; }

.topbar-messenger:hover {
    opacity: 0.88;
    transform: translateY(-1px);
    color: #fff;
}
.topbar-messenger i,
.topbar-messenger .fa-brands { font-size: 18px; line-height: 1; color: #fff; }

.nav-mobile-contacts__msg i,
.nav-mobile-contacts__msg .fa-brands { font-size: 16px; line-height: 1; color: #fff; }
@media (max-width: 480px) {
    .nav-mobile-contacts__msg i,
    .nav-mobile-contacts__msg .fa-brands { font-size: 14px; }
}

/* Телефон */
.topbar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: color 0.2s ease;
}

.topbar-phone svg {
    color: #C9A961;
    transform: translateX(2px);
}

.topbar-phone:hover {
    color: #D4AF37;
}

/* "Замовити дзвінок" — пунктирне підкреслення */
.topbar-callback {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.45);
    padding-bottom: 1px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.topbar-callback:hover {
    color: #C9A961;
    border-color: #C9A961;
}

/* Sticky-навбар на скролі — топ-бар плавно ховається */
header.main-header .header-sticky.active ~ * .header-topbar,
header.main-header:has(.header-sticky.active) .header-topbar {
    display: none;
}

/* Адаптив */
@media (max-width: 1199px) {
    .header-topbar { font-size: 12px; }
    .header-topbar__inner { gap: 20px; }
    .header-topbar__info,
    .header-topbar__contacts { gap: 14px; }
    .topbar-messengers__label { display: none; }
}

@media (max-width: 991px) {
    .header-topbar { display: none; }
}


/* ============================================================
   ABOUT HERO — кастомний rich-hero для сторінки «Про клініку»
   ============================================================ */

.about-hero {
    position: relative;
    padding: 60px 0 100px;
    background: var(--primary-color, #0B1929);
    color: #fff;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.10), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(201, 169, 97, 0.08), transparent 45%);
    pointer-events: none;
}

.about-hero > .container { position: relative; z-index: 1; }

/* Breadcrumbs */
.about-hero__crumbs { margin-bottom: 28px; }
.about-hero__crumbs .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.65);
}
.about-hero__crumbs .breadcrumb-item a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color .2s ease;
}
.about-hero__crumbs .breadcrumb-item a:hover { color: #C9A961; }
.about-hero__crumbs .breadcrumb-item + .breadcrumb-item::before {
    content: '·';
    margin-right: 8px;
    color: rgba(255,255,255,0.4);
}
.about-hero__crumbs .breadcrumb-item.active { color: #fff; }

/* Grid */
.about-hero__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

/* LEFT */
.about-hero__main .section-eyebrow {
    display: inline-block;
    margin: 0 0 22px;
    padding: 6px 16px 6px 28px;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.40);
    border-radius: 100px;
    line-height: 1;
}
.about-hero__main .section-eyebrow::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
}

.about-hero__title {
    font-family: var(--font-serif, Georgia, serif);
    font-size: 54px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    margin: 0 0 24px;
    max-width: 620px;
}
.about-hero__title .accent-gold {
    color: #C9A961;
    font-style: italic;
    font-weight: 500;
}

.about-hero__desc {
    font-size: 17px;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    margin: 0 0 32px;
    max-width: 560px;
}
.about-hero__desc strong {
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, transparent 70%, rgba(201, 169, 97, 0.35) 70%);
    padding: 0 2px;
}

/* License card */
.about-hero__license {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 14px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(212, 175, 55, 0.35);
    border-radius: 14px;
    margin-bottom: 36px;
    backdrop-filter: blur(6px);
}
.about-hero__license-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.18);
    color: #D4AF37;
    border-radius: 50%;
}
.about-hero__license-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.about-hero__license-text strong {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}
.about-hero__license-text span {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}

/* Stats */
.about-hero__stats {
    display: flex;
    gap: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.about-hero__stat {
    display: flex;
    flex-direction: column;
}
.about-hero__stat-num {
    font-family: var(--font-serif, Georgia, serif);
    font-size: 44px;
    font-weight: 600;
    color: #fff;
    line-height: 1;
}
.about-hero__stat-num small {
    font-size: 28px;
    color: #C9A961;
}
.about-hero__stat-label {
    margin-top: 6px;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.62);
}

/* RIGHT — media */
.about-hero__media {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
}

.about-hero__image {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
}
.about-hero__image img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    display: block;
}

/* Badge (№1 в Івано-Франківську) */
.about-hero__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 86px;
    height: 86px;
    background: #fff;
    color: var(--primary-color, #172637);
    border-radius: 50%;
    box-shadow: 0 18px 40px rgba(0,0,0,0.30);
}
.about-hero__badge-num {
    font-family: var(--font-serif, Georgia, serif);
    font-size: 26px;
    font-weight: 600;
    line-height: 1;
    color: #C9A961;
}
.about-hero__badge-text {
    margin-top: 4px;
    font-size: 10px;
    line-height: 1.15;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Caption */
.about-hero__caption {
    margin-top: 18px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 12px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 36px;
}
.about-hero__caption-dot {
    position: absolute;
    top: 22px;
    left: 16px;
    width: 8px;
    height: 8px;
    background: #C9A961;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.18);
}
.about-hero__caption small {
    font-size: 12px;
    font-weight: 400;
    color: rgba(255,255,255,0.6);
}

/* ---------- ADAPTIVE ---------- */
@media (max-width: 1199px) {
    .about-hero__title { font-size: 46px; }
    .about-hero__grid { gap: 48px; }
    .about-hero__stats { gap: 32px; }
}

@media (max-width: 991px) {
    .about-hero { padding: 48px 0 72px; }
    .about-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-hero__title { font-size: 40px; max-width: 100%; }
    .about-hero__desc { font-size: 16px; max-width: 100%; }
    .about-hero__image img { min-height: 380px; }
    .about-hero__badge { width: 74px; height: 74px; top: 16px; left: 16px; }
    .about-hero__badge-num { font-size: 22px; }
}

@media (max-width: 767px) {
    .about-hero { padding: 36px 0 60px; }
    .about-hero__crumbs { margin-bottom: 20px; }
    .about-hero__title { font-size: 32px; margin-bottom: 18px; }
    .about-hero__desc { font-size: 15px; margin-bottom: 24px; }
    .about-hero__license {
        padding: 12px 16px;
        gap: 12px;
        margin-bottom: 28px;
    }
    .about-hero__license-icon { width: 36px; height: 36px; }
    .about-hero__license-text strong { font-size: 14px; }
    .about-hero__license-text span { font-size: 12px; }
    .about-hero__stats {
        gap: 20px;
        padding-top: 22px;
        flex-wrap: wrap;
    }
    .about-hero__stat-num { font-size: 34px; }
    .about-hero__stat-num small { font-size: 22px; }
    .about-hero__stat-label { font-size: 12px; }
    .about-hero__image img { min-height: 300px; }
}

@media (max-width: 480px) {
    .about-hero { padding: 28px 0 48px; }
    .about-hero__title { font-size: 28px; }
    .about-hero__stats { gap: 16px; }
    .about-hero__stat-num { font-size: 28px; }
    .about-hero__stat-num small { font-size: 18px; }
    .about-hero__badge {
        width: 64px;
        height: 64px;
        top: 12px;
        left: 12px;
    }
    .about-hero__badge-num { font-size: 18px; }
    .about-hero__badge-text { font-size: 9px; }
    .about-hero__image img { min-height: 240px; }
    .about-hero__caption {
        font-size: 14px;
        padding: 12px 14px 12px 32px;
    }
    .about-hero__caption-dot { top: 20px; left: 14px; }
}


/* ============================================================
   ABOUT VALUES — "Відновлення — це не лише тіло, а й якість життя"
   ============================================================ */

.about-values {
    padding: 100px 0;
    background: var(--bg-color, #FAF7F2);
}

.about-values__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
    align-items: center;
}

.about-values__media {
    position: relative;
}
.about-values__image {
    margin: 0;
    border-radius: 18px;
    overflow: hidden;
}
.about-values__image img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
}

.about-values__content .section-title { margin-bottom: 32px; }
.about-values__content h2 { margin: 0; }

/* Items */
.about-values__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-bottom: 32px;
}

.about-values__item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.about-values__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.12);
    color: #C9A961;
    border-radius: 12px;
}

.about-values__body h3 {
    margin: 0 0 6px;
    font-size: 17px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    line-height: 1.3;
}
.about-values__body p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #5a5650);
}

/* Note callout */
.about-values__note {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 20px 24px;
    background: #fff;
    border: 1px solid rgba(201, 169, 97, 0.30);
    border-left: 4px solid #C9A961;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(11, 25, 41, 0.04);
}
.about-values__note-mark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.14);
    color: #C9A961;
    border-radius: 50%;
    font-size: 14px;
}
.about-values__note p {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--heading-color, #1A2540);
}
.about-values__note strong {
    font-weight: 600;
    background: linear-gradient(180deg, transparent 70%, rgba(201, 169, 97, 0.32) 70%);
    padding: 0 2px;
}

/* ADAPTIVE */
@media (max-width: 1199px) {
    .about-values__grid { gap: 48px; }
}

@media (max-width: 991px) {
    .about-values { padding: 72px 0; }
    .about-values__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .about-values__image img { min-height: 360px; }
    .about-values__content .section-title h2 { font-size: 36px; }
}

@media (max-width: 767px) {
    .about-values { padding: 56px 0; }
    .about-values__content .section-title { margin-bottom: 24px; }
    .about-values__content .section-title h2 { font-size: 30px; line-height: 1.2; }
    .about-values__list {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 24px;
    }
    .about-values__image img { min-height: 280px; }
    .about-values__note { padding: 16px 18px; }
    .about-values__note p { font-size: 13.5px; }
}

@media (max-width: 575px) {
    .about-values { padding: 48px 0; }
    .about-values__content .section-title h2 { font-size: 26px; }
    .about-values__image img { min-height: 240px; }
    .about-values__icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }
    .about-values__item { gap: 12px; }
    .about-values__body h3 { font-size: 15px; }
    .about-values__body p { font-size: 13.5px; line-height: 1.55; }
    .about-values__note {
        padding: 14px 16px;
        gap: 12px;
        border-left-width: 3px;
    }
    .about-values__note-mark { width: 28px; height: 28px; font-size: 13px; }
}

@media (max-width: 360px) {
    .about-values { padding: 40px 0; }
    .about-values__content .section-title h2 { font-size: 24px; }
    .about-values__image img { min-height: 200px; }
    .about-values__body h3 { font-size: 14.5px; }
    .about-values__body p { font-size: 13px; }
}


/* ============================================================
   ABOUT STANDARDS — переписуємо вендорний .our-results
   (вендор робив timeline-картки з центрованим текстом)
   ============================================================ */

#about-standards.our-results {
    padding: 100px 0 !important;
    background: var(--bg-color, #FAF7F2);
}

#about-standards .row.align-items-center {
    align-items: flex-start !important;
}

/* Title block */
#about-standards .our-result-content .section-title {
    margin-bottom: 36px;
}
#about-standards .our-result-content .section-title h3 {
    /* eyebrow — pill style */
    display: inline-block;
    margin: 0 0 18px !important;
    padding: 6px 16px 6px 28px;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C9A961;
    background: rgba(201, 169, 97, 0.10);
    border: 1px solid rgba(201, 169, 97, 0.30);
    border-radius: 100px;
    line-height: 1;
}
#about-standards .our-result-content .section-title h3::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #C9A961;
    border-radius: 50%;
}
#about-standards .our-result-content .section-title h2 {
    margin: 0 0 16px;
}
#about-standards .our-result-content .section-title p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-color, #5a5650);
    max-width: 520px;
}

/* List — чистий list, без timeline і центру */
#about-standards .result-item-list {
    display: flex !important;
    flex-direction: column;
    gap: 18px;
    margin: 0 !important;
    padding: 0 !important;
    position: relative;
}
/* Прибрати всі вендорні псевдо-елементи (timeline-лінії) */
#about-standards .result-item-list::before,
#about-standards .result-item-list::after,
#about-standards .result-item::before,
#about-standards .result-item::after { display: none !important; }

#about-standards .result-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 18px;
    margin: 0 !important;
    padding: 20px 22px !important;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.06);
    border-radius: 14px;
    box-shadow: 0 6px 16px rgba(11, 25, 41, 0.04);
    text-align: left !important;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
#about-standards .result-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(11, 25, 41, 0.08);
    border-color: rgba(201, 169, 97, 0.40);
}

#about-standards .result-item .icon-box {
    flex-shrink: 0;
    width: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.12);
    color: #C9A961;
    border-radius: 12px;
}
#about-standards .result-item .icon-box img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

#about-standards .result-item-content {
    flex: 1;
    text-align: left !important;
    padding: 0 !important;
}
#about-standards .result-item-content h3 {
    margin: 0 0 6px !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    color: var(--heading-color, #1A2540) !important;
    line-height: 1.3 !important;
    text-align: left !important;
}
#about-standards .result-item-content p {
    margin: 0 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    color: var(--text-color, #5a5650) !important;
    text-align: left !important;
}

/* RIGHT — image box: фікс розміру і layout */
#about-standards .result-image-box {
    position: relative;
    display: grid;
    grid-template-rows: auto auto;
    gap: 18px;
    width: 100%;
}

#about-standards .result-image {
    margin: 0 !important;
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 4 / 3;
}
#about-standards .result-image figure {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
}
#about-standards .result-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

#about-standards .result-image-list-box {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    position: static !important;
    width: 100% !important;
}
#about-standards .result-list-image {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: 0 6px 16px rgba(11, 25, 41, 0.06);
}
#about-standards .result-list-image figure {
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
}
#about-standards .result-list-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

/* ADAPTIVE */
@media (max-width: 1199px) {
    #about-standards .our-result-content .section-title h2 { font-size: 40px; }
}

@media (max-width: 991px) {
    #about-standards.our-results { padding: 72px 0 !important; }
    #about-standards .row > .col-lg-6 + .col-lg-6 { margin-top: 32px; }
    #about-standards .our-result-content .section-title h2 { font-size: 36px; }
}

@media (max-width: 767px) {
    #about-standards.our-results { padding: 56px 0 !important; }
    #about-standards .our-result-content .section-title { margin-bottom: 24px; }
    #about-standards .our-result-content .section-title h2 { font-size: 30px; line-height: 1.2; }
    #about-standards .our-result-content .section-title p { font-size: 15px; }
    #about-standards .result-item { padding: 16px 18px !important; gap: 14px; }
    #about-standards .result-item .icon-box { width: 42px !important; height: 42px !important; }
    #about-standards .result-item .icon-box img { width: 22px; height: 22px; }
    #about-standards .result-item-content h3 { font-size: 16px !important; }
}

@media (max-width: 575px) {
    #about-standards.our-results { padding: 48px 0 !important; }
    #about-standards .our-result-content .section-title h2 { font-size: 26px; }
    #about-standards .result-item-list { gap: 12px; }
    #about-standards .result-item { padding: 14px 16px !important; gap: 12px; border-radius: 12px; }
    #about-standards .result-item .icon-box { width: 38px !important; height: 38px !important; border-radius: 10px; }
    #about-standards .result-item .icon-box img { width: 20px; height: 20px; }
    #about-standards .result-item-content h3 { font-size: 15px !important; }
    #about-standards .result-item-content p { font-size: 13.5px !important; line-height: 1.55 !important; }
    #about-standards .result-image-list-box { gap: 12px !important; }
    #about-standards .result-image { border-radius: 14px; }
    #about-standards .result-list-image { border-radius: 12px; }
}

@media (max-width: 360px) {
    #about-standards.our-results { padding: 40px 0 !important; }
    #about-standards .our-result-content .section-title h2 { font-size: 24px; }
    #about-standards .result-item { padding: 12px 14px !important; }
    #about-standards .result-item .icon-box { width: 34px !important; height: 34px !important; }
}


/* ============================================================
   ABOUT HERO (page-header) — адаптив під загальну шкалу
   ============================================================ */

@media (max-width: 991px) {
    .page-header { padding: 80px 0 !important; }
    .page-header-box h1 { font-size: 44px !important; line-height: 1.15 !important; }
}

@media (max-width: 767px) {
    .page-header { padding: 64px 0 !important; }
    .page-header-box h1 { font-size: 34px !important; margin-bottom: 14px !important; }
    .page-header-box .breadcrumb { font-size: 13px; }
}

@media (max-width: 575px) {
    .page-header { padding: 52px 0 !important; }
    .page-header-box h1 { font-size: 28px !important; }
    .page-header-box .breadcrumb { font-size: 12px; gap: 6px; }
}

@media (max-width: 360px) {
    .page-header { padding: 44px 0 !important; }
    .page-header-box h1 { font-size: 24px !important; }
}


/* ============================================================
   SERVICES — DIRECTIONS (таб-секція напрямків)
   ============================================================ */

.services-directions {
    padding: 100px 0;
    background: var(--bg-color, #FAF7F2);
}

.services-directions__head {
    margin-bottom: 36px;
    max-width: 760px;
}
.services-directions__head .section-title { margin: 0; }
.services-directions__head h2 { margin: 0; }

/* Tabs nav */
.services-directions__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding: 8px;
    background: #fff;
    border-radius: 16px;
    border: 1px solid rgba(11, 25, 41, 0.06);
    box-shadow: 0 6px 16px rgba(11, 25, 41, 0.04);
}
.services-directions__tab {
    flex: 1 1 auto;
    padding: 14px 20px;
    background: transparent;
    border: 0;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
    text-align: center;
    white-space: nowrap;
}
.services-directions__tab:hover {
    background: rgba(201, 169, 97, 0.08);
    color: #C9A961;
}
.services-directions__tab.is-active {
    background: var(--primary-color, #0B1929);
    color: #fff;
}

/* Panels */
.services-directions__panels { position: relative; }
.services-directions__panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 28px rgba(11, 25, 41, 0.06);
}
.services-directions__panel.is-active { display: grid; }

.services-directions__media {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}
.services-directions__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-directions__content {
    padding: 36px 40px;
    display: flex;
    flex-direction: column;
}
.services-directions__h3 {
    margin: 0 0 20px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 28px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    line-height: 1.25;
}

.services-directions__list {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.services-directions__list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-color, #5a5650);
}
.services-directions__list li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #C9A961;
}

.services-directions__btn { align-self: flex-start; }

/* Stats — оновлюються разом з табом */
.services-directions__stats {
    margin-top: 24px;
    position: relative;
}
.services-directions__stats-group {
    display: none;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.services-directions__stats-group.is-active { display: grid; }

.services-directions__stat {
    padding: 22px 24px;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.06);
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 6px 16px rgba(11, 25, 41, 0.04);
}
.services-directions__stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #C9A961;
}
.services-directions__stat-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    line-height: 1.35;
}

/* ADAPTIVE */
@media (max-width: 1199px) {
    .services-directions__panel { grid-template-columns: 0.95fr 1.05fr; }
    .services-directions__content { padding: 28px 32px; }
}

@media (max-width: 991px) {
    .services-directions { padding: 72px 0; }
    .services-directions__panel {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .services-directions__media { min-height: 280px; }
    .services-directions__content { padding: 28px 28px 32px; }
    .services-directions__h3 { font-size: 24px; }
    .services-directions__stats-group { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
    .services-directions { padding: 56px 0; }
    .services-directions__head { margin-bottom: 24px; }
    .services-directions__tabs { gap: 6px; padding: 6px; margin-bottom: 24px; }
    .services-directions__tab { padding: 12px 14px; font-size: 13.5px; }
    .services-directions__media { min-height: 220px; }
    .services-directions__content { padding: 24px 22px 28px; }
    .services-directions__h3 { font-size: 22px; margin-bottom: 16px; }
    .services-directions__list li { font-size: 14px; }
    .services-directions__stats-group { grid-template-columns: 1fr; }
    .services-directions__stat { padding: 18px 20px; }
}

@media (max-width: 575px) {
    .services-directions { padding: 48px 0; }
    .services-directions__tabs {
        flex-direction: column;
        background: transparent;
        border: 0;
        box-shadow: none;
        padding: 0;
        gap: 8px;
    }
    .services-directions__tab {
        background: #fff;
        border: 1px solid rgba(11, 25, 41, 0.06);
    }
    .services-directions__h3 { font-size: 20px; }
}


/* ============================================================
   SERVICES — INCLUDED (мозаїка процедур + dark photo callouts)
   ============================================================ */

.services-included {
    padding: 100px 0;
}

.services-included__head {
    margin-bottom: 36px;
    max-width: 760px;
}
.services-included__head .section-title { margin: 0; }
.services-included__head h2 { margin: 0; }

.services-included__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 1fr;
    gap: 16px;
}

.services-included__card {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
    transition: transform .25s ease, box-shadow .25s ease;
}
.services-included__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(11, 25, 41, 0.08);
}

/* Icon cards */
.services-included__card--icon {
    padding: 24px 22px;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.services-included__icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.12);
    color: #C9A961;
    border-radius: 12px;
}
.services-included__card--icon h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    line-height: 1.3;
}
.services-included__card--icon p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-color, #5a5650);
}

/* Photo callouts */
.services-included__card--photo {
    color: #fff;
    background: var(--primary-color, #0B1929);
}
.services-included__card--photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.services-included__photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,25,41,0.15) 0%, rgba(11,25,41,0.85) 100%);
}
.services-included__photo-body {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px 22px 20px;
    color: #fff;
}
.services-included__photo-body h3 {
    margin: 0 0 4px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
}
.services-included__photo-body p {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.78);
}

/* ADAPTIVE */
@media (max-width: 1199px) {
    .services-included__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 991px) {
    .services-included { padding: 72px 0; }
    .services-included__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .services-included { padding: 56px 0; }
    .services-included__head { margin-bottom: 24px; }
    .services-included__card { min-height: 180px; }
    .services-included__photo-body h3 { font-size: 24px; }
}

@media (max-width: 575px) {
    .services-included { padding: 48px 0; }
    .services-included__grid { grid-template-columns: 1fr; gap: 12px; }
    .services-included__card--photo { min-height: 160px; }
}


/* ============================================================
   SERVICES — PROMO (банер «Акція» з формою)
   ============================================================ */

.services-promo {
    padding: 20px 0 80px;
    background: var(--bg-color, #FAF7F2);
}

.services-promo__box {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0;
    background: var(--primary-color, #0B1929);
    color: #fff;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}
.services-promo__box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 0% 100%, rgba(201, 169, 97, 0.12), transparent 50%);
    pointer-events: none;
}

.services-promo__content {
    padding: 48px 56px;
    position: relative;
    z-index: 1;
}

.services-promo__tag {
    display: inline-block;
    margin-bottom: 18px;
    padding: 6px 14px;
    background: #F4D58D;
    color: #4A3A0B;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    border-radius: 6px;
}

.services-promo__title {
    margin: 0 0 16px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 36px;
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
}
.services-promo__title .accent-gold {
    color: #C9A961;
    font-style: italic;
    font-weight: 500;
}

.services-promo__desc {
    margin: 0 0 22px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 520px;
}
.services-promo__desc strong {
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, transparent 70%, rgba(201, 169, 97, 0.35) 70%);
    padding: 0 2px;
}

.services-promo__chips {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.services-promo__chips li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 100px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.92);
}
.services-promo__chips li svg { color: #C9A961; }

.services-promo__form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.10);
    padding: 18px;
    border-radius: 14px;
    margin-bottom: 12px;
}
.services-promo__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 12px;
}
.services-promo__input {
    padding: 13px 16px;
    background: #fff;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    color: var(--heading-color, #1A2540);
    outline: none;
    transition: border-color .2s ease;
}
.services-promo__input:focus { border-color: #C9A961; }
.services-promo__submit { width: 100%; justify-content: center; }

.services-promo__note {
    margin: 0;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.services-promo__media {
    position: relative;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.services-promo__media img {
    width: 487px !important;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin: auto 0 0;
}

/* ADAPTIVE */
@media (max-width: 991px) {
    .services-promo { padding: 16px 0 60px; }
    .services-promo__box { grid-template-columns: 1fr; }
    .services-promo__media { min-height: 280px; order: -1; }
    .services-promo__content { padding: 36px 32px; }
    .services-promo__title { font-size: 30px; }
}

@media (max-width: 767px) {
    .services-promo { padding: 12px 0 48px; }
    .services-promo__content { padding: 28px 22px; }
    .services-promo__title { font-size: 24px; }
    .services-promo__form-row { grid-template-columns: 1fr; }
    .services-promo__media { min-height: 220px; }
}

@media (max-width: 575px) {
    .services-promo { padding: 8px 0 40px; }
    .services-promo__title { font-size: 22px; }
    .services-promo__desc { font-size: 14px; }
    .services-promo__form { padding: 14px; }
}

@media (max-width: 360px) {
    .services-promo__title { font-size: 20px; }
    .services-promo__media { min-height: 180px; }
}


/* ============================================================
   CONTACT HERO — custom dark-hero з телефонами і месенджерами
   ============================================================ */

.contact-hero {
    position: relative;
    padding: 56px 0 80px;
    background: var(--primary-color, #0B1929);
    color: #fff;
    overflow: hidden;
}
.contact-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 25%, rgba(201, 169, 97, 0.10), transparent 40%),
        radial-gradient(circle at 88% 90%, rgba(201, 169, 97, 0.08), transparent 50%);
    pointer-events: none;
}
.contact-hero > .container { position: relative; z-index: 1; }

.contact-hero__crumbs { margin-bottom: 28px; }
.contact-hero__crumbs .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: rgba(255,255,255,0.65);
}
.contact-hero__crumbs .breadcrumb-item a { color: rgba(255,255,255,0.65); text-decoration: none; transition: color .2s ease; }
.contact-hero__crumbs .breadcrumb-item a:hover { color: #C9A961; }
.contact-hero__crumbs .breadcrumb-item + .breadcrumb-item::before { content: '·'; margin-right: 8px; color: rgba(255,255,255,0.4); }
.contact-hero__crumbs .breadcrumb-item.active { color: #fff; }

.contact-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.contact-hero__main .section-eyebrow {
    display: inline-block;
    margin: 0 0 18px;
    padding: 6px 16px 6px 28px;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #D4AF37;
    background: rgba(212, 175, 55, 0.12);
    border: 1px solid rgba(212, 175, 55, 0.40);
    border-radius: 100px;
    line-height: 1;
}
.contact-hero__main .section-eyebrow::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #D4AF37;
    border-radius: 50%;
}

.contact-hero__title {
    font-family: var(--font-serif, Georgia, serif);
    font-size: 52px;
    line-height: 1.1;
    font-weight: 600;
    color: #fff;
    margin: 0 0 20px;
}
.contact-hero__title .accent-gold {
    color: #C9A961;
    font-style: italic;
    font-weight: 500;
}

.contact-hero__desc {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: rgba(255,255,255,0.82);
    max-width: 480px;
}
.contact-hero__desc strong {
    font-weight: 600;
    color: #fff;
    background: linear-gradient(180deg, transparent 70%, rgba(201, 169, 97, 0.35) 70%);
    padding: 0 2px;
}

/* RIGHT — phone cards */
.contact-hero__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-hero__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 14px;
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(6px);
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.contact-hero__card:hover {
    background: rgba(255,255,255,0.10);
    border-color: rgba(212, 175, 55, 0.40);
    transform: translateY(-2px);
    color: #fff;
}

.contact-hero__card-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.18);
    color: #D4AF37;
    border-radius: 50%;
}

.contact-hero__card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    line-height: 1.3;
}
.contact-hero__card-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4AF37;
    font-weight: 600;
}
.contact-hero__card-value {
    font-size: 17px;
    font-weight: 600;
    color: #fff;
}
.contact-hero__card-meta {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.contact-hero__card-arrow {
    flex-shrink: 0;
    color: rgba(255,255,255,0.5);
    transition: transform .2s ease, color .2s ease;
}
.contact-hero__card:hover .contact-hero__card-arrow {
    color: #D4AF37;
    transform: translateX(3px);
}

/* Messengers */
.contact-hero__messengers {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}
.contact-hero__msg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}
.contact-hero__msg:hover { transform: translateY(-2px); color: #fff; opacity: 0.92; }
.contact-hero__msg--viber { background: #7360F2; }
.contact-hero__msg--tg    { background: #2AABEE; }
.contact-hero__msg--wa    { background: #25D366; }

/* ADAPTIVE — contact hero */
@media (max-width: 1199px) {
    .contact-hero__title { font-size: 44px; }
    .contact-hero__grid { gap: 36px; }
}
@media (max-width: 991px) {
    .contact-hero { padding: 44px 0 64px; }
    .contact-hero__grid { grid-template-columns: 1fr; gap: 32px; }
    .contact-hero__title { font-size: 38px; }
}
@media (max-width: 767px) {
    .contact-hero { padding: 36px 0 56px; }
    .contact-hero__title { font-size: 30px; }
    .contact-hero__desc { font-size: 15px; }
    .contact-hero__card { padding: 14px 16px; gap: 12px; }
    .contact-hero__card-icon { width: 38px; height: 38px; }
    .contact-hero__card-value { font-size: 15px; }
}
@media (max-width: 575px) {
    .contact-hero { padding: 28px 0 48px; }
    .contact-hero__title { font-size: 26px; }
    .contact-hero__messengers { gap: 8px; }
    .contact-hero__msg { padding: 10px 14px; font-size: 13px; }
}
@media (max-width: 360px) {
    .contact-hero__title { font-size: 22px; }
    .contact-hero__msg span { display: none; }
    .contact-hero__msg { padding: 12px; }
}


/* ============================================================
   CONTACT MAIN — info cards (left) + form (right)
   ============================================================ */

.contact-main {
    padding: 80px 0;
    background: var(--bg-color, #FAF7F2);
}

.contact-main__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 28px;
    align-items: start;
}

.contact-main__info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-main__card {
    padding: 24px 26px;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.06);
    border-radius: 16px;
    box-shadow: 0 6px 16px rgba(11, 25, 41, 0.04);
}

.contact-main__card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}
.contact-main__card-icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 169, 97, 0.12);
    color: #C9A961;
    border-radius: 10px;
    flex-shrink: 0;
}
.contact-main__card-head h3 {
    flex: 1;
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
}

.contact-main__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    background: rgba(40, 180, 110, 0.10);
    color: #1E8E5C;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}
.contact-main__badge-dot {
    width: 6px;
    height: 6px;
    background: #28B46E;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(40, 180, 110, 0.20);
}

/* Phone rows */
.contact-main__phones {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-main__phones li {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: baseline;
    gap: 4px 16px;
    padding: 14px 0;
    border-top: 1px solid rgba(11, 25, 41, 0.06);
}
.contact-main__phones li:first-child { border-top: 0; padding-top: 0; }
.contact-main__phones li:last-child  { padding-bottom: 0; }

.contact-main__phone-label {
    grid-column: 1;
    font-size: 13px;
    color: var(--text-color, #5a5650);
}
.contact-main__phone-num {
    grid-column: 2;
    grid-row: 1 / span 2;
    font-size: 17px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
}
.contact-main__phone-num:hover { color: #C9A961; }
.contact-main__phone-meta {
    grid-column: 1;
    font-size: 12px;
    color: rgba(11, 25, 41, 0.5);
}

/* Schedule */
.contact-main__schedule {
    list-style: none;
    margin: 0;
    padding: 0;
}
.contact-main__schedule li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-top: 1px solid rgba(11, 25, 41, 0.06);
    font-size: 14px;
    color: var(--text-color, #5a5650);
}
.contact-main__schedule li:first-child { border-top: 0; padding-top: 0; }
.contact-main__schedule li strong {
    color: var(--heading-color, #1A2540);
    font-weight: 600;
}
.contact-main__schedule-off { color: #C76A6A !important; }

.contact-main__schedule-note {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
    gap: 8px !important;
    margin-top: 6px;
    padding: 12px !important;
    background: rgba(201, 169, 97, 0.08);
    border: 1px dashed rgba(201, 169, 97, 0.40) !important;
    border-radius: 10px;
    font-size: 12.5px !important;
    color: var(--heading-color, #1A2540) !important;
}
.contact-main__schedule-note svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: #C9A961;
}

/* Address */
.contact-main__address {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-color, #5a5650);
}
.contact-main__address strong {
    display: block;
    font-size: 16px;
    color: var(--heading-color, #1A2540);
    margin-bottom: 2px;
}
.contact-main__address-notes {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.contact-main__address-notes li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-color, #5a5650);
}
.contact-main__address-notes li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #C9A961;
}

/* RIGHT — form card */
.contact-main__form-card {
    padding: 36px 36px 32px;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.06);
    border-radius: 18px;
    box-shadow: 0 10px 24px rgba(11, 25, 41, 0.06);
    position: sticky;
    top: 100px;
}

.contact-main__form-card .section-eyebrow {
    display: inline-block;
    margin: 0 0 16px;
    padding: 6px 16px 6px 28px;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C9A961;
    background: rgba(201, 169, 97, 0.10);
    border: 1px solid rgba(201, 169, 97, 0.30);
    border-radius: 100px;
    line-height: 1;
}
.contact-main__form-card .section-eyebrow::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #C9A961;
    border-radius: 50%;
}

.contact-main__form-title {
    margin: 0 0 10px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 28px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--heading-color, #1A2540);
}
.contact-main__form-title .accent-gold {
    color: #C9A961;
    font-style: italic;
    font-weight: 500;
}

.contact-main__form-desc {
    margin: 0 0 22px;
    font-size: 14px;
    line-height: 1.55;
    color: var(--text-color, #5a5650);
}

/* Tabs */
.contact-main__tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 6px;
    margin-bottom: 18px;
    background: var(--bg-color, #FAF7F2);
    border-radius: 12px;
}
.contact-main__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 8px;
    background: transparent;
    border: 0;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color, #5a5650);
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}
.contact-main__tab:hover { color: #C9A961; }
.contact-main__tab.is-active {
    background: #fff;
    color: var(--heading-color, #1A2540);
    box-shadow: 0 2px 8px rgba(11, 25, 41, 0.06);
}
.contact-main__tab svg { flex-shrink: 0; }

/* Form fields */
.contact-main__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.contact-main__form-row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.contact-main__input {
    padding: 13px 16px;
    background: var(--bg-color, #FAF7F2);
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 14px;
    color: var(--heading-color, #1A2540);
    outline: none;
    transition: border-color .2s ease, background .2s ease;
    font-family: inherit;
    width: 100%;
}
.contact-main__input:focus {
    border-color: #C9A961;
    background: #fff;
}
.contact-main__input::placeholder { color: rgba(11, 25, 41, 0.45); }

.contact-main__input--select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1l5 5 5-5' stroke='%23C9A961' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}
.contact-main__input--textarea {
    resize: vertical;
    min-height: 80px;
}

.contact-main__submit {
    margin-top: 6px;
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ADAPTIVE — contact main */
@media (max-width: 1199px) {
    .contact-main__form-title { font-size: 24px; }
}
@media (max-width: 991px) {
    .contact-main { padding: 60px 0; }
    .contact-main__grid { grid-template-columns: 1fr; gap: 24px; }
    .contact-main__form-card { position: static; padding: 28px 26px; }
}
@media (max-width: 767px) {
    .contact-main { padding: 48px 0; }
    .contact-main__card { padding: 20px 22px; }
    .contact-main__form-card { padding: 24px 22px; }
    .contact-main__form-title { font-size: 22px; }
    .contact-main__tabs { grid-template-columns: 1fr; gap: 4px; }
    .contact-main__tab { padding: 12px 14px; justify-content: flex-start; }
    .contact-main__form-row--2 { grid-template-columns: 1fr; }
}
@media (max-width: 575px) {
    .contact-main { padding: 40px 0; }
    .contact-main__card { padding: 18px 18px; }
    .contact-main__phones li {
        grid-template-columns: 1fr;
        gap: 2px;
    }
    .contact-main__phone-num {
        grid-column: 1;
        grid-row: auto;
        font-size: 18px;
    }
    .contact-main__schedule li { font-size: 13.5px; }
    .contact-main__form-title { font-size: 20px; }
}


/* ============================================================
   CONTACT MAP — header + iframe + open/route buttons
   ============================================================ */

.contact-map {
    padding: 40px 0 100px;
    background: var(--bg-color, #FAF7F2);
}

.contact-map__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-map__head-text .section-eyebrow {
    display: inline-block;
    margin: 0 0 12px;
    padding: 6px 16px 6px 28px;
    position: relative;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #C9A961;
    background: rgba(201, 169, 97, 0.10);
    border: 1px solid rgba(201, 169, 97, 0.30);
    border-radius: 100px;
    line-height: 1;
}
.contact-map__head-text .section-eyebrow::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #C9A961;
    border-radius: 50%;
}
.contact-map__head-text h2 {
    margin: 0;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 32px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
}
.contact-map__head-text h2 .accent-gold {
    color: #C9A961;
    font-style: italic;
    font-weight: 500;
}

.contact-map__open {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    background: var(--primary-color, #0B1929);
    color: #fff;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: background .2s ease, transform .2s ease;
}
.contact-map__open:hover {
    background: #C9A961;
    color: #fff;
    transform: translateY(-2px);
}

.contact-map__wrap {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(11, 25, 41, 0.10);
    background: #fff;
}
.contact-map__iframe {
    display: block;
    width: 100%;
    height: 520px;
    border: 0;
}

.contact-map__route {
    position: absolute;
    bottom: 18px;
    right: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: #fff;
    color: var(--heading-color, #1A2540);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(11, 25, 41, 0.15);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.contact-map__route:hover {
    background: #C9A961;
    color: #fff;
    transform: translateY(-2px);
}
.contact-map__route svg { color: #C9A961; transition: color .2s ease; }
.contact-map__route:hover svg { color: #fff; }

/* ADAPTIVE — contact map */
@media (max-width: 991px) {
    .contact-map { padding: 32px 0 72px; }
    .contact-map__head-text h2 { font-size: 28px; }
    .contact-map__iframe { height: 420px; }
}
@media (max-width: 767px) {
    .contact-map { padding: 24px 0 56px; }
    .contact-map__head { margin-bottom: 18px; }
    .contact-map__head-text h2 { font-size: 24px; }
    .contact-map__iframe { height: 340px; }
}
@media (max-width: 575px) {
    .contact-map { padding: 16px 0 48px; }
    .contact-map__head-text h2 { font-size: 20px; }
    .contact-map__iframe { height: 280px; }
    .contact-map__route {
        bottom: 12px;
        right: 12px;
        padding: 10px 14px;
        font-size: 12px;
    }
    .contact-map__open {
        padding: 10px 14px;
        font-size: 12px;
    }
}


/* ============================================================
   BLOG — список постів + картки + пагінація
   ============================================================ */

.page-blog {
    padding: 100px 0;
    background: var(--bg-color, #FAF7F2);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

/* Card */
.blog-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(11, 25, 41, 0.08);
    border-color: rgba(201, 169, 97, 0.30);
}

.blog-card__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--bg-color, #FAF7F2);
}
.blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}
.blog-card:hover .blog-card__media img { transform: scale(1.05); }

.blog-card__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    background: rgba(11, 25, 41, 0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    border-radius: 100px;
    backdrop-filter: blur(6px);
}

.blog-card__body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 12px;
    color: rgba(11, 25, 41, 0.55);
}
.blog-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.blog-card__meta svg { color: #C9A961; }

.blog-card__title {
    margin: 0 0 12px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}
.blog-card__title a {
    color: var(--heading-color, #1A2540);
    text-decoration: none;
    transition: color .2s ease;
}
.blog-card__title a:hover { color: #C9A961; }

.blog-card__excerpt {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-color, #5a5650);
    flex: 1;
}

.blog-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    font-size: 13px;
    font-weight: 600;
    color: #C9A961;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: gap .2s ease;
}
.blog-card__more:hover { gap: 14px; color: #C9A961; }
.blog-card__more svg { transition: transform .2s ease; }
.blog-card__more:hover svg { transform: translateX(3px); }

/* Pagination */
.blog-pagination ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.blog-pagination li a,
.blog-pagination li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 14px;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.08);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.blog-pagination li a:hover {
    border-color: #C9A961;
    color: #C9A961;
}
.blog-pagination li.is-current span,
.blog-pagination li span.current {
    background: var(--primary-color, #0B1929);
    color: #fff;
    border-color: var(--primary-color, #0B1929);
}
.blog-pagination li a svg { color: currentColor; }

/* Empty state */
.blog-empty {
    text-align: center;
    padding: 64px 24px;
    max-width: 460px;
    margin: 0 auto;
}
.blog-empty svg {
    color: #C9A961;
    margin-bottom: 18px;
    opacity: 0.7;
}
.blog-empty h3 {
    margin: 0 0 8px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
}
.blog-empty p {
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-color, #5a5650);
}

/* ADAPTIVE */
@media (max-width: 1199px) {
    .blog-grid { gap: 24px; }
}

@media (max-width: 991px) {
    .page-blog { padding: 72px 0; }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }
    .blog-card__body { padding: 20px 22px 22px; }
    .blog-card__title { font-size: 18px; }
}

@media (max-width: 767px) {
    .page-blog { padding: 56px 0; }
    .blog-card__title { font-size: 17px; }
    .blog-card__excerpt { font-size: 13.5px; }
}

@media (max-width: 575px) {
    .page-blog { padding: 48px 0; }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 32px;
    }
    .blog-card__body { padding: 18px 20px 20px; }
    .blog-card__meta { gap: 10px; font-size: 11.5px; }
    .blog-pagination li a,
    .blog-pagination li span {
        min-width: 40px;
        height: 40px;
        font-size: 13px;
    }
}

@media (max-width: 360px) {
    .blog-card__title { font-size: 16px; }
    .blog-card__cat { padding: 5px 10px; font-size: 10px; }
}



/* ============================================================
   SINGLE POST — стаття блогу
   ============================================================ */

.sens-article {
    padding: 64px 0 80px;
    background: var(--bg-color, #FAF7F2);
}
.sens-article__inner {
    max-width: 880px;
    margin: 0 auto;
}

.sens-article__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--text-color, #5a5650);
}
.sens-article__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.sens-article__meta svg { color: #C9A961; }

.sens-article__thumb {
    margin: 0 0 36px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 14px 32px rgba(11, 25, 41, 0.10);
}
.sens-article__thumb img {
    width: 100%;
    height: auto;
    display: block;
}

/* PROSE — типографіка контенту */
.sens-article__content {
    font-size: 17px;
    line-height: 1.72;
    color: var(--text-color, #3a3633);
}
.sens-article__content > * { margin: 0 0 20px; }
.sens-article__content > *:last-child { margin-bottom: 0; }

.sens-article__content h2,
.sens-article__content h3,
.sens-article__content h4 {
    font-family: var(--font-serif, Georgia, serif);
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    line-height: 1.25;
    margin: 36px 0 14px;
}
.sens-article__content h2 { font-size: 30px; }
.sens-article__content h3 { font-size: 24px; }
.sens-article__content h4 { font-size: 20px; }
.sens-article__content > h2:first-child,
.sens-article__content > h3:first-child { margin-top: 0; }

.sens-article__content p { margin: 0 0 18px; }

.sens-article__content a {
    color: #C9A961;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .2s ease;
}
.sens-article__content a:hover { color: var(--heading-color, #1A2540); }

.sens-article__content strong {
    color: var(--heading-color, #1A2540);
    font-weight: 600;
}

.sens-article__content ul,
.sens-article__content ol {
    padding-left: 24px;
    margin: 0 0 22px;
}
.sens-article__content li {
    margin-bottom: 8px;
}
.sens-article__content ul li::marker { color: #C9A961; }

.sens-article__content blockquote {
    margin: 28px 0;
    padding: 22px 26px;
    background: #fff;
    border-left: 4px solid #C9A961;
    border-radius: 12px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 18px;
    font-style: italic;
    line-height: 1.55;
    color: var(--heading-color, #1A2540);
    box-shadow: 0 6px 16px rgba(11, 25, 41, 0.04);
}
.sens-article__content blockquote p:last-child { margin: 0; }

.sens-article__content img,
.sens-article__content figure {
    max-width: 100%;
    height: auto;
    border-radius: 14px;
    margin: 28px 0;
    display: block;
}
.sens-article__content figure img { border-radius: 0; margin: 0; }
.sens-article__content figure figcaption {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(11, 25, 41, 0.55);
    text-align: center;
}

.sens-article__content pre,
.sens-article__content code {
    background: rgba(11, 25, 41, 0.06);
    border-radius: 6px;
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.92em;
}
.sens-article__content code { padding: 2px 6px; }
.sens-article__content pre {
    padding: 18px 20px;
    overflow: auto;
    line-height: 1.5;
}

.sens-article__content hr {
    margin: 36px 0;
    border: 0;
    border-top: 1px solid rgba(11, 25, 41, 0.10);
}

/* FOOTER — tags + share */
.sens-article__footer {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid rgba(11, 25, 41, 0.10);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.sens-article__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.sens-article__tags-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    margin-right: 4px;
}
.sens-article__tag {
    display: inline-block;
    padding: 6px 12px;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.08);
    border-radius: 100px;
    font-size: 13px;
    color: var(--text-color, #5a5650);
    text-decoration: none;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.sens-article__tag:hover {
    background: rgba(201, 169, 97, 0.10);
    border-color: rgba(201, 169, 97, 0.40);
    color: #C9A961;
}

.sens-article__share {
    display: flex;
    align-items: center;
    gap: 10px;
}
.sens-article__share-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
}
.sens-article__share-btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.08);
    border-radius: 50%;
    color: var(--heading-color, #1A2540);
    font-size: 14px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}
.sens-article__share-btn:hover {
    background: #C9A961;
    color: #fff;
    transform: translateY(-2px);
}

/* PREV / NEXT nav */
.sens-article__nav {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.sens-article__nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: var(--heading-color, #1A2540);
    transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.sens-article__nav-link:hover {
    border-color: rgba(201, 169, 97, 0.40);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(11, 25, 41, 0.06);
}
.sens-article__nav-link svg { flex-shrink: 0; color: #C9A961; }
.sens-article__nav-link span {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}
.sens-article__nav-link small {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #C9A961;
    font-weight: 600;
}
.sens-article__nav-link strong {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--heading-color, #1A2540);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.sens-article__nav-link--next {
    text-align: right;
    flex-direction: row-reverse;
}
.sens-article__nav-link--next span { align-items: flex-end; }

/* Comments */
.sens-article__comments {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid rgba(11, 25, 41, 0.10);
}

/* ADAPTIVE */
@media (max-width: 991px) {
    .sens-article { padding: 48px 0 64px; }
    .sens-article__thumb { margin-bottom: 28px; }
    .sens-article__content { font-size: 16px; }
    .sens-article__content h2 { font-size: 26px; }
    .sens-article__content h3 { font-size: 22px; }
}

@media (max-width: 767px) {
    .sens-article { padding: 36px 0 48px; }
    .sens-article__meta { gap: 14px; font-size: 12px; }
    .sens-article__content { font-size: 15.5px; }
    .sens-article__content h2 { font-size: 22px; margin-top: 28px; }
    .sens-article__content h3 { font-size: 19px; margin-top: 24px; }
    .sens-article__content blockquote { padding: 18px 20px; font-size: 16px; }
    .sens-article__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .sens-article__nav { grid-template-columns: 1fr; }
    .sens-article__nav-link--next {
        flex-direction: row;
        text-align: left;
    }
    .sens-article__nav-link--next span { align-items: flex-start; }
}

@media (max-width: 575px) {
    .single-hero__title { font-size: 24px; }
    .single-hero__cat { padding: 5px 12px; font-size: 10px; }
    .sens-article__thumb { border-radius: 14px; }
    .sens-article__share-btn { width: 34px; height: 34px; font-size: 13px; }
    .sens-article__nav-link { padding: 14px 16px; gap: 10px; }
    .sens-article__nav-link strong { font-size: 13.5px; }
}


/* ============================================================
   SINGLE POST — COMMENTS
   ============================================================ */

.sens-article__comments {
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid rgba(11, 25, 41, 0.10);
}

.sens-article__comments #comments {
    margin: 0 0 24px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 24px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    line-height: 1.3;
}

/* Hide vendor empty navigation containers */
.sens-article__comments > .navigation {
    display: none;
}

/* Comment list */
.sens-article__comments .commentlist,
.sens-article__comments .commentlist ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sens-article__comments .comment {
    margin: 0 0 16px;
}
.sens-article__comments .comment:last-child { margin-bottom: 0; }

/* Nested replies */
.sens-article__comments .children {
    list-style: none;
    margin: 16px 0 0 0;
    padding: 0 0 0 40px;
    border-left: 2px solid rgba(201, 169, 97, 0.30);
}

.sens-article__comments .comment-body {
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.06);
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: 0 6px 16px rgba(11, 25, 41, 0.04);
}

.sens-article__comments .comment-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 12px;
}

.sens-article__comments .comment-author {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
    min-width: 0;
}
.sens-article__comments .comment-author .fn,
.sens-article__comments .comment-author .fn a {
    white-space: nowrap;
}

.sens-article__comments .comment-author img.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid rgba(201, 169, 97, 0.30);
}

.sens-article__comments .comment-author .fn {
    font-style: normal;
    font-weight: 600;
    font-size: 14.5px;
    color: var(--heading-color, #1A2540);
}
.sens-article__comments .comment-author .fn a {
    color: inherit;
    text-decoration: none;
    transition: color .2s ease;
}
.sens-article__comments .comment-author .fn a:hover { color: #C9A961; }

.sens-article__comments .comment-author .says { display: none; }

.sens-article__comments .comment-metadata {
    font-size: 12px;
    color: rgba(11, 25, 41, 0.55);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.sens-article__comments .comment-metadata a {
    color: rgba(11, 25, 41, 0.55);
    text-decoration: none;
    transition: color .2s ease;
}
.sens-article__comments .comment-metadata a:hover { color: #C9A961; }

.sens-article__comments .edit-link a {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #C9A961;
}

.sens-article__comments .comment-content {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color, #3a3633);
}
.sens-article__comments .comment-content p { margin: 0 0 10px; }
.sens-article__comments .comment-content p:last-child { margin: 0; }
.sens-article__comments .comment-content a {
    color: #C9A961;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.sens-article__comments .reply {
    margin-top: 12px;
}
.sens-article__comments .comment-reply-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(201, 169, 97, 0.10);
    border: 1px solid rgba(201, 169, 97, 0.30);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #C9A961;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.sens-article__comments .comment-reply-link:hover {
    background: #C9A961;
    color: #fff;
}
.sens-article__comments .comment-reply-link::before {
    content: '↩';
    font-size: 14px;
    line-height: 1;
}

/* Reply form */
.sens-article__comments #respond {
    margin-top: 36px;
    padding: 28px 28px 24px;
    background: #fff;
    border: 1px solid rgba(11, 25, 41, 0.06);
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(11, 25, 41, 0.04);
}

.sens-article__comments .comment-reply-title {
    margin: 0 0 16px;
    font-family: var(--font-serif, Georgia, serif);
    font-size: 22px;
    font-weight: 600;
    color: var(--heading-color, #1A2540);
    line-height: 1.3;
}
.sens-article__comments .comment-reply-title small {
    margin-left: 12px;
    font-size: 13px;
    font-weight: 400;
    font-family: inherit;
}
.sens-article__comments .comment-reply-title small a {
    color: #C76A6A;
    text-decoration: none;
}

.sens-article__comments .logged-in-as {
    margin: 0 0 16px;
    font-size: 13px;
    color: var(--text-color, #5a5650);
}
.sens-article__comments .logged-in-as a {
    color: #C9A961;
    text-decoration: none;
    transition: color .2s ease;
}
.sens-article__comments .logged-in-as a:hover { text-decoration: underline; }

.sens-article__comments .required-field-message {
    display: block;
    margin-top: 6px;
    font-size: 12px;
    color: rgba(11, 25, 41, 0.55);
}
.sens-article__comments .required { color: #C76A6A; }

/* Form fields */
.sens-article__comments .comment-form p {
    margin: 0 0 12px;
}
.sens-article__comments .comment-form-comment label,
.sens-article__comments .comment-form-author label,
.sens-article__comments .comment-form-email label,
.sens-article__comments .comment-form-url label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--heading-color, #1A2540);
}

.sens-article__comments .comment-form input[type="text"],
.sens-article__comments .comment-form input[type="email"],
.sens-article__comments .comment-form input[type="url"],
.sens-article__comments .comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg-color, #FAF7F2);
    border: 1px solid transparent;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--heading-color, #1A2540);
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}
.sens-article__comments .comment-form input:focus,
.sens-article__comments .comment-form textarea:focus {
    border-color: #C9A961;
    background: #fff;
}
.sens-article__comments .comment-form textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.5;
}

.sens-article__comments .comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--text-color, #5a5650);
}
.sens-article__comments .comment-form-cookies-consent input { margin-top: 4px; }
.sens-article__comments .comment-form-cookies-consent label { margin: 0; line-height: 1.5; }

.sens-article__comments .form-submit {
    margin: 18px 0 0 !important;
}
.sens-article__comments .form-submit input[type="submit"],
.sens-article__comments .form-submit .submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-color, #0B1929);
    color: #fff;
    border: 0;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}
.sens-article__comments .form-submit input[type="submit"]:hover,
.sens-article__comments .form-submit .submit:hover {
    background: #C9A961;
    transform: translateY(-2px);
}

/* ADAPTIVE */
@media (max-width: 767px) {
    .sens-article__comments { margin-top: 36px; padding-top: 28px; }
    .sens-article__comments #comments { font-size: 20px; }
    .sens-article__comments .comment-body { padding: 16px 18px; }
    .sens-article__comments .children { padding-left: 18px; }
    .sens-article__comments #respond { padding: 22px 20px 20px; }
    .sens-article__comments .comment-reply-title { font-size: 18px; }
}

@media (max-width: 575px) {
    .sens-article__comments .comment-author { gap: 8px; }
    .sens-article__comments .comment-author img.avatar { width: 36px; height: 36px; }
    .sens-article__comments .comment-author .fn { font-size: 13.5px; }
}


/* ============================================================
   FIX: WP body class `.single-post` конфліктує з вендорним правилом
   яке робить body max-width: 800px. Знімаємо це обмеження на body.
   ============================================================ */

body.single-post,
body.single {
    margin: 0 !important;
    max-width: none !important;
    width: auto !important;
}


/* ============================================================
   ПРАВКИ 2026-05-20 — TOPBAR / FOOTER / MISC
   ============================================================ */

/* Topbar route badge */
.topbar-item--map { position: relative; }
.topbar-item__route {
    display: inline-block;
    margin-left: 8px;
    padding: 2px 8px;
    background: rgba(201, 169, 97, 0.18);
    color: #D4AF37;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    border-radius: 100px;
    border: 1px solid rgba(212, 175, 55, 0.30);
}
.topbar-item--map:hover .topbar-item__route { background: rgba(212, 175, 55, 0.30); }
@media (max-width: 1299px) {
    .topbar-item__route { display: none; }
}

/* Footer messengers замість соц-мереж */
.footer-messengers { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-messengers__label {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
}
.footer-messengers ul {
    display: flex;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-msg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff !important;
    text-decoration: none;
    transition: transform .2s ease, opacity .2s ease;
}
.footer-msg:hover { transform: translateY(-2px); opacity: 0.92; }
.footer-msg--viber    { background: #7360F2; }
.footer-msg--telegram { background: #2AABEE; }
.footer-msg--whatsapp { background: #25D366; }

/* Footer quick contact (замість розсилки) */
.footer-quick-contact h3 { margin-bottom: 12px; }
.footer-quick-contact p {
    margin: 0 0 14px;
    font-size: 14px;
    color: rgba(255,255,255,0.65);
}
.footer-quick-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 600;
    color: #fff !important;
    text-decoration: none;
    margin-bottom: 14px;
    border-bottom: 1px dashed currentColor;
    padding-bottom: 2px;
    transition: color .2s ease;
}
.footer-quick-phone:hover { color: #C9A961 !important; }
.footer-quick-phone svg { color: #C9A961; flex-shrink: 0; }
.footer-quick-messengers { display: flex; gap: 8px; }

/* Footer text-only logo (вендорна іконка прибрана) */
.footer-logo--text {
    display: inline-flex;
    align-items: center;
    margin-bottom: 18px;
    text-decoration: none;
    transition: opacity .2s ease;
}
.footer-logo--text:hover { opacity: 0.85; }
.footer-logo--text .navbar-brand-name {
    font-family: var(--font-serif, Georgia, serif);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #C9A961;
    line-height: 1;
}
.footer-logo--text .navbar-brand-desc {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}


/* Thank-you toast */
.sens-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 99999;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid rgba(40, 180, 110, 0.30);
    border-left: 4px solid #28B46E;
    border-radius: 14px;
    box-shadow: 0 18px 40px rgba(11, 25, 41, 0.18);
    max-width: 380px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s ease, transform .3s ease;
}
.sens-toast.is-show { opacity: 1; transform: translateY(0); }
.sens-toast svg {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    color: #fff;
    background: #28B46E;
    border-radius: 50%;
    padding: 6px;
}
.sens-toast__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}
.sens-toast__body strong {
    font-size: 15px;
    color: var(--heading-color, #1A2540);
    font-weight: 600;
}
.sens-toast__body span {
    font-size: 13px;
    color: var(--text-color, #5a5650);
    line-height: 1.4;
}
.sens-toast__close {
    background: transparent;
    border: 0;
    font-size: 22px;
    line-height: 1;
    color: rgba(11, 25, 41, 0.40);
    cursor: pointer;
    padding: 0 4px;
    transition: color .2s ease;
}
.sens-toast__close:hover { color: #1A2540; }
@media (max-width: 575px) {
    .sens-toast {
        left: 12px;
        right: 12px;
        bottom: 12px;
        max-width: none;
    }
}


/* ============================================================
   FIX: Прибираємо magic cursor (кастомну крапку) — вертаємо
   стандартний курсор. Користувач бачив і дефолтний, і кастомний.
   ============================================================ */
.section-title h1,
.section-title h2,
.section-title p,
[data-cursor],
[data-cursor-text],
.swiper-wrapper[data-cursor-text],
body {
    cursor: auto !important;
}
.section-title h1, .section-title h2, .section-title p { cursor: default !important; }

/* Hide vendor magic cursor JS elements якщо інжектять */
.mouse-cursor,
.cursor-inner,
.cursor-outer,
#magic-cursor,
.magic-cursor {
    display: none !important;
}


/* ============================================================
   FIX: вендор робить кнопки/посилання через text-transform:capitalize.
   Клієнт хоче бачити тексти у природньому регістрі (як написано).
   ============================================================ */
.readmore-btn,
.btn-default,
.btn-default span,
.service-btn .readmore-btn,
.service-readmore-btn a,
.pricing-btn-wrap a,
.engaged__btn .btn-default,
.about-us-btn a,
.what-we-contact-btn a,
.cta-box-btn a,
.why-choose-btn a,
.hero-btn a,
.mobile-drawer__btn,
.header-btn .btn-default {
    text-transform: none !important;
}


/* SEO-text — буллети до списків */
.simple-text__content ul {
    list-style: disc !important;
    padding-left: 20px !important;
    margin: 0 0 18px;
}
.simple-text__content ul li {
    list-style: disc !important;
    margin-bottom: 6px;
}
.simple-text__content ul li::marker { color: #C9A961; }

.about-values__cta {
    margin-top: 20px;
}


/* ============================================================
   #7 — Hero CTA phone button (gold circle next to main CTA)
   ============================================================ */
.hero-btn {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}
.hero-btn a.hero-btn__phone,
a.hero-btn__phone {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50% !important;
    background: var(--accent-color, #ccb57b) !important;
    color: #1A2540 !important;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 8px 24px rgba(201, 169, 97, 0.25);
    flex-shrink: 0;
    padding: 0 !important;
    border: 0 !important;
}
.hero-btn a.hero-btn__phone:hover,
a.hero-btn__phone:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(201, 169, 97, 0.4);
    background: var(--accent-color, #ccb57b) !important;
    color: #1A2540 !important;
}
.hero-btn a.hero-btn__phone svg { color: #1A2540 !important; }
@media (max-width: 480px) {
    .hero-btn__phone { width: 50px; height: 50px; }
    .hero-btn__phone svg { width: 16px; height: 16px; }
}

/* ============================================================
   #11, #12, #34 — Word-wrap для довгих слів (Івано-Франківську)
   ============================================================ */
.section-title h1,
.section-title h2,
.section-title h3,
.section-title p,
.hero__h1,
.hero__h1-city,
.about-us-content h2,
.simple-text__title,
.about-content h2 {
    overflow-wrap: break-word;
    word-wrap: break-word;
    word-break: normal;
    hyphens: manual;
}
/* Спеціально для довгих українських слів — переноси по дефісу */
.hero__h1-city,
.section-title h2,
.simple-text__title {
    overflow-wrap: anywhere;
    word-break: break-word;
}
/* Запобігаємо обрізанню тексту за межі контейнера */
.about-us-content,
.section-title {
    min-width: 0;
}

/* ============================================================
   #42 — Менші відступи між clinic carousel і calc-price quiz
   ============================================================ */
.clinic-section + .calc-price,
.clinic + .calc-price,
section.calc-price {
    padding-top: 60px;
}
@media (max-width: 768px) {
    section.calc-price { padding-top: 40px; }
}

/* ============================================================
   #44, #47 — Уніфіковані іконки в features cards (всі gold)
   ============================================================ */
.features-list-item .features-list-icon,
.features-item__icon,
.features-card .features-icon {
    background: var(--accent-color, #ccb57b) !important;
    color: #1A2540 !important;
}
.features-list-item .features-list-icon svg,
.features-list-item .features-list-icon i,
.features-item__icon svg,
.features-item__icon i {
    color: #1A2540 !important;
    fill: #1A2540;
}
/* Якщо є dark/inverse варіант — теж золотий */
.features-list-item.is-dark .features-list-icon,
.features-item--dark .features-item__icon {
    background: var(--accent-color, #ccb57b) !important;
}

/* ============================================================
   #46 — Mobile топбар (телефон + месенджери в шапці на мобільному)
   ============================================================ */
.nav-mobile-contacts {
    display: none;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    margin-right: 8px;
}
.nav-mobile-contacts__phone,
.nav-mobile-contacts__msg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    transition: transform .2s ease, opacity .2s ease;
}
.nav-mobile-contacts__phone:hover,
.nav-mobile-contacts__msg:hover { transform: scale(1.08); opacity: 0.92; }
.nav-mobile-contacts__phone {
    background: var(--accent-color, #ccb57b);
    color: #1A2540;
}
.nav-mobile-contacts__msg--viber    { background: #7360F2; }
.nav-mobile-contacts__msg--telegram { background: #2AABEE; }
.nav-mobile-contacts__msg--whatsapp { background: #25D366; }

@media (max-width: 991px) {
    .nav-mobile-contacts { display: inline-flex; }
}
@media (max-width: 480px) {
    .nav-mobile-contacts { gap: 6px; }
    .nav-mobile-contacts__phone,
    .nav-mobile-contacts__msg { width: 34px; height: 34px; }
    .nav-mobile-contacts__phone svg { width: 15px; height: 15px; }
    .nav-mobile-contacts__msg svg { width: 13px; height: 13px; }
    /* Тісно — у шапці лишаємо дзвінок + WhatsApp,
       решта месенджерів доступні в бургер-меню */
    .nav-mobile-contacts__msg--viber,
    .nav-mobile-contacts__msg--telegram { display: none; }
}
/* Дуже вузький екран — у шапці лишається лише дзвінок */
@media (max-width: 360px) {
    .nav-mobile-contacts__msg--whatsapp { display: none; }
}

/* ============================================================
   #35 — Буллети до списків також у about/contact (Чому обирають / Як проходить)
   ============================================================ */
.about-content ul,
.contact-main ul,
.simple-text ul,
.values-list,
[class*="about-list"] ul,
.process-list ul {
    list-style: disc;
    padding-left: 22px;
}
.about-content ul li,
.contact-main ul li,
.simple-text ul li {
    list-style: disc;
    margin-bottom: 6px;
}
.about-content ul li::marker,
.contact-main ul li::marker,
.simple-text ul li::marker { color: var(--accent-color, #ccb57b); }


/* ============================================================
   #3 Про центр — сині іконки в .our-results / .result-item
   ============================================================ */
.our-results .result-item .icon-box,
.our-results .icon-box.icon-box--blue,
#about-standards .icon-box {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    background: #172637 !important;
    color: #fff !important;
    flex-shrink: 0 !important;
    box-shadow: 0 6px 18px rgba(23, 38, 55, 0.18) !important;
    margin: 0 !important;
    padding: 0 !important;
}
.our-results .result-item .icon-box svg,
#about-standards .icon-box svg {
    color: #fff !important;
    stroke: #fff !important;
    width: 28px !important;
    height: 28px !important;
}
.our-results .icon-box img { display: none !important; }

.our-results .result-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 18px !important;
    padding: 18px 0 !important;
}
.our-results .result-item .result-item-content { flex: 1; min-width: 0; }
@media (max-width: 480px) {
    .our-results .result-item .icon-box { width: 52px !important; height: 52px !important; }
    .our-results .result-item .icon-box svg { width: 22px !important; height: 22px !important; }
}


/* ============================================================
   #5 Про центр / #45 Головна / #8 #14 Послуги — менші відступи між секціями
   ============================================================ */
.about-values,
.about-values + section,
.our-results,
.about-standards,
#about-standards {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
@media (max-width: 991px) {
    .about-values,
    .our-results,
    #about-standards { padding-top: 40px !important; padding-bottom: 40px !important; }
}

/* Головна #45 / Послуги #8 #14 — section spacings */
.services-included,
.services-promo,
.services-team,
.services-included + section,
.our-feature,
.what-we-do + section,
.about-section + .what-we-do {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
}
@media (max-width: 768px) {
    .services-included,
    .services-promo,
    .services-team,
    .our-feature { padding-top: 44px !important; padding-bottom: 44px !important; }
}

/* Блог #3 — менший відступ (тільки сторінки блогу, не home teaser) */
body.blog .blog-page,
body.blog .post-list,
body.blog .blog-list,
body.archive .blog-page,
body.archive .post-list,
body.archive .blog-list,
body.single-post .single-post-content,
.blog-archive,
.blog-archive-section {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}
@media (max-width: 768px) {
    body.blog .blog-page,
    body.blog .post-list,
    body.blog .blog-list,
    body.archive .blog-page,
    body.archive .post-list,
    body.archive .blog-list,
    body.single-post .single-post-content,
    .blog-archive,
    .blog-archive-section { padding-top: 40px !important; padding-bottom: 40px !important; }
}

/* ============================================================
   #5 Послуги — readability text над темним фото (тільки .dark-section,
   .services-promo має власний дизайн з box)
   ============================================================ */
[class*="dark-photo"],
.dark-section[style*="background-image"],
.bg-section.dark-section {
    position: relative;
}
.dark-section[style*="background-image"]::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 25, 41, 0.55) 0%, rgba(11, 25, 41, 0.75) 100%);
    z-index: 0;
    pointer-events: none;
}
.dark-section[style*="background-image"] > * { position: relative; z-index: 1; }
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section .section-title h2 { text-shadow: 0 2px 12px rgba(0, 0, 0, 0.45); }
.dark-section p { text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4); }

/* ============================================================
   #6 Про центр — Fancybox-стиль клік на фото (через Magnific Popup)
   ============================================================ */
.about-values__image,
.about-values__media figure,
.result-image figure,
.result-list-image figure,
.our-results figure.image-anime {
    cursor: zoom-in;
    transition: opacity .25s ease;
}
.about-values__image:hover,
.result-image figure:hover,
.result-list-image figure:hover { opacity: 0.92; }


/* ============================================================
   #43 Головна — фото з людьми прилипають до низу секції,
   виходячи за межі padding (negative margin-bottom = -padding-bottom)
   ============================================================ */
.why-choose-us { overflow: hidden; }
.why-choose-us .row { align-items: flex-end !important; }
.why-choose-image-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    position: relative;
}
.why-choose-image {
    align-self: flex-end;
    width: 100%;
    margin-top: auto;
    margin-bottom: -100px;
}
.why-choose-image figure,
.why-choose-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: bottom center;
    margin-bottom: 0;
}
@media (max-width: 991px) {
    .why-choose-image { margin-bottom: -60px; }
}
@media (max-width: 768px) {
    .why-choose-image { margin-bottom: -40px; }
}


/* ============================================================
   Footer — лого з SVG-іконкою на світлій підкладці
   ============================================================ */
.footer-logo--brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}
.footer-logo--brand:hover { opacity: 0.92; }
.footer-logo__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}
.footer-logo__icon img {
    width: 38px;
    height: 38px;
    display: block;
    object-fit: contain;
}
.footer-logo--brand .navbar-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.footer-logo--brand .navbar-brand-name {
    color: #fff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}
.footer-logo--brand .navbar-brand-desc {
    color: rgba(255, 255, 255, 0.85);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-top: 4px;
}

/* Меню — без capitalize, щоб "Про центр" не перетворювалось на "Про Центр" */
.main-menu ul li a { text-transform: none !important; }

/* ─── Списки у статтях блогу ─── */
.sens-article__content ul,
.sens-article__content ol {
    margin: 16px 0 24px;
    padding-left: 28px;
    list-style-position: outside;
}
.sens-article__content ul { list-style-type: disc; }
.sens-article__content ol { list-style-type: decimal; }
.sens-article__content ul li,
.sens-article__content ol li {
    margin-bottom: 8px;
    line-height: 1.7;
}
.sens-article__content ul li::marker { color: var(--accent-color, #ccb57b); }
.sens-article__content ol li::marker { color: var(--accent-color, #ccb57b); font-weight: 600; }
.sens-article__content ul ul,
.sens-article__content ol ol,
.sens-article__content ul ol,
.sens-article__content ol ul {
    margin: 8px 0 8px;
    padding-left: 24px;
}
.sens-article__content ul ul { list-style-type: circle; }

/* Адреса в футері як клікабельне посилання */
.footer-contact-address {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed transparent;
    transition: color 0.2s, border-color 0.2s;
}
.footer-contact-address:hover {
    color: var(--accent-color, #ccb57b);
    border-bottom-color: var(--accent-color, #ccb57b);
}

/* ============================================================
   Footer navigation — кожен пункт в окремому рядку (не inline)
   ============================================================ */
.main-footer .footer-links ul {
    display: block !important;
    column-count: auto !important;
    list-style: none;
    margin: 0;
    padding: 0;
}
.main-footer .footer-links ul li {
    display: block !important;
    width: 100% !important;
    margin-bottom: 12px !important;
}
.main-footer .footer-links ul li a { display: inline-block; }

.footer-quick-or {
    display: block;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 14px 0 8px;
}

/* Назва міста — завжди в один рядок */
.nowrap-city { white-space: nowrap; }

/* #16 Послуги — CTA card desc readable */
.service-cta-content h3 { margin-bottom: 12px !important; }
.service-cta-content__desc {
    color: #fff !important;
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 22px;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
    opacity: 0.95;
}

/* Footer — лого розробника замість privacy policy */
.footer__developers { display: inline-flex; align-items: center; }
.footer__developers-link {
    display: inline-flex;
    opacity: 0.72;
    transition: opacity 0.25s ease;
}
.footer__developers-link:hover { opacity: 1; }
.footer__developers-link svg { display: block; height: auto; max-width: 160px; }

/* feature-counter-icon — фікс flex sizing щоб не сплющувало кружок */
.feature-counter-icon {
    flex: 0 0 60px !important;
    width: 60px !important;
    height: 60px !important;
    min-width: 60px !important;
    aspect-ratio: 1 / 1;
}
@media (max-width: 575px) {
    .feature-counter-icon {
        flex: 0 0 52px !important;
        width: 52px !important;
        height: 52px !important;
        min-width: 52px !important;
    }
    .feature-counter-icon img { max-width: 24px !important; }
}

/* feature-item-box — додаємо gap між картками */
.row.feature-item-box {
    --bs-gutter-x: 24px;
    --bs-gutter-y: 24px;
    row-gap: 24px;
}
@media (max-width: 768px) {
    .row.feature-item-box { row-gap: 16px; }
}

/* Послуги — фото-картки: голова не обрізається */
.services-included__card--photo img {
    object-fit: cover;
    object-position: center top;
    width: 100%;
    height: 100%;
}

/* ============================================================
   .services-promo — фіналізований блок (без темного фону)
   Desktop: content + media в одному box, фото притиснуте до низу.
   Mobile:  стек, спершу форма, фото внизу приліплене до краю.
   ============================================================ */
.services-promo {
    overflow: hidden;
    position: relative;
    background: transparent !important;
    background-image: none !important;
}
.services-promo::before,
.services-promo::after { display: none !important; }
.services-promo h1,
.services-promo h2,
.services-promo h3,
.services-promo p { text-shadow: none !important; }

/* Box: контент зліва, фото справа (ширше) */
.services-promo .services-promo__box {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: end;
    gap: 0;
    margin-bottom: 0 !important;
    overflow: hidden;
}

/* Media — займає всю ширину колонки, фото прилипає до низу */
.services-promo .services-promo__media {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100% !important;
    max-width: none !important;
    min-width: 0;
    margin: 0 !important;
    padding: 0;
    align-self: end;
    height: 100%;
    min-height: 0 !important;
}
.services-promo .services-promo__media img {
    display: block;
    width: 487px !important;
    max-width: 100%;
    height: auto !important;
    object-fit: contain;
    object-position: bottom center;
    margin: auto 0 0;
}

/* ── Mobile (≤991): спершу форма, фото внизу приліплене ── */
@media (max-width: 991px) {
    .services-promo .services-promo__box {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
    .services-promo .services-promo__content { order: 1; }
    .services-promo .services-promo__media {
        order: 2;
        min-height: 320px !important;
        padding-top: 0;
        overflow: hidden;
        align-items: center;       /* горизонталь — по центру */
        justify-content: flex-end; /* вертикаль — приліпити вниз */
    }
    .services-promo .services-promo__media img {
        width: auto !important;
        max-width: 100% !important;
        height: 320px !important;
        object-fit: cover;
        object-position: center top;
        margin: 0;
    }
}
@media (max-width: 480px) {
    .services-promo .services-promo__media { min-height: 260px !important; }
    .services-promo .services-promo__media img { height: 260px !important; }
}

@media (max-width: 991px) {
    .result-image-box { padding: 0 !important; }
}

/* Section eyebrow / pill h3 — більша висота лінії для читабельності */
.section-title h3,
.section-eyebrow,
.section-title .section-eyebrow,
h3.section-eyebrow {
    line-height: 1.5 !important;
}

/* Загальний h3 в основному контенті — повітря між рядками */
.section-title h3,
.about-content h3,
.services-included__card h3,
.feature-item-header h3,
.why-choose-item h3,
.our-results .result-item h3,
.about-values__item h3,
.feature-item h3 {
    line-height: 1.4;
}

/* ───────────────────────────────────────────────────────────────
   Правки 03.06 — «Поправити кружечки на моб» (секція переваг)
   Декоративні кола .icon-box на вузьких картках обрізаються
   посеред краю і виглядають зламано — на моб ховаємо.
   Золоту іконку лічильника фіксуємо, щоб не пливла по вертикалі.
─────────────────────────────────────────────────────────────── */
@media (max-width: 767px) {
    .feature-item .icon-box { display: none; }

    .feature-counter-item {
        align-items: center;
        margin-top: auto;
    }

    .feature-counter-icon {
        flex: 0 0 60px;
        width: 60px;
        height: 60px;
    }
}

/* Хедер картки переваг на моб: прибираємо резерв під схований декор
   (50px справа + 40px знизу давали порожню діру під заголовком) */
@media (max-width: 767px) {
    .feature-item-header {
        padding: 0 0 16px 0;
        margin-bottom: 16px;
    }
}
