/* ══════════════════════════════════════════════════════════════
   MRT Theme — Design System v4
   Blue Theme | Montserrat | Mobile-first
   Breakpoints: 640px, 768px, 1200px
   ══════════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

/* ── WordPress global-styles override ────────────────────────── */
body.wp-theme-ndc-mrt-theme {
    background: var(--white) !important;
    color: var(--text) !important;
}

/* ── CSS Variables ────────────────────────────────────────────── */
:root {
    --primary: #1565C0;
    --primary-dark: #0D47A1;
    --primary-light: #E3F2FD;
    --sky: #42A5F5;
    --sky-light: #E1F5FE;
    --text: #1A2332;
    --text-muted: #546178;
    --border: #C5CDD8;
    --success: #2E7D32;
    --red: #D32F2F;
    --accent: #FF6F00;
    --white: #FFFFFF;
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-hover: 0 4px 16px rgba(0,0,0,0.1);
    --radius: 12px;
    --radius-lg: 14px;
    --radius-pill: 20px;
    --transition: 0.2s ease;
}

/* ── Pulse animation for badge dot ────────────────────────────── */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: 0.6; transform: scale(1.3); }
}

/* ══════════════════════════════════════════════════════════════
   RESET & BASE
   ══════════════════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    padding-bottom: 64px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text);
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.375rem; }
h3 { font-size: 1.125rem; }

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition);
}
a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

/* ══════════════════════════════════════════════════════════════
   UTILITIES
   ══════════════════════════════════════════════════════════════ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ══════════════════════════════════════════════════════════════
   SECTION SYSTEM
   ══════════════════════════════════════════════════════════════ */
.section {
    padding: 28px 0;
}

.section__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 24px;
    font-size: 1.375rem;
    line-height: 1.25;
}

@media (min-width: 768px) {
    .section {
        padding: 48px 0;
    }
    .section__title {
        font-size: 1.75rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 48px;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    line-height: 1.2;
    white-space: nowrap;
}
.btn:hover {
    text-decoration: none;
}
.btn:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.btn--primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}
.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
}
.btn--primary:disabled {
    background: var(--border);
    border-color: var(--border);
    cursor: not-allowed;
    opacity: 0.7;
}

.btn--secondary {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}
.btn--secondary:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn--outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text);
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn--question {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.btn--question:hover {
    background: var(--primary-light);
    color: var(--primary);
}

.btn--success {
    background: var(--success);
    color: #fff;
    border-color: var(--success);
}
.btn--success:hover {
    background: #1B5E20;
    border-color: #1B5E20;
}

.btn--danger {
    background: var(--red);
    color: #fff;
    border-color: var(--red);
}
.btn--danger:hover {
    background: #B71C1C;
    border-color: #B71C1C;
}

.btn--sm {
    min-height: 36px;
    padding: 6px 16px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn--lg {
    min-height: 52px;
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: var(--radius);
}

/* ── Paired Buttons ───────────────────────────────────────────── */
.hero__actions,
.cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 520px;
}
.hero__actions .btn,
.cta__actions .btn {
    flex: 1;
    min-width: 0;
}

@media (max-width: 374px) {
    .hero__actions,
    .cta__actions {
        flex-direction: column;
        gap: 10px;
    }
    .hero__actions .btn,
    .cta__actions .btn {
        flex: none;
        width: 100%;
        min-height: 52px;
        padding: 14px 16px;
        font-size: 1rem;
    }
}

.hero__contrast-box {
    margin-top: 14px;
    padding: 12px 16px;
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: 10px;
    max-width: 560px;
}
.hero__contrast-note {
    margin: 0 0 8px;
    font-size: 0.8125rem;
    color: #5D4037;
    line-height: 1.5;
}
.hero__contrast-note:last-child {
    margin-bottom: 0;
}

/* Program composition block */
.service-composition {
    margin-top: 16px;
    background: #F0F7FF;
    border: 2px solid #A0AEC0;
    border-radius: 12px;
    padding: 16px 18px;
    font-size: 14px;
    color: #111827;
    line-height: 1.8;
}
.service-composition strong {
    font-size: 16px;
    color: #111827;
}
.service-composition ul {
    margin: 8px 0 0;
    padding-left: 20px;
}
.service-composition li {
    margin-bottom: 4px;
    font-size: 14px;
    color: #475569;
}

/* ══════════════════════════════════════════════════════════════
   BADGES
   ══════════════════════════════════════════════════════════════ */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1;
    gap: 6px;
}

.badge--green {
    background: #E8F5E9;
    color: #2E7D32;
}

.badge--popular {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 700;
}

.badge--sale {
    background: #D32F2F;
    color: #fff;
    font-weight: 700;
}

.badge__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2E7D32;
    margin-right: 8px;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════════════════════════════ */
.announcement-bar {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 899;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 639px) {
    .announcement-bar {
        top: 64px;
    }
}

.announcement-bar.is-hiding {
    transform: translateY(-100%);
    opacity: 0;
}

/* Normal — оранжевый */
.announcement-bar--normal {
    background: #FFF3E0;
    color: #E65100;
    border-bottom: 2px solid #FF6F00;
}

/* Urgent — красный */
.announcement-bar--urgent {
    background: #FFEBEE;
    color: #B71C1C;
    border-bottom: 2px solid #D32F2F;
}

/* Holiday — анимированный градиент */
.announcement-bar--holiday {
    background: linear-gradient(135deg, #FCE4EC, #F8BBD0, #FCE4EC);
    color: #AD1457;
    border-bottom: 2px solid #F48FB1;
    background-size: 200% 200%;
    animation: announcement-shimmer 3s ease-in-out infinite, announcement-float 2s ease-in-out infinite;
}

@keyframes announcement-shimmer {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

@keyframes announcement-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-2px); }
}

.announcement-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.announcement-bar__text {
    flex: 1;
    text-align: center;
}

.announcement-bar__link {
    display: inline-flex;
    align-items: center;
    padding: 4px 14px;
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    flex-shrink: 0;
    transition: opacity var(--transition);
}

.announcement-bar--normal .announcement-bar__link {
    background: #FF6F00;
    color: #fff;
}

.announcement-bar--urgent .announcement-bar__link {
    background: #D32F2F;
    color: #fff;
}

.announcement-bar--holiday .announcement-bar__link {
    background: #AD1457;
    color: #fff;
}

.announcement-bar__link:hover {
    opacity: 0.85;
    text-decoration: none;
}

.announcement-bar__close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 4px 8px;
    opacity: 0.7;
    transition: opacity var(--transition);
    line-height: 1;
    flex-shrink: 0;
}

.announcement-bar__close:hover {
    opacity: 1;
}

/* ══════════════════════════════════════════════════════════════
   TOP BAR (Desktop)
   ══════════════════════════════════════════════════════════════ */
.top-bar {
    background: #0C1929;
    border-bottom: none;
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.7);
    padding: 6px 0;
}

.top-bar__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.top-bar__left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar__address,
.top-bar__hours {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.top-bar__address svg,
.top-bar__hours svg {
    flex-shrink: 0;
    color: rgba(255,255,255,0.5);
}

.top-bar__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar__link {
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    transition: color var(--transition);
}
.top-bar__link:hover {
    color: #fff;
    text-decoration: none;
}

.top-bar__link--cabinet {
    display: inline-flex;
    align-items: center;
}
.top-bar__link--cabinet svg {
    color: rgba(255,255,255,0.7);
}

/* Hide on mobile */
@media (max-width: 639px) {
    .top-bar {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════════
   SITE HEADER (Desktop)
   ══════════════════════════════════════════════════════════════ */
.site-header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 900;
    box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.site-header__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-header__logo-icon {
    height: 42px;
    width: auto;
    flex-shrink: 0;
}

.site-header__logo-text {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.site-header__nav-link {
    padding: 6px 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    border-radius: 8px;
    transition: all var(--transition);
}
.site-header__nav-link:hover {
    color: var(--primary);
    background: var(--primary-light);
    text-decoration: none;
}
.site-header__nav-link--active {
    color: var(--primary);
    background: var(--primary-light);
    font-weight: 600;
}

/* Dropdown menu */
.site-header__dropdown {
    position: relative;
}
.site-header__nav-link--has-dropdown {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.site-header__dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    padding: 8px 0;
    z-index: 1000;
}
.site-header__dropdown:hover .site-header__dropdown-menu {
    display: block;
}
.site-header__dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: #334155;
    text-decoration: none;
    transition: background .15s, color .15s;
}
.site-header__dropdown-menu a:hover {
    background: #F0F4FA;
    color: #1565C0;
}

.site-header__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--success);
    white-space: nowrap;
    transition: all var(--transition);
    text-decoration: none;
    flex-shrink: 0;
    border: 2px solid var(--success);
    background: #E8F5E9;
    padding: 8px 16px;
    border-radius: 10px;
}
.site-header__phone svg {
    flex-shrink: 0;
    color: var(--success);
}
.site-header__phone:hover {
    background: #C8E6C9;
    color: #1B5E20;
    text-decoration: none;
}

/* Tablet header — larger elements for iPad mini */
@media (min-width: 640px) and (max-width: 1023px) {
    .site-header__inner {
        gap: 12px;
    }
    .site-header__logo-icon {
        height: 48px;
    }
    .site-header__logo-text {
        font-size: 1.25rem;
        font-weight: 800;
    }
    .site-header__nav {
        gap: 8px;
    }
    .site-header__nav-link {
        font-size: 13px;
        padding: 6px 6px;
    }
    .site-header__phone {
        font-size: 1rem;
        padding: 10px 18px;
        border-radius: 12px;
    }
}

/* Desktop header */
@media (min-width: 1024px) {
    .site-header__logo-icon {
        height: 46px;
    }
    .site-header__logo-text {
        font-size: 1.25rem;
        font-weight: 800;
    }
}

/* Hide on mobile */
@media (max-width: 639px) {
    .site-header {
        display: none;
    }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE HEADER (v18)
   ══════════════════════════════════════════════════════════════ */
.mobile-header {
    display: none;
}

@media (max-width: 639px) {
    .mobile-header {
        display: flex;
        position: sticky;
        top: 0;
        z-index: 900;
        background: var(--white);
        border-bottom: 2px solid var(--primary-light);
    }

    .mobile-header__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0 8px;
        gap: 2px;
        height: 64px;
    }

    .mobile-header__hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: none;
        border: none;
        cursor: pointer;
        color: var(--text);
        border-radius: 8px;
        transition: background var(--transition);
        flex-shrink: 0;
        padding: 0;
    }
    .mobile-header__hamburger:hover {
        background: #f0f2f5;
    }

    /* logo-icon-wrap: 48px wide to fit logo proportions, 40px tall */
    .mobile-header__logo-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        text-decoration: none;
        overflow: hidden;
        margin-left: -2px;
    }

    .mobile-header__logo-icon {
        height: 100%;
        width: 100%;
        display: block;
        object-fit: cover;
    }

    /* logo-text: fills remaining space, fixed height */
    .mobile-header__logo-text {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex: 1;
        min-width: 0;
        height: 40px;
        line-height: 1.2;
        text-decoration: none;
    }

    .mobile-header__logo-brand {
        font-weight: 800;
        font-size: 1rem;
        color: var(--primary);
        font-family: 'Montserrat', sans-serif;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .mobile-header__logo-address {
        font-size: 0.8125rem;
        color: var(--text-muted);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-top: 1px;
    }

    .mobile-header__cabinet {
        display: flex;
        align-items: center;
        gap: 4px;
        height: 40px;
        padding: 0 12px;
        border-radius: 10px;
        border: 2px solid var(--border);
        background: var(--primary-light);
        color: var(--primary);
        font-size: 0.8125rem;
        font-weight: 700;
        text-decoration: none;
        flex-shrink: 0;
        white-space: nowrap;
    }
    .mobile-header__cabinet:hover {
        border-color: var(--primary);
        text-decoration: none;
    }

    .mobile-header__phone {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: #FFF0F0;
        border: 2.5px solid var(--red);
        color: var(--red);
        text-decoration: none;
        transition: background var(--transition);
        flex-shrink: 0;
    }
    .mobile-header__phone:hover {
        background: #FFEBEE;
        text-decoration: none;
    }
}

/* ══════════════════════════════════════════════════════════════
   MOBILE MENU DRAWER
   ══════════════════════════════════════════════════════════════ */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s 0.3s;
}
.mobile-menu.is-open {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s;
}

.mobile-menu__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.mobile-menu.is-open .mobile-menu__overlay {
    opacity: 1;
}

.mobile-menu__drawer {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    max-width: 85vw;
    background: var(--white);
    box-shadow: 4px 0 24px rgba(0,0,0,0.15);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 20px 0;
}
.mobile-menu.is-open .mobile-menu__drawer {
    transform: translateX(0);
}

.mobile-menu__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background var(--transition);
}
.mobile-menu__close:hover {
    background: #f0f2f5;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    padding: 40px 0 16px;
}

.mobile-menu__link {
    display: block;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text);
    text-decoration: none;
    transition: all var(--transition);
}
.mobile-menu__link--active {
    color: var(--primary);
    font-weight: 700;
}
.mobile-menu__link:hover {
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
}

.mobile-menu__sub {
    padding-left: 20px;
}
.mobile-menu__sublink {
    display: block;
    padding: 8px 24px;
    font-size: 14px;
    color: #64748B;
    text-decoration: none;
    transition: color .15s;
}
.mobile-menu__sublink:hover {
    color: #1565C0;
    text-decoration: none;
}

.mobile-menu__contacts {
    border-top: 1px solid var(--border);
    padding: 16px 24px;
    margin-top: auto;
}

.mobile-menu__phone {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    text-decoration: none;
}
.mobile-menu__phone:hover {
    color: var(--primary);
    text-decoration: none;
}

.mobile-menu__address,
.mobile-menu__hours {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 32px 0;
    height: auto;
    background: #E1F5FE;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/hero-bg.png') 75% center / cover no-repeat;
    opacity: 1;
    pointer-events: none;
    filter: contrast(1.15) saturate(1.2);
}

.hero__bg .hero__svg {
    display: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to right, rgba(225,245,254,0.45) 0%, rgba(225,245,254,0.08) 30%, rgba(225,245,254,0) 100%);
    pointer-events: none;
    z-index: 1;
}
/* На странице услуги фонового изображения нет — градиент не нужен */
.hero--service::after {
    display: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding-top: 0;
}

/* ── Service Hero Layout ─────────────────────────────────────── */
.hero--service__layout {
    position: relative;
    z-index: 2;
}
@media (min-width: 768px) {
    .hero--service__layout {
        display: flex;
        gap: 32px;
        align-items: flex-start;
    }
    .hero--service__main {
        flex: 1;
        min-width: 0;
    }
    .hero--service__sidebar {
        flex: 0 0 320px;
    }
}

.hero__availability {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 20px;
    border: 2px solid #43A047;
    margin-bottom: 20px;
}

.hero__availability-icon {
    flex-shrink: 0;
    color: #43A047;
}

.hero__availability-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.hero__availability-day {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #2E7D32;
    line-height: 1.3;
}

.hero__availability-time {
    font-size: 0.875rem;
    font-weight: 500;
    color: #43A047;
    line-height: 1.3;
}

/* Компактная версия для страницы услуги */
.hero__availability--compact {
    padding: 8px 14px;
    gap: 8px;
    border-radius: 10px;
    border-width: 1.5px;
    margin-bottom: 14px;
}
.hero__availability--compact .hero__availability-day {
    font-size: 0.875rem;
}
.hero__availability--compact .hero__availability-time {
    font-size: 0.8125rem;
}

.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.125rem;
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero__subtitle {
    font-size: 1.0625rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 10px;
    max-width: 540px;
}

.hero__subtitle strong {
    color: var(--text);
}

.hero__price-block {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}
.hero__price-old {
    font-size: 1.125rem;
    color: #7C8BA0;
    font-weight: 500;
}
.hero__price {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
}
.hero__price--sale {
    color: #D32F2F;
}
.hero__price-badge {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #D32F2F;
    border-radius: 6px;
    padding: 4px 10px;
    letter-spacing: 0.5px;
    line-height: 1;
    align-self: center;
}
.hero__price strong {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.hero__actions {
    margin-bottom: 16px;
}

.hero__actions .btn {
    min-height: 50px;
    font-size: 0.9375rem;
    padding: 10px 14px;
    border-radius: 12px;
    white-space: nowrap;
}

@media (min-width: 480px) {
    .hero__actions .btn {
        min-height: 56px;
        font-size: 1.0625rem;
        padding: 12px 24px;
    }
}

.hero__actions .btn--primary {
    box-shadow: 0 4px 16px rgba(21,101,192,0.25);
}

.hero__actions .btn--question {
    border-width: 2.5px;
    background: rgba(255,255,255,0.9);
}

.hero__info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.hero__address,
.hero__hours {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.hero__address svg,
.hero__hours svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

/* Tablet (iPad mini ~744px, iPad ~820px) */
@media (min-width: 640px) and (max-width: 1023px) {
    .hero {
        padding: 48px 0;
    }
    .hero__availability {
        padding: 14px 24px;
        margin-bottom: 24px;
    }
    .hero__availability-day {
        font-size: 1rem;
    }
    .hero__availability-time {
        font-size: 0.875rem;
    }
    .hero__title {
        font-size: 2.75rem;
        margin-bottom: 18px;
    }
    .hero__subtitle {
        font-size: 1.1875rem;
        margin-bottom: 14px;
    }
    .hero__price {
        font-size: 2.125rem;
        margin-bottom: 28px;
    }
    .hero__actions {
        max-width: 480px;
        gap: 14px;
    }
    .hero__actions .btn {
        min-height: 58px;
        font-size: 1.125rem;
    }
    .hero__info {
        font-size: 1rem;
        margin-top: 8px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .hero {
        padding: 56px 0;
    }
    .hero__title {
        font-size: 3.5rem;
    }
    .hero__subtitle {
        font-size: 1.25rem;
    }
    .hero__price {
        font-size: 2.375rem;
    }
    .hero__availability {
        padding: 14px 28px;
        gap: 14px;
        margin-bottom: 24px;
    }
    .hero__availability-icon {
        width: 32px;
        height: 32px;
    }
    .hero__availability-day {
        font-size: 1.0625rem;
    }
    .hero__availability-time {
        font-size: 0.9375rem;
    }
}

/* ── Services header (centered) ─────────────────────────────── */
.services__header {
    text-align: center;
    margin-bottom: 16px;
}

.services__header .section__title {
    margin-bottom: 6px;
}

.services__subtitle {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin: 0;
}

/* ── Services filters centered ─────────────────────────────── */
.services__filters {
    justify-content: center;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES — Search
   ══════════════════════════════════════════════════════════════ */
.services__search {
    position: relative;
    max-width: 540px;
    margin: 0 auto 24px;
}

.services__search::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23546178' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    pointer-events: none;
}

.services__search-input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}
.services__search-input::placeholder {
    color: var(--text-muted);
}
.services__search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}

.services__autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--white);
    border: 2px solid var(--primary);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: 0 8px 24px rgba(21,101,192,0.15);
    max-height: 320px;
    overflow-y: auto;
}

.services__ac-item {
    display: block;
    width: 100%;
    padding: 12px 16px;
    text-align: left;
    border: none;
    background: none;
    font-size: 0.9375rem;
    color: var(--text);
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
}

.services__ac-item:hover,
.services__ac-item:focus {
    background: var(--primary-light);
    color: var(--primary);
    outline: none;
}

.services__ac-item strong {
    color: var(--primary);
    font-weight: 700;
}

.services__ac-item + .services__ac-item {
    border-top: 1px solid var(--border);
}

.services__ac-empty {
    padding: 14px 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES — Filter Tabs
   ══════════════════════════════════════════════════════════════ */
.services__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.services__filter-tab {
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    border: 2px solid rgba(21,101,192,0.3);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--heading);
    cursor: pointer;
    transition: all var(--transition);
    flex: 1 1 auto;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    line-height: 1.2;
}
.services__filter-tab:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(21,101,192,0.04);
}
.services__filter-tab.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   SERVICES — Card Grid
   ══════════════════════════════════════════════════════════════ */
.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .services__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

/* ── Service Card (new) ───────────────────────────────────────── */
.service-card {
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 16px 18px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    position: relative;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.service-card:hover {
    border-color: #1565C0;
    box-shadow: 0 4px 20px rgba(21,101,192,0.15);
}

/* Badge «Популярное» */
.service-card__badge-popular {
    position: absolute;
    top: -9px;
    right: 14px;
    background: #FF6F00;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 3px;
    box-shadow: 0 2px 6px rgba(255,111,0,0.3);
}
.service-card:not(.is-popular) .service-card__badge-popular {
    display: none;
}

/* Header: icon + info + price + meta */
.service-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.service-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: #E3F2FD;
    border: 1.5px solid #A0AEC0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.service-card__icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.service-card__icon--emoji {
    font-size: 28px;
    line-height: 1;
}

.service-card__info {
    flex: 1;
    min-width: 0;
}

.service-card__name {
    font-weight: 700;
    font-size: 18px;
    color: #111827;
    margin-bottom: 3px;
    line-height: 1.2;
    text-decoration: none;
    display: block;
}
.service-card__name:hover {
    color: #1565C0;
    text-decoration: none;
}

.service-card__meta {
    font-size: 12px;
    color: #7C8BA0;
    display: flex;
    align-items: center;
    gap: 3px;
    flex-wrap: wrap;
    margin-top: 2px;
}
.service-card__meta-icon {
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

/* Price */
.service-card__price {
    text-align: right;
    flex-shrink: 0;
}
.service-card__price-old {
    font-size: 13px;
    color: #7C8BA0;
    text-decoration: line-through;
}
.service-card:not(.has-sale) .service-card__price-old {
    display: none;
}
.service-card__price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-end;
}
.service-card__price-current {
    font-size: 21px;
    font-weight: 700;
    color: #1565C0;
}
.service-card.has-sale .service-card__price-current {
    color: #D32F2F;
}
.service-card__price-badge {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    background: #D32F2F;
    border-radius: 4px;
    padding: 3px 8px;
    white-space: nowrap;
    letter-spacing: 0.5px;
    line-height: 1;
}

/* Alerts */
.service-card__alerts {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 8px;
}
.service-card__alert {
    background: #FFF0F0;
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 600;
    color: #D32F2F;
    border: 1.5px solid rgba(211,47,47,0.2);
    line-height: 1.4;
}
.service-card__alert--contrast {
    font-weight: 700;
    border-color: rgba(211,47,47,0.3);
}

.service-card__alert--prep {
    background: #FFF8E1;
    color: #E65100;
    border-color: rgba(230,81,0,0.2);
}

.service-card__alert--tests {
    background: #E8F5E9;
    color: #2E7D32;
    border-color: rgba(46,125,50,0.2);
}

.service-card__alert--referral {
    background: #E3F2FD;
    color: #1565C0;
    border-color: rgba(21,101,192,0.2);
}

/* Buttons */
.service-card__buttons {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}
.service-card__btn-rec,
.service-card__btn-q {
    flex: 1;
    padding: 11px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    transition: opacity 0.15s;
}
.service-card__btn-rec {
    background: #1565C0;
    color: #fff;
    border: none;
    text-decoration: none;
    display: block;
}
.service-card__btn-q {
    background: #fff;
    color: #1565C0;
    border: 2px solid #1565C0;
}
.service-card__btn-rec:hover,
.service-card__btn-q:hover {
    opacity: 0.9;
    text-decoration: none;
}

/* Mobile */
@media (max-width: 640px) {
    .service-card__name {
        font-size: 15px;
    }
    .service-card__icon {
        width: 42px;
        height: 42px;
    }
    .service-card__icon img {
        width: 26px;
        height: 26px;
    }
    .service-card__price-current {
        font-size: 18px;
    }
    .service-card__header {
        gap: 10px;
    }
}

/* ══════════════════════════════════════════════════════════════
   SERVICES — Pagination
   ══════════════════════════════════════════════════════════════ */
.services__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding-top: 8px;
}

.services__pagination-pages {
    display: flex;
    gap: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.services__page-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}
.services__page-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.services__page-btn.is-active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.services__page-btn.is-disabled,
.services__page-btn:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.services__page-btn--arrow {
    font-size: 1.1rem;
    font-weight: 700;
}

.services__pagination-counter {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   SYMPTOMS
   ══════════════════════════════════════════════════════════════ */
.symptoms__header {
    text-align: center;
    margin-bottom: 20px;
}

.symptoms__header .section__title {
    margin-bottom: 6px;
}

.symptoms__subtitle {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

.symptoms__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

@media (min-width: 768px) {
    .symptoms__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (min-width: 1200px) {
    .symptoms__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}

.symptoms__card {
    border: 2px solid rgba(21,101,192,0.25);
    border-radius: var(--radius-lg);
    padding: 12px;
    text-align: center;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(21,101,192,0.1);
    text-decoration: none;
    color: var(--text);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.symptoms__card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
    color: var(--primary);
}

@media (min-width: 768px) {
    .symptoms__card {
        padding: 16px;
    }
}

.symptoms__card--hidden {
    display: none;
}

.symptoms__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--primary-light);
    border: 1.5px solid var(--border);
    color: #1565C0;
}
.symptoms__icon img,
.symptoms__icon svg {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

@media (min-width: 768px) {
    .symptoms__icon {
        width: 56px;
        height: 56px;
    }
    .symptoms__icon img,
    .symptoms__icon svg {
        width: 36px;
        height: 36px;
    }
}

.symptoms__label {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--heading);
}

.symptoms__toggle {
    display: block;
    margin: 0 auto;
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 10px 24px;
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 600;
    background: none;
    cursor: pointer;
}

/* ══════════════════════════════════════════════════════════════
   PROCESS STEPS
   ══════════════════════════════════════════════════════════════ */
.process__steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .process__steps {
        grid-template-columns: repeat(6, 1fr);
        gap: 8px;
    }
}

.process__step {
    border: 2px solid #1565C0;
    border-radius: 10px;
    padding: 10px 8px 8px;
    background: var(--white);
    text-align: center;
    box-shadow: 0 2px 6px rgba(21,101,192,0.12);
    transition: all var(--transition);
}
.process__step:hover {
    border-color: #0D47A1;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(21,101,192,0.2);
}

.process__step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0D47A1, #1976D2);
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
}

.process__step-title {
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 3px;
    color: #1A1A2E;
}

.process__step-text {
    font-size: 0.7rem;
    color: #4A5568;
    line-height: 1.35;
}

.process__motivation {
    margin-top: 12px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #E3F2FD, #FFF3E0);
    border-radius: 14px;
    border: 2px solid rgba(21,101,192,0.2);
    display: flex;
    align-items: center;
    gap: 14px;
}

@media (max-width: 479px) {
    .process__motivation {
        padding: 16px 14px;
    }
}

.process__motivation-icon {
    font-size: 36px;
    flex-shrink: 0;
    line-height: 1;
}

.process__motivation-body {
    flex: 1;
    min-width: 0;
}

.process__motivation-title {
    font-weight: 700;
    font-size: 18px;
    color: #111827;
    margin-bottom: 4px;
}

@media (max-width: 479px) {
    .process__motivation-title {
        font-size: 15px;
    }
}

.process__motivation-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.5;
}

@media (max-width: 479px) {
    .process__motivation-desc {
        font-size: 13px;
    }
}

/* Legacy class for backwards compatibility */
.process__motivation-text {
    font-size: 0.9375rem;
    color: var(--text);
    font-weight: 500;
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT SECTION (v18: photo left, text+stats right)
   ══════════════════════════════════════════════════════════════ */
.about__layout {
    display: block;
}

@media (min-width: 768px) {
    .about__layout {
        display: flex;
        gap: 36px;
        align-items: center;
    }
}

.about__photo {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    background: linear-gradient(135deg, #BBDEFB, #E3F2FD);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 16px;
    border: 2px solid var(--border);
    overflow: hidden;
}

@media (min-width: 768px) {
    .about__photo {
        width: 380px;
        height: 260px;
        margin-bottom: 0;
    }
}

.about__photo img,
.about__photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.about__photo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.875rem;
}

.about__body {
    flex: 1;
    min-width: 0;
}

.about__body .section__title {
    margin-bottom: 10px;
}

.about__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

@media (min-width: 768px) {
    .about__stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }
}

.about__stat {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 12px 14px;
    text-align: center;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.about__stat:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.about__stat-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 2px;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
    .about__stat-value {
        font-size: 1.5rem;
    }
}

.about__stat-label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.about__text {
    max-width: 800px;
    margin-bottom: 16px;
}
.about__text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 12px;
}
.about__text p:last-child {
    margin-bottom: 0;
}

/* ══════════════════════════════════════════════════════════════
   EQUIPMENT
   ══════════════════════════════════════════════════════════════ */
.equipment__summary {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 800px;
}

.equipment__card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 768px) {
    .equipment__card {
        flex-direction: row;
    }
}

.equipment__image {
    flex-shrink: 0;
    overflow: hidden;
    line-height: 0;
}
.equipment__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (min-width: 768px) {
    .equipment__image {
        width: 50%;
        min-height: 320px;
    }
}

.equipment__info {
    padding: 24px;
    flex: 1;
}
@media (min-width: 768px) {
    .equipment__info {
        padding: 32px;
    }
}

.equipment__name {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.equipment__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.equipment__specs {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

@media (min-width: 480px) {
    .equipment__specs {
        grid-template-columns: 1fr 1fr;
    }
}

.equipment__spec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: #f8f9fb;
    border-radius: 8px;
    font-size: 0.875rem;
    gap: 8px;
}

.equipment__spec-label {
    color: var(--text-muted);
}

.equipment__spec-value {
    font-weight: 600;
    color: var(--text);
}

/* ══════════════════════════════════════════════════════════════
   STAFF / DOCTORS
   ══════════════════════════════════════════════════════════════ */
.staff__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
@media (min-width: 480px) {
    .staff__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 768px) {
    .staff__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
}
.staff__grid--4col {
    grid-template-columns: 1fr;
}
@media (min-width: 480px) {
    .staff__grid--4col {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .staff__grid--4col {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.staff__card {
    border: 2px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
    transition: all var(--transition);
}
.staff__card:hover {
    border-color: var(--primary);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.staff__card-photo {
    height: 160px;
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
@media (min-width: 768px) {
    .staff__card-photo {
        height: 180px;
    }
}
.staff__card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.staff__card-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    opacity: 0.5;
}

.staff__card-video-badge {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(21,101,192,0.9);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}
.staff__card-video-badge:hover {
    background: #0D47A1;
}

.staff__card-info {
    padding: 10px 12px 12px;
}

.staff__card-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px;
}
.staff__card-name a {
    color: inherit;
    text-decoration: none;
}
.staff__card-name a:hover {
    color: var(--primary);
}
a.staff__card-photo {
    display: flex;
    text-decoration: none;
}

.staff__card-position {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 2px;
    line-height: 1.35;
}

.staff__card-experience {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.staff__card-experience span {
    font-weight: 600;
    color: var(--primary);
}

.staff__card-video-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #1565C0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}
.staff__card-video-link:hover {
    text-decoration: underline;
}

/* Видео-модалка */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-modal[hidden] {
    display: none;
}
.video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    cursor: pointer;
}
.video-modal__content {
    position: relative;
    width: 90vw;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
}
.video-modal__close {
    position: absolute;
    top: -36px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    z-index: 1;
}
.video-modal__player {
    width: 100%;
    height: 100%;
}

/* ══════════════════════════════════════════════════════════════
   REVIEWS
   ══════════════════════════════════════════════════════════════ */
.reviews-section {
    padding: 48px 0;
}
@media (max-width: 640px) {
    .reviews-section {
        padding: 28px 0;
    }
}

/* Заголовок */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}
.reviews-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    color: #475569;
}
.reviews-rating__stars {
    display: flex;
    gap: 2px;
}
.reviews-rating__value {
    color: #111827;
    font-size: 18px;
    margin-left: 4px;
}
.reviews-rating__count {
    color: #7C8BA0;
}
.reviews-header__link {
    font-size: 14px;
    color: #1565C0;
    font-weight: 600;
    text-decoration: none;
}
.reviews-header__link:hover {
    text-decoration: underline;
}

/* Сетка отзывов */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 14px;
}
@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 640px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* Карточка отзыва */
.review-card {
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 18px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}
.review-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.review-card__author {
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}
.review-card__stars {
    display: flex;
    gap: 2px;
}
.review-card__text {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 10px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.review-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.review-card__date {
    font-size: 12px;
    color: #7C8BA0;
}
.review-card__source {
    font-size: 12px;
    color: #1565C0;
    text-decoration: none;
    font-weight: 600;
}
.review-card__source:hover {
    text-decoration: underline;
}

/* Атрибуция */
.reviews-attribution {
    text-align: center;
    margin-top: 12px;
    font-size: 12px;
    color: #7C8BA0;
}

/* ══════════════════════════════════════════════════════════════
   TAX RETURN (v18: gradient background, icon + text + button)
   ══════════════════════════════════════════════════════════════ */
.tax-return.section {
    padding: 0;
}

.tax-return__card {
    background: linear-gradient(135deg, var(--primary-light), #FFF3E0);
    border-radius: 0;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

@media (min-width: 768px) {
    .tax-return__card {
        padding: 40px 20px;
    }
    .tax-return__card .container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.tax-return__content {
    flex: 1;
}

.tax-return__icon {
    font-size: 2.25rem;
    line-height: 1;
    margin-bottom: 4px;
}

@media (min-width: 768px) {
    .tax-return__icon {
        font-size: 3rem;
    }
}

.tax-return__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

@media (min-width: 768px) {
    .tax-return__title {
        font-size: 1.625rem;
    }
}

.tax-return__text {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.tax-return__btn {
    white-space: nowrap;
    margin-top: 14px;
}

@media (min-width: 768px) {
    .tax-return__btn {
        margin-top: 0;
    }
}

@media (max-width: 480px) {
    .tax-return__card {
        flex-direction: column;
        text-align: left;
    }
}

/* ══════════════════════════════════════════════════════════════
   ROUTE / HOW TO GET
   ══════════════════════════════════════════════════════════════ */
.route__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .route__layout {
        grid-template-columns: 1fr 1fr;
    }
}

.route__map-iframe {
    display: block;
    height: 350px;
    border-radius: 14px;
    border: 2px solid #A0AEC0;
    overflow: hidden;
}
@media (max-width: 640px) {
    .route__map-iframe {
        height: 220px;
    }
}

.route__address {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9375rem;
    color: var(--text);
}
.route__address svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}
.route__address address {
    font-style: normal;
    line-height: 1.5;
}

.route__directions {
    margin-bottom: 24px;
}

.route__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
}

.route__input {
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 12px 16px;
    width: 100%;
    font-size: 16px;
    font-family: inherit;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: border-color var(--transition), box-shadow var(--transition);
    margin-bottom: 12px;
}
.route__input::placeholder {
    color: var(--text-muted);
}
.route__input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(21,101,192,0.12);
}

.route__build-btn {
    width: 100%;
}

.route__card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
}

.route__card-name {
    font-weight: 700;
    font-size: 1.0625rem;
    color: var(--text);
    margin-bottom: 6px;
}

.route__details {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 2;
    margin-bottom: 10px;
}

.route__detail-row {
    display: flex;
    gap: 6px;
    align-items: center;
}

.route__detail-row svg {
    flex-shrink: 0;
    color: var(--text-muted);
}

.route__hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 6px;
}

.route__entrance {
    margin-top: 12px;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

.route__entrance-placeholder {
    margin-top: 10px;
    border-radius: 10px;
    height: 100px;
    background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
    border: 2px solid var(--border);
}

.route__entrance-gallery {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

.route__entrance-photo {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

/* ══════════════════════════════════════════════════════════════
   PATIENT INFO
   ══════════════════════════════════════════════════════════════ */
.patient-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 768px) {
    .patient-info__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (min-width: 1200px) {
    .patient-info__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.patient-info__card {
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 16px;
    background: var(--white);
    text-align: center;
    text-decoration: none;
    color: var(--text);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow);
    transition: all var(--transition);
}
.patient-info__card:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}

.patient-info__card-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.patient-info__card-title {
    font-size: 0.8125rem;
    font-weight: 500;
    line-height: 1.3;
}

/* ══════════════════════════════════════════════════════════════
   FAQ ACCORDION (unified for all accordions)
   ══════════════════════════════════════════════════════════════ */
.faq-list {
    max-width: 800px;
}

.faq-item {
    border: 2px solid #A0AEC0;
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: border-color 0.2s;
}
.faq-item.is-open {
    border-color: #1565C0;
}

.faq-item__toggle {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
}

.faq-item__question {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    text-align: left;
    line-height: 1.4;
}

.faq-item__arrow {
    font-size: 14px;
    color: #7C8BA0;
    transition: transform 0.2s;
    flex-shrink: 0;
    margin-left: 12px;
}
.faq-item.is-open .faq-item__arrow {
    transform: rotate(180deg);
    color: #1565C0;
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 20px;
}
.faq-item.is-open .faq-item__answer {
    max-height: 500px;
    padding: 0 20px 16px;
}

.faq-item__answer p {
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}
.faq-item__answer p + p {
    margin-top: 8px;
}
.faq-item__answer a {
    color: var(--primary);
    text-decoration: underline;
}
.faq-item.open .faq-answer { display: block !important; }

/* Legacy alias */
.fears__list {
    max-width: 800px;
}

/* ══════════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════════ */
.cta {
    background: linear-gradient(135deg, #0D47A1, #1565C0, #42A5F5);
    color: #fff;
    text-align: center;
}

.cta__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta__title {
    color: #fff;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.375rem;
    margin-bottom: 8px;
}

.cta__subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .cta__title {
        font-size: 1.75rem;
    }
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta__actions .btn {
    flex: 1;
    max-width: 200px;
}

/* CTA buttons on gradient bg */
.cta .btn--primary {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.cta .btn--primary:hover {
    background: rgba(255,255,255,0.9);
    border-color: rgba(255,255,255,0.9);
}

.cta .btn--question {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}
.cta .btn--question:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.site-footer {
    background: #0C1929;
    color: rgba(255,255,255,0.7);
    padding: 48px 0 24px;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ── Footer Columns ───────────────────────────────────────────── */
.site-footer__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .site-footer__columns {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .site-footer__columns {
        grid-template-columns: repeat(4, 1fr);
    }
}

.site-footer__col {
    min-width: 0;
}

.site-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    text-decoration: none;
}
.site-footer__logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}
.site-footer__brand:hover {
    color: #fff;
    text-decoration: none;
}

.site-footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer__phone {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}
.site-footer__phone:hover {
    color: #fff;
    text-decoration: underline;
}

.site-footer__address,
.site-footer__hours {
    font-size: 0.8125rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
}

.site-footer__heading {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 12px;
}

.site-footer__nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.site-footer__nav a {
    color: rgba(255,255,255,0.7);
    font-size: 0.8125rem;
    text-decoration: none;
    transition: color var(--transition);
    line-height: 1.5;
}
.site-footer__nav a:hover {
    color: #fff;
    text-decoration: none;
}

.site-footer__all-link {
    font-weight: 600;
    color: rgba(255,255,255,0.85) !important;
    margin-top: 4px;
}

/* ── Footer Legal ─────────────────────────────────────────────── */
.site-footer__legal {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer__disclaimer-full {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 16px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.site-footer__disclaimer-headline {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 8px;
}
.site-footer__disclaimer-body {
    font-size: 12px;
    color: rgba(255,255,255,0.55);
    line-height: 1.6;
    margin: 0;
}

.site-footer__disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.5;
}

.site-footer__disclaimer--medical {
    border: 1px solid rgba(211,47,47,0.5);
    border-radius: 8px;
    padding: 12px;
    background: rgba(211,47,47,0.08);
    color: rgba(255,255,255,0.9);
    font-size: 0.8125rem;
    font-weight: 500;
}

.site-footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}

.site-footer__legal-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color var(--transition);
}
.site-footer__legal-links a:hover {
    color: #fff;
}

.site-footer__sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
}

.site-footer__copy {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

.site-footer__requisites {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.site-footer__pd-operator {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

.site-footer__developer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}
.site-footer__developer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
}
.site-footer__developer a:hover {
    color: #fff;
}

/* ══════════════════════════════════════════════════════════════
   STICKY BAR (Mobile)
   ══════════════════════════════════════════════════════════════ */
.sticky-bar {
    display: none;
}

@media (max-width: 639px) {
    .sticky-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: 64px;
        background: var(--white);
        border-top: 2px solid var(--border);
        box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
    }

    .sticky-bar__inner {
        display: flex;
        gap: 8px;
        padding: 8px 16px;
        align-items: center;
        width: 100%;
    }

    .sticky-bar__btn {
        border: none;
        font-family: 'Montserrat', sans-serif;
        cursor: pointer;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all var(--transition);
    }

    .sticky-bar__btn--booking {
        flex: 1;
        height: 48px;
        background: var(--primary);
        color: #fff;
        border-radius: 10px;
        font-weight: 700;
        font-size: 1rem;
    }
    .sticky-bar__btn--booking:hover {
        background: var(--primary-dark);
    }

    .sticky-bar__btn--phone {
        width: 48px;
        height: 48px;
        background: #FFF0F0;
        border: 2.5px solid var(--red);
        border-radius: 10px;
        flex-shrink: 0;
    }
    .sticky-bar__btn--phone:hover {
        background: #FFEBEE;
    }
    .sticky-bar__btn--phone svg {
        stroke: var(--red);
    }
}

/* ══════════════════════════════════════════════════════════════
   BOOKING WIDGET (Modal)
   ══════════════════════════════════════════════════════════════ */
.booking {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0s 0.3s;
}
.booking.is-open {
    visibility: visible;
    pointer-events: auto;
    transition: visibility 0s;
}

.booking__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.55);
    opacity: 0;
    transition: opacity 0.3s ease;
    cursor: pointer;
}
.booking.is-open .booking__overlay {
    opacity: 1;
}

.booking__panel {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 24px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
.booking.is-open .booking__panel {
    transform: translateY(0);
    opacity: 1;
}

@media (max-width: 639px) {
    .booking__panel {
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        transform: translateY(100%);
    }
    .booking.is-open .booking__panel {
        transform: translateY(0);
    }
}

.booking__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background var(--transition);
}
.booking__close:hover {
    background: #f0f2f5;
}

/* ── Booking Progress ─────────────────────────────────────────── */
.booking__progress {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.booking__progress-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    opacity: 0.4;
    transition: opacity var(--transition);
}
.booking__progress-step.is-active {
    opacity: 1;
}
.booking__progress-step.is-done {
    opacity: 0.7;
}

.booking__progress-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--border);
    color: #fff;
    font-weight: 700;
    font-size: 0.8125rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.booking__progress-step.is-active .booking__progress-num {
    background: var(--primary);
}
.booking__progress-step.is-done .booking__progress-num {
    background: var(--success);
}

.booking__progress-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}

/* ── Booking Steps ────────────────────────────────────────────── */
.booking__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.booking__search {
    position: relative;
    margin-bottom: 16px;
}

.booking__search-input {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}
.booking__search-input:focus {
    border-color: var(--primary);
}

.booking__autocomplete {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 50;
    background: var(--white);
    border: 2px solid var(--border);
    border-top: none;
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow-hover);
}

.booking__services-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 400px;
    overflow-y: auto;
}

.booking__service-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: none;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text);
    text-align: left;
    transition: all var(--transition);
    gap: 12px;
    width: 100%;
}
.booking__service-card:hover {
    background: var(--primary-light);
    border-color: var(--primary);
}
.booking__service-card.is-selected {
    background: var(--primary-light);
    border-color: var(--primary);
}

.booking__service-name {
    font-weight: 500;
    flex: 1;
    min-width: 0;
}

.booking__service-price {
    font-weight: 600;
    color: var(--primary);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── Booking Days & Times ─────────────────────────────────────── */
.booking__days {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.booking__day-btn {
    padding: 12px 8px;
    border: 2px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    text-align: center;
    transition: all var(--transition);
}
.booking__day-btn:hover {
    border-color: var(--primary);
}
.booking__day-btn.is-selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.booking__day-name {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
}

.booking__day-slots {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 2px;
}
.booking__day-btn.is-selected .booking__day-slots {
    color: rgba(255,255,255,0.8);
}

.booking__times {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.booking__time-btn {
    padding: 10px;
    border: 2px solid var(--border);
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
    transition: all var(--transition);
}
.booking__time-btn:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}
.booking__time-btn.is-selected {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}
.booking__time-btn.is-taken,
.booking__time-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.booking__back {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    font-family: inherit;
    font-size: 0.875rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 8px 0;
    margin-top: 8px;
    transition: color var(--transition);
}
.booking__back:hover {
    color: var(--primary);
}

/* ── Booking Step 4 (Confirmation) ────────────────────────────── */
.booking__summary {
    background: #f8f9fb;
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.booking__summary-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.875rem;
}

.booking__summary-label {
    color: var(--text-muted);
}

.booking__summary-value {
    font-weight: 600;
    color: var(--text);
    text-align: right;
}

.booking__field {
    margin-bottom: 16px;
}

.booking__field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}
.booking__field label .required {
    color: var(--red);
}

.booking__field input[type="text"],
.booking__field input[type="tel"],
.booking__field input[type="date"],
.booking__field input[type="search"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}
.booking__field input:focus {
    border-color: var(--primary);
}

.booking__field-hint {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.booking__consent {
    margin-bottom: 20px;
}

.booking__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1.4;
}
.booking__checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    accent-color: var(--primary);
}
.booking__checkbox a {
    color: var(--primary);
}

.booking__submit {
    width: 100%;
}

/* ── Booking SMS step ─────────────────────────────────────────── */
.booking__sms-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.booking__sms-input {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.3em;
}

.booking__verify {
    width: 100%;
    margin-top: 16px;
}

/* ── Booking Success ──────────────────────────────────────────── */
.booking__success {
    text-align: center;
    padding: 24px 0;
}

.booking__success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--success);
    color: #fff;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.booking__success-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   NEAREST SLOT BLOCK
   ══════════════════════════════════════════════════════════════ */
.nearest-slot {
    background: var(--primary-light);
    border: 2px solid rgba(21,101,192,0.15);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
}

.nearest-slot__text {
    font-size: 0.9375rem;
    color: var(--text);
    margin-bottom: 12px;
}

.nearest-slot__time {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* ══════════════════════════════════════════════════════════════
   URGENT BLOCK
   ══════════════════════════════════════════════════════════════ */
.urgent {
    background: #FFF3E0;
    border: 2px solid rgba(255,111,0,0.2);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.urgent__title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.urgent__text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   LAB REQUIREMENTS
   ══════════════════════════════════════════════════════════════ */
.lab-requirements {
    padding: 20px 0;
}
.lab-requirements__card {
    background: #FFF0F0;
    border: 2px solid rgba(211,47,47,0.3);
    border-radius: 14px;
    padding: 20px 24px;
}
.lab-requirements__title {
    font-size: 20px;
    font-weight: 700;
    color: #D32F2F;
    margin: 0 0 10px;
    font-family: inherit;
}
.lab-requirements__note {
    font-size: 14px;
    color: #111827;
    line-height: 1.7;
    margin-bottom: 14px;
}
.lab-requirements__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.lab-requirements__item {
    background: #fff;
    border: 2px solid #A0AEC0;
    border-radius: 12px;
    padding: 14px 16px;
}
.lab-requirements__item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.lab-requirements__item-name {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 15px;
    color: #111827;
}
.lab-requirements__drop {
    flex-shrink: 0;
}
.lab-requirements__item-price {
    font-size: 18px;
    font-weight: 700;
    color: #1565C0;
    white-space: nowrap;
    flex-shrink: 0;
}
.lab-requirements__item-time {
    font-size: 12px;
    color: #7C8BA0;
    margin-top: 4px;
}
@media (max-width: 640px) {
    .lab-requirements__card {
        padding: 16px;
    }
    .lab-requirements__title {
        font-size: 18px;
    }
    .lab-requirements__grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   ADDITIONAL SERVICES
   ══════════════════════════════════════════════════════════════ */
.additional-services {
    padding: 32px 0;
    background: #EDF1F5;
}
.additional-services__title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 14px;
    font-family: inherit;
}
.additional-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}
.additional-services__item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid #A0AEC0;
    border-radius: 12px;
    padding: 14px 16px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.additional-services__icon {
    font-size: 24px;
    flex-shrink: 0;
}
.additional-services__info {
    flex: 1;
}
.additional-services__name {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    line-height: 1.3;
}
.additional-services__price {
    font-size: 16px;
    font-weight: 700;
    color: #1565C0;
    white-space: nowrap;
    flex-shrink: 0;
}
@media (max-width: 640px) {
    .additional-services {
        padding: 20px 0;
    }
    .additional-services__grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   SINGLE SERVICE PAGE
   ══════════════════════════════════════════════════════════════ */
.service-single__hero {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #E1F5FE 100%);
    padding: 32px 0;
}

.service-single__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

@media (min-width: 768px) {
    .service-single__title {
        font-size: 2rem;
    }
}

/* ── Hero Badges (single-service) ─────────────────────────────── */
.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 5px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    background: #E3F2FD;
    color: #1565C0;
    border: 1.5px solid rgba(21,101,192,0.15);
}
.hero__badge-icon {
    flex-shrink: 0;
    vertical-align: middle;
}

.hero__badge--warning {
    background: #FFF0F0;
    color: #D32F2F;
    border-color: rgba(211,47,47,0.2);
}

.hero__badge--popular {
    background: #FFF3E0;
    color: #E65100;
    border-color: rgba(230,81,0,0.2);
}

.service-single__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.service-single__price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.service-single__content {
    padding: 32px 0;
}
.service-single__content h2,
.service-single__content h3 {
    margin-top: 24px;
    margin-bottom: 12px;
}
.service-single__content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.service-single__content ul,
.service-single__content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}
.service-single__content li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 6px;
    list-style: disc;
}
.service-single__content ol li {
    list-style: decimal;
}

/* ══════════════════════════════════════════════════════════════
   SINGLE DOCTOR PAGE
   ══════════════════════════════════════════════════════════════ */
.doctor-single__hero {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    padding: 32px 0;
}

.doctor-single__layout {
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

.doctor-single__photo {
    width: 200px;
    height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.5);
}
.doctor-single__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-single__info h1 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.doctor-single__position {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.doctor-single__experience {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.doctor-single__content {
    padding: 32px 0;
}
.doctor-single__content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════
   SINGLE SYMPTOM PAGE
   ══════════════════════════════════════════════════════════════ */
.symptom-single__content {
    padding: 32px 0;
}
.symptom-single__content h1 {
    margin-bottom: 16px;
}
.symptom-single__content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}

/* ══════════════════════════════════════════════════════════════
   SINGLE DISEASE PAGE
   ══════════════════════════════════════════════════════════════ */
.disease-single__content {
    padding: 32px 0;
}
.disease-single__content h1 {
    margin-bottom: 16px;
}
.disease-single__content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.disease-single__content ul,
.disease-single__content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}
.disease-single__content li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 6px;
    list-style: disc;
}

/* ══════════════════════════════════════════════════════════════
   ARCHIVE / CATALOG PAGES
   ══════════════════════════════════════════════════════════════ */
.archive-header {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    padding: 32px 0;
}

.archive-header__title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.archive-header__desc {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════════════════════════════
   SPECIAL PAGES (Kontakty, Zapis, Akcii, etc.)
   ══════════════════════════════════════════════════════════════ */
.page-content {
    padding: 32px 0;
}
.page-content h1 {
    margin-bottom: 16px;
}
.page-content h2 {
    margin-top: 24px;
    margin-bottom: 12px;
}
.page-content p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 16px;
}
.page-content ul,
.page-content ol {
    padding-left: 20px;
    margin-bottom: 16px;
}
.page-content li {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 6px;
    list-style: disc;
}
.page-content ol li {
    list-style: decimal;
}
.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.page-content th,
.page-content td {
    padding: 10px 14px;
    border: 1px solid var(--border);
    font-size: 0.875rem;
    text-align: left;
}
.page-content th {
    background: #f8f9fb;
    font-weight: 600;
    color: var(--text);
}
.page-content td {
    color: var(--text-muted);
}

/* ══════════════════════════════════════════════════════════════
   FORM INLINE (Reusable)
   ══════════════════════════════════════════════════════════════ */
.form-inline {
    background: var(--primary-light);
    border: 2px solid rgba(21,101,192,0.15);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}

.form-inline__title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.form-inline__field {
    margin-bottom: 12px;
}

.form-inline__field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.form-inline__field input,
.form-inline__field select,
.form-inline__field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    background: var(--white);
    color: var(--text);
    outline: none;
    transition: border-color var(--transition);
}
.form-inline__field input:focus,
.form-inline__field select:focus,
.form-inline__field textarea:focus {
    border-color: var(--primary);
}

.form-inline__field textarea {
    min-height: 100px;
    resize: vertical;
}

/* ══════════════════════════════════════════════════════════════
   404 PAGE
   ══════════════════════════════════════════════════════════════ */
.error-404 {
    text-align: center;
    padding: 80px 16px;
}

.error-404__code {
    font-size: 6rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1;
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.error-404__title {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.error-404__text {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ══════════════════════════════════════════════════════════════
   GLOBAL FORM ELEMENTS
   ══════════════════════════════════════════════════════════════ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="search"],
input[type="url"],
input[type="number"],
input[type="date"],
select,
textarea {
    font-family: 'Montserrat', sans-serif;
}

/* Remove default search decoration */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    appearance: none;
}

/* ══════════════════════════════════════════════════════════════
   BOOKING WIDGET (Inline — page-zapis.php)
   ══════════════════════════════════════════════════════════════ */
.booking-widget {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px 20px;
}

@media (max-width: 640px) {
    .booking-widget {
        padding: 24px 16px;
    }
}

.booking-step {
    display: none;
}

.booking-step.active {
    display: block;
}

.booking-step h2 {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

@media (max-width: 640px) {
    .booking-step h2 {
        font-size: 22px;
    }
}

.booking-step__subtitle {
    font-size: 14px;
    color: #475569;
    text-align: center;
    margin-bottom: 20px;
}

/* ── Booking Progress Bar ────────────────────────────────────── */
.booking-progress {
    margin-bottom: 28px;
}

.booking-progress__bar {
    height: 4px;
    background: #E2E8F0;
    border-radius: 2px;
    margin-bottom: 12px;
    overflow: hidden;
}

.booking-progress__fill {
    height: 100%;
    background: #1565C0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.booking-progress__steps {
    display: flex;
    justify-content: space-between;
}

.booking-progress__step {
    font-size: 12px;
    color: #A0AEC0;
    font-weight: 600;
}

.booking-progress__step.active {
    color: #1565C0;
}

.booking-progress__step.done {
    color: #2E7D32;
}

/* ── Booking Search ──────────────────────────────────────────── */
.booking-search {
    position: relative;
    margin-bottom: 16px;
}

.booking-search input {
    width: 100%;
    padding: 14px 14px 14px 44px;
    border-radius: 12px;
    border: 2px solid #A0AEC0;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}

.booking-search input:focus {
    border-color: #1565C0;
}

.booking-search__icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #7C8BA0;
}

/* ── Booking Service Items ───────────────────────────────────── */
.booking-services-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 500px;
    overflow-y: auto;
}

.booking-service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    margin-bottom: 8px;
    font-family: inherit;
    text-align: left;
    transition: border-color 0.15s;
}

.booking-service-item:hover {
    border-color: #1565C0;
}

.booking-service-item.is-popular {
    border-color: #FF6F00;
}

.booking-service-item__info {
    flex: 1;
    min-width: 0;
}

.booking-service-item__name {
    font-weight: 700;
    font-size: 16px;
    color: #111827;
}

.booking-service-item__meta {
    font-size: 13px;
    color: #7C8BA0;
    margin-top: 2px;
}

.booking-service-item__price {
    font-weight: 700;
    font-size: 16px;
    color: #1565C0;
    margin-right: 8px;
    white-space: nowrap;
    flex-shrink: 0;
}

.booking-service-item__arrow {
    flex-shrink: 0;
    color: #A0AEC0;
}

/* ── Booking Days Grid ───────────────────────────────────────── */
.booking-days {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .booking-days {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── Calendar Slot ───────────────────────────────────────────── */
.booking-day--calendar {
    border-style: dashed;
    color: #1565C0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.booking-day--calendar svg {
    color: #1565C0;
}

.booking-day--calendar:hover {
    border-color: #1565C0;
    background: #E3F2FD;
}

/* ── Mini Calendar ───────────────────────────────────────────── */
.booking-calendar {
    display: none;
    margin-bottom: 20px;
}

.booking-calendar.is-open {
    display: block;
}

.booking-calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.booking-calendar__title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
}

.booking-calendar__nav {
    background: none;
    border: 2px solid #A0AEC0;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: inherit;
    transition: border-color 0.15s;
}

.booking-calendar__nav:hover {
    border-color: #1565C0;
    color: #1565C0;
}

.booking-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-bottom: 4px;
}

.booking-calendar__wd {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    color: #7C8BA0;
    padding: 4px 0;
}

.booking-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.booking-calendar__cell {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    background: none;
    font-family: inherit;
    font-size: 14px;
    color: #A0AEC0;
    cursor: default;
    padding: 0;
}

.booking-calendar__cell--empty {
    visibility: hidden;
}

.booking-calendar__cell--past {
    color: #CBD5E1;
}

.booking-calendar__cell--available {
    color: #111827;
    font-weight: 600;
    cursor: pointer;
    background: #F0F7FF;
    border: 2px solid transparent;
    transition: border-color 0.15s, background 0.15s;
}

.booking-calendar__cell--available:hover {
    border-color: #1565C0;
    background: #E3F2FD;
}

.booking-calendar__cell--today {
    border: 2px solid #1565C0;
}

.booking-calendar__cell--selected {
    background: #1565C0 !important;
    color: #fff !important;
    border-color: #1565C0 !important;
}

.booking-day {
    border: 2px solid #A0AEC0;
    border-radius: 12px;
    padding: 14px 8px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    font-family: inherit;
    transition: border-color 0.15s;
}

.booking-day:hover,
.booking-day.selected {
    border-color: #1565C0;
    background: #E3F2FD;
}

.booking-day__label {
    font-weight: 700;
    font-size: 15px;
    color: #111827;
}

.booking-day__date {
    font-size: 13px;
    color: #475569;
}

.booking-day__slots {
    font-size: 12px;
    color: #2E7D32;
    font-weight: 600;
    margin-top: 4px;
}

/* ── Booking Times Grid ──────────────────────────────────────── */
.booking-times {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

@media (max-width: 640px) {
    .booking-times {
        grid-template-columns: repeat(3, 1fr);
    }
}

.booking-time {
    border: 2px solid #A0AEC0;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    cursor: pointer;
    background: #fff;
    font-weight: 600;
    font-size: 16px;
    color: #111827;
    font-family: inherit;
    transition: border-color 0.15s;
}

.booking-time:hover,
.booking-time.selected {
    border-color: #1565C0;
    background: #E3F2FD;
}

.booking-time.is-taken {
    background: #FAFAFA;
    border-color: #E2E8F0;
    color: #A0AEC0;
    cursor: default;
    opacity: 0.5;
}

.booking-time.is-taken span {
    display: block;
    font-size: 10px;
    color: #A0AEC0;
    font-weight: 400;
}

/* ── Booking Summary ─────────────────────────────────────────── */
.booking-summary {
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 16px 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #475569;
    line-height: 2;
}

/* ── Booking Form Fields ─────────────────────────────────────── */
.booking-form {
    margin-bottom: 16px;
}

.booking-field {
    margin-bottom: 14px;
}

.booking-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.booking-field input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid #A0AEC0;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

.booking-field input:focus {
    border-color: #1565C0;
}

.booking-field__hint {
    display: block;
    font-size: 12px;
    color: #7C8BA0;
    margin-top: 4px;
}

.booking-field__error {
    display: none;
    font-size: 13px;
    color: #D32F2F;
    margin-top: 4px;
    font-weight: 500;
}

/* ── Booking Consent ─────────────────────────────────────────── */
.booking-consent {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 13px;
    color: #475569;
    margin-bottom: 16px;
    cursor: pointer;
}

.booking-consent input {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.booking-consent a,
.booking-consent__link {
    color: #0D47A1;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
    transition: color 0.15s;
}

.booking-consent a:hover,
.booking-consent a:focus,
.booking-consent__link:hover,
.booking-consent__link:focus {
    color: #1565C0;
    text-decoration-thickness: 2px;
}

/* ── Booking Submit Button ───────────────────────────────────── */
.booking-submit {
    width: 100%;
    background: #A0AEC0;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 700;
    cursor: default;
    font-family: inherit;
    transition: background 0.15s;
}

.booking-submit:not([disabled]) {
    background: #1565C0;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(21,101,192,0.25);
}

/* ── Booking Back Button ─────────────────────────────────────── */
.booking-back {
    display: block;
    margin-top: 16px;
    background: none;
    border: none;
    color: #1565C0;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}

/* ══════════════════════════════════════════════════════════════
   BOOKING CONFIRM MODAL (pre-submit)
   ══════════════════════════════════════════════════════════════ */
.booking-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    background: rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s, visibility 0s 0.25s;
}

.booking-confirm-overlay.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.25s, visibility 0s;
}

.booking-confirm-modal {
    position: relative;
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px 24px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    border-top: 4px solid #1565C0;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.25s, opacity 0.25s;
}

.booking-confirm-overlay.is-open .booking-confirm-modal {
    transform: translateY(0);
    opacity: 1;
}

.booking-confirm-modal.is-contrast {
    border-top-color: #D32F2F;
}

@media (max-width: 639px) {
    .booking-confirm-modal {
        border-radius: 16px 16px 0 0;
        max-height: 95vh;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        max-width: 100%;
        transform: translateY(100%);
    }
    .booking-confirm-overlay.is-open .booking-confirm-modal {
        transform: translateY(0);
    }
}

.booking-confirm-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #7C8BA0;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    line-height: 1;
}

.booking-confirm-modal__close:hover {
    background: #f0f2f5;
}

.booking-confirm-modal__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E3F2FD;
    color: #1565C0;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.booking-confirm-modal.is-contrast .booking-confirm-modal__icon {
    background: #FFEBEE;
    color: #D32F2F;
}

.booking-confirm-modal__title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.booking-confirm-modal.is-contrast .booking-confirm-modal__title {
    color: #C62828;
}

.booking-confirm-modal__items {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.booking-confirm-modal__item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 16px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s;
    font-size: 14px;
    line-height: 1.5;
    color: #334155;
}

.booking-confirm-modal__item:hover {
    border-color: #A0AEC0;
}

.booking-confirm-modal.is-contrast .booking-confirm-modal__item {
    border-color: #FFCDD2;
    background: #FFF5F5;
}

.booking-confirm-modal.is-contrast .booking-confirm-modal__item:hover {
    border-color: #EF9A9A;
}

.booking-confirm-modal__item ul {
    margin: 8px 0 0;
    padding-left: 20px;
    list-style: disc;
}

.booking-confirm-modal__item ul li {
    margin-bottom: 2px;
}

.booking-confirm-modal__item strong {
    font-weight: 700;
    color: #111827;
}

.booking-confirm-modal.is-contrast .booking-confirm-modal__item strong {
    color: #C62828;
}

.booking-confirm-modal__item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 1px;
    flex-shrink: 0;
    accent-color: #1565C0;
}

.booking-confirm-modal.is-contrast .booking-confirm-modal__item input[type="checkbox"] {
    accent-color: #D32F2F;
}

.booking-confirm-modal__submit {
    width: 100%;
    background: #A0AEC0;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    cursor: default;
    font-family: inherit;
    transition: background 0.15s;
}

.booking-confirm-modal__submit:not([disabled]) {
    background: #1565C0;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(21,101,192,0.25);
}

.booking-confirm-modal.is-contrast .booking-confirm-modal__submit:not([disabled]) {
    background: #D32F2F;
    box-shadow: 0 4px 16px rgba(211,47,47,0.25);
}

/* ══════════════════════════════════════════════════════════════
   PRINT STYLES
   ══════════════════════════════════════════════════════════════ */
@media print {
    .top-bar,
    .site-header,
    .mobile-header,
    .mobile-menu,
    .sticky-bar,
    .booking,
    .announcement-bar,
    .cta {
        display: none !important;
    }

    body {
        padding-bottom: 0;
        color: #000;
        background: #fff;
    }

    .hero {
        background: none !important;
        padding: 16px 0;
    }

    .hero__bg {
        display: none;
    }

    .site-footer {
        background: #fff;
        color: #333;
        border-top: 1px solid #ccc;
    }

    a {
        color: #000;
    }
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE: Desktop Enhancements (768px+)
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }

    body {
        padding-bottom: 0;
    }
}

/* ══════════════════════════════════════════════════════════════
   DESKTOP SCALE-UP (1024px+)
   Крупнее, читабельнее, выразительнее — без изменения мобилки
   ══════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {

    /* ── Base typography ─────────────────────────────────────── */
    body {
        font-size: 1.0625rem;
        line-height: 1.7;
    }
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.375rem; }

    .container {
        max-width: 1280px;
        padding: 0 32px;
    }

    /* ── Sections ────────────────────────────────────────────── */
    .section {
        padding: 64px 0;
    }
    .section__title {
        font-size: 2.125rem;
        margin-bottom: 32px;
    }

    /* ── Buttons ─────────────────────────────────────────────── */
    .btn {
        min-height: 52px;
        padding: 14px 28px;
        font-size: 1rem;
    }
    .btn--lg {
        min-height: 56px;
        padding: 16px 36px;
        font-size: 1.0625rem;
    }
    .hero__actions .btn,
    .cta__actions .btn {
        min-height: 56px;
        font-size: 1.0625rem;
        padding: 14px 32px;
    }

    /* ── Announcement bar ────────────────────────────────────── */
    .announcement-bar {
        font-size: 1rem;
        padding: 14px 20px;
    }

    /* ── Hero ────────────────────────────────────────────────── */
    .hero {
        padding: 64px 0;
    }
    .hero__subtitle {
        font-size: 1.375rem;
    }
    .hero__price {
        font-size: 2.5rem;
    }
    .hero__info {
        font-size: 1.0625rem;
    }

    /* ── Service filters (tabs) ──────────────────────────────── */
    .services__filters {
        gap: 10px;
        margin-bottom: 28px;
    }
    .services__filter-tab {
        padding: 12px 28px;
        font-size: 1rem;
    }

    /* ── Services header & subtitle ──────────────────────────── */
    .services__subtitle {
        font-size: 1.0625rem;
    }

    /* ── Service cards ───────────────────────────────────────── */
    .services__grid {
        gap: 24px;
    }
    .service-card {
        padding: 20px 24px;
        border-radius: 16px;
    }
    .service-card__name {
        font-size: 1.25rem;
    }
    .service-card__meta {
        font-size: 0.875rem;
        gap: 4px;
    }
    .service-card__meta-icon {
        width: 16px;
        height: 16px;
    }
    .service-card__price-current {
        font-size: 1.5rem;
    }
    .service-card__price-old {
        font-size: 0.875rem;
    }
    .service-card__alert {
        font-size: 0.875rem;
        padding: 8px 14px;
    }
    .service-card__icon {
        width: 56px;
        height: 56px;
    }
    .service-card__icon img {
        width: 36px;
        height: 36px;
    }
    .service-card__btn-rec,
    .service-card__btn-q {
        padding: 13px 0;
        font-size: 0.9375rem;
        border-radius: 12px;
    }

    /* ── Symptoms cards ──────────────────────────────────────── */
    .symptoms__card {
        padding: 20px;
        gap: 10px;
        border-radius: 16px;
    }
    .symptoms__icon {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }
    .symptoms__icon img,
    .symptoms__icon svg {
        width: 40px;
        height: 40px;
    }
    .symptoms__label {
        font-size: 1rem;
    }
    .symptoms__toggle {
        font-size: 1rem;
        padding: 12px 28px;
    }
    .symptoms__subtitle {
        font-size: 1.125rem;
    }

    /* ── Process steps ───────────────────────────────────────── */
    .process__step {
        padding: 14px 10px 10px;
        border-radius: 12px;
    }
    .process__step-number {
        width: 34px;
        height: 34px;
        font-size: 0.9rem;
        margin-bottom: 8px;
    }
    .process__step-title {
        font-size: 0.9rem;
        margin-bottom: 4px;
    }
    .process__step-text {
        font-size: 0.8rem;
    }
    .process__motivation {
        padding: 28px 36px;
        gap: 18px;
        margin-top: 20px;
    }
    .process__motivation-icon {
        font-size: 42px;
    }
    .process__motivation-title {
        font-size: 1.25rem;
    }
    .process__motivation-desc {
        font-size: 1rem;
    }

    /* ── About section ───────────────────────────────────────── */
    .about__photo {
        width: 440px;
        height: 300px;
    }
    .about__text p {
        font-size: 1.0625rem;
    }
    .about__stat {
        padding: 16px 18px;
    }
    .about__stat-value {
        font-size: 1.75rem;
    }
    .about__stat-label {
        font-size: 0.875rem;
    }

    /* ── Equipment ───────────────────────────────────────────── */
    .equipment__summary {
        font-size: 1.0625rem;
    }
    .equipment__name {
        font-size: 1.25rem;
    }
    .equipment__desc {
        font-size: 1rem;
    }
    .equipment__info {
        padding: 36px;
    }
    .equipment__spec {
        font-size: 0.9375rem;
        padding: 10px 14px;
    }

    /* ── Staff / Doctors ─────────────────────────────────────── */
    .staff__grid {
        gap: 20px;
    }
    .staff__card-photo {
        height: 220px;
    }
    .staff__card-info {
        padding: 14px 16px 16px;
    }
    .staff__card-name {
        font-size: 1rem;
    }
    .staff__card-position {
        font-size: 0.8125rem;
    }
    .staff__card-experience {
        font-size: 0.8125rem;
    }

    /* ── Reviews ─────────────────────────────────────────────── */
    .reviews-section {
        padding: 64px 0;
    }
    .reviews-rating {
        font-size: 1rem;
    }
    .reviews-rating__value {
        font-size: 1.25rem;
    }
    .reviews-header__link {
        font-size: 1rem;
    }
    .reviews-grid {
        gap: 20px;
    }
    .review-card {
        padding: 24px;
        border-radius: 16px;
    }
    .review-card__author {
        font-size: 1.125rem;
    }
    .review-card__text {
        font-size: 1rem;
        line-height: 1.65;
    }
    .review-card__date,
    .review-card__source {
        font-size: 0.8125rem;
    }

    /* ── FAQ Accordion ──────────────────────────────────────── */
    .faq-list,
    .fears__list {
        max-width: 900px;
    }
    .faq-item__toggle {
        padding: 20px 24px;
    }
    .faq-item__question {
        font-size: 1.0625rem;
    }
    .faq-item.is-open .faq-item__answer {
        padding: 0 24px 20px;
    }
    .faq-item__answer p {
        font-size: 1rem;
        line-height: 1.75;
    }

    /* ── CTA ─────────────────────────────────────────────────── */
    .cta__title {
        font-size: 2rem;
        margin-bottom: 10px;
    }
    .cta__subtitle {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }
    .cta__actions .btn {
        max-width: 240px;
    }

    /* ── Tax Return ──────────────────────────────────────────── */
    .tax-return__title {
        font-size: 1.75rem;
    }
    .tax-return__text {
        font-size: 1.0625rem;
    }

    /* ── Route ───────────────────────────────────────────────── */
    .route__text {
        font-size: 1.0625rem;
    }

    /* ── Footer ──────────────────────────────────────────────── */
    .site-footer {
        padding: 56px 0 28px;
    }
    .site-footer__brand {
        font-size: 1.25rem;
        gap: 12px;
    }
    .site-footer__logo {
        width: 48px;
        height: 48px;
    }
    .site-footer__phone {
        font-size: 1.125rem;
    }
    .site-footer__heading {
        font-size: 1.0625rem;
    }
    .site-footer__nav a {
        font-size: 0.9375rem;
    }

    /* ── Hero badges ─────────────────────────────────────────── */
    .hero__badge {
        font-size: 0.875rem;
        padding: 6px 14px;
        gap: 6px;
    }
    .hero__badge-icon {
        width: 18px;
        height: 18px;
    }

    /* ── Badges ──────────────────────────────────────────────── */
    .badge {
        font-size: 0.875rem;
        padding: 7px 16px;
    }

    /* ── Search ──────────────────────────────────────────────── */
    .services__search {
        max-width: 600px;
    }
    .services__search-input {
        font-size: 1rem;
        padding: 14px 16px 14px 44px;
    }
}

/* ══════════════════════════════════════════════════════════════
   FOCUS STYLES (Accessibility)
   ══════════════════════════════════════════════════════════════ */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) {
    outline: none;
}

/* ══════════════════════════════════════════════════════════════
   SELECTION
   ══════════════════════════════════════════════════════════════ */
::selection {
    background: var(--primary-light);
    color: var(--text);
}

/* ══════════════════════════════════════════════════════════════
   V18 SECTION BACKGROUNDS (alternating white/bgAlt)
   ══════════════════════════════════════════════════════════════ */
.services.section {
    background: #F5F8FB;
}
.process.section {
    background: #F5F8FB;
}
.staff.section {
    background: #F5F8FB;
}
.route.section {
    background: #F5F8FB;
}

/* ══════════════════════════════════════════════════════════════
   V18 GLOBAL MOBILE VISUAL REFINEMENTS
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 639px) {
    .section {
        padding: 28px 0;
    }

    .section__title {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 20px;
    }
}

/* ══════════════════════════════════════════════════════════════
   V18 FEARS — centered title with shield badge
   ══════════════════════════════════════════════════════════════ */
.fears .section__title {
    text-align: center;
}

.fears__header {
    text-align: center;
    margin-bottom: 20px;
}

.fears__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fears__header .section__title {
    margin-bottom: 0;
}

.fears__list.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════════════════════════
   CONTRAINDICATIONS
   ══════════════════════════════════════════════════════════════ */
.contraindications__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}
@media (min-width: 768px) {
    .contraindications__grid {
        grid-template-columns: 1fr 1fr;
    }
    /* Контраст-блок на всю ширину */
    .contraindications__card:last-child:nth-child(odd) {
        grid-column: 1 / -1;
    }
}

.contraindications__card {
    border-radius: 12px;
    padding: 16px 20px;
}
.contraindications__card--absolute {
    background: #FFF0F0;
    border: 2px solid rgba(211,47,47,0.3);
}
.contraindications__card--relative {
    background: #FFFDE7;
    border: 2px solid rgba(245,180,0,0.4);
}

.contraindications__heading {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.9375rem;
    margin-bottom: 10px;
    line-height: 1.3;
}
.contraindications__card--absolute .contraindications__heading {
    color: #C62828;
}
.contraindications__card--absolute .contraindications__heading-icon {
    color: #D32F2F;
}
.contraindications__card--relative .contraindications__heading {
    color: #E65100;
}
.contraindications__card--relative .contraindications__heading-icon {
    color: #F9A825;
}

.contraindications__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.contraindications__list li {
    position: relative;
    padding-left: 18px;
    font-size: 0.8125rem;
    color: #1A2332;
    line-height: 1.55;
}
.contraindications__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 7px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
}
.contraindications__card--absolute .contraindications__list li::before {
    background: #D32F2F;
}
.contraindications__card--relative .contraindications__list li::before {
    background: #F9A825;
}

.contraindications__footnote {
    margin-top: 14px;
    padding: 12px 16px;
    background: #F5F8FB;
    border-radius: 10px;
    border: 1.5px solid #E2E8F0;
    font-size: 0.8125rem;
    color: #1A2332;
    line-height: 1.6;
    font-weight: 500;
}

@media (min-width: 1024px) {
    .contraindications__card {
        padding: 20px 24px;
    }
    .contraindications__heading {
        font-size: 1rem;
    }
    .contraindications__list li {
        font-size: 0.875rem;
    }
    .contraindications__footnote {
        font-size: 0.875rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   PREPARATION (structured prep block)
   ══════════════════════════════════════════════════════════════ */
.preparation__card {
    background: #FFF8E1;
    border: 2px solid rgba(245,180,0,0.35);
    border-radius: 12px;
    padding: 20px 24px;
}
.preparation__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.preparation__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #1A2332;
    line-height: 1.55;
    font-weight: 500;
}
.preparation__check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #E65100;
    margin-top: 1px;
}
.preparation__note {
    margin-top: 14px;
    padding-top: 12px;
    border-top: 1.5px solid rgba(245,180,0,0.3);
    font-size: 0.8125rem;
    color: #7B5800;
    line-height: 1.6;
    font-weight: 600;
    font-style: italic;
}
@media (min-width: 1024px) {
    .preparation__card {
        padding: 24px 28px;
    }
    .preparation__item {
        font-size: 0.9375rem;
    }
    .preparation__note {
        font-size: 0.875rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   WHAT-SHOWS (Pathology List)
   ══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════
   FEARS STRIP (compact reassurance bar)
   ══════════════════════════════════════════════════════════════ */
.fears-strip {
    padding: 20px 0;
    background: #F0FAF0;
    border-top: 1.5px solid rgba(46,125,50,0.15);
    border-bottom: 1.5px solid rgba(46,125,50,0.15);
}
.fears-strip__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}
@media (min-width: 640px) {
    .fears-strip__grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (min-width: 1024px) {
    .fears-strip__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 12px;
    }
}
.fears-strip__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 10px;
    border: 1.5px solid rgba(46,125,50,0.15);
}
.fears-strip__icon {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    color: #2E7D32;
    margin-top: 1px;
}
.fears-strip__title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1A2332;
    line-height: 1.35;
    margin-bottom: 3px;
}
.fears-strip__text {
    font-size: 0.8125rem;
    color: #546178;
    line-height: 1.5;
}
@media (min-width: 1024px) {
    .fears-strip {
        padding: 28px 0;
    }
    .fears-strip__item {
        padding: 16px 18px;
    }
    .fears-strip__icon {
        width: 28px;
        height: 28px;
    }
    .fears-strip__title {
        font-size: 0.9375rem;
    }
    .fears-strip__text {
        font-size: 0.875rem;
    }
}

/* ══════════════════════════════════════════════════════════════
   WHAT-SHOWS (Pathology List)
   ══════════════════════════════════════════════════════════════ */
.what-shows__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    background: #F5F8FB;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid #E2E8F0;
}
@media (min-width: 768px) {
    .what-shows__grid {
        grid-template-columns: 1fr 1fr;
    }
}

.what-shows__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: #fff;
    transition: background var(--transition);
}
.what-shows__item:hover {
    background: #F0F7FF;
}

.what-shows__icon {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.what-shows__text {
    font-size: 0.875rem;
    color: var(--text);
    line-height: 1.4;
    font-weight: 500;
}
@media (min-width: 1024px) {
    .what-shows__item {
        padding: 11px 18px;
    }
    .what-shows__text {
        font-size: 0.9375rem;
    }
}

/* Будущее: если элемент станет ссылкой */
a.what-shows__item {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}
a.what-shows__item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}
a.what-shows__item:hover .what-shows__icon {
    color: var(--primary);
}
a.what-shows__item:hover .what-shows__text {
    color: var(--primary);
}

/* Примечание о контрасте */
.what-shows__note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-muted);
}
.what-shows__note svg {
    flex-shrink: 0;
    margin-top: 2px;
}
.what-shows__note--contrast {
    background: #E8F5E9;
    color: #2E7D32;
    border: 1px solid rgba(46,125,50,0.2);
}
@media (min-width: 1024px) {
    .what-shows__note {
        font-size: 0.9375rem;
        padding: 16px 20px;
    }
}

/* ══════════════════════════════════════════════════════════════
   SMOOTH TRANSITIONS FOR REDUCED MOTION
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 640px) {
    .faq-item__question {
        font-size: 15px;
    }
}

/* ══════════════════════════════════════════════════════════════
   RELATED SERVICES
   ══════════════════════════════════════════════════════════════ */
.related-services {
    padding: 48px 0;
}
.related-services__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) {
    .related-services {
        padding: 28px 0;
    }
    .related-services__grid {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   SYMPTOM PAGE
   ══════════════════════════════════════════════════════════════ */
.symptom-hero {
    background: linear-gradient(160deg, #E1F5FE, #F0F7FF);
    padding: 44px 0;
}
.symptom-hero__breadcrumbs {
    font-size: 14px;
    color: #475569;
    margin-bottom: 12px;
}
.symptom-hero__breadcrumbs a {
    color: #1565C0;
    text-decoration: none;
}
.symptom-hero__layout {
    display: flex;
    gap: 36px;
    align-items: flex-start;
}
.symptom-hero__content {
    flex: 1;
}
.symptom-hero__content h1 {
    font-size: 44px;
    font-weight: 800;
    color: #111827;
    line-height: 1.1;
    margin-bottom: 14px;
    font-family: inherit;
}
.symptom-hero__desc {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}
.symptom-hero__icon {
    width: 240px;
    height: 240px;
    flex-shrink: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #E3F2FD, #F0F7FF);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #A0AEC0;
}
.symptom-hero__icon img {
    width: 120px;
    height: 120px;
}

/* Рекомендуемые исследования */
.symptom-recommended {
    padding: 48px 0;
}
.symptom-disclaimer {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: #FFF0F0;
    border: 2px solid rgba(211,47,47,0.3);
    border-radius: 12px;
    padding: 14px 18px;
    margin-top: 16px;
}
.symptom-disclaimer__icon {
    font-size: 20px;
    flex-shrink: 0;
}
.symptom-disclaimer__text {
    font-size: 13px;
    color: #D32F2F;
    line-height: 1.5;
    font-weight: 500;
}
.symptom-recommended__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Причины */
.symptom-causes {
    padding: 48px 0;
    background: #EDF1F5;
}
.symptom-causes__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
.symptom-causes__item {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 15px;
    color: #475569;
}
.symptom-causes__item::before {
    content: '✓';
    color: #2E7D32;
    font-weight: 700;
    flex-shrink: 0;
}

/* Когда срочно */
.symptom-urgent {
    padding: 20px 0;
}
.symptom-urgent__card {
    background: #FFF0F0;
    border: 2px solid rgba(211,47,47,0.3);
    border-radius: 14px;
    padding: 20px 24px;
}
.symptom-urgent__card h2 {
    font-size: 22px;
    font-weight: 700;
    color: #D32F2F;
    margin-bottom: 12px;
    font-family: inherit;
}
.symptom-urgent__card ul {
    margin: 0;
    padding-left: 20px;
    font-size: 15px;
    color: #111827;
    line-height: 2.2;
}

/* FAQ */
.symptom-faq {
    padding: 48px 0;
}
.symptom-faq .faq-item {
    border: 2px solid #A0AEC0;
    border-radius: 12px;
}
.symptom-faq .faq-item.active {
    border-color: #1565C0;
}

/* Похожие симптомы */
.symptom-related {
    padding: 48px 0;
}
.symptom-related__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 12px;
}
.symptom-related__card {
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: border-color 0.15s;
}
.symptom-related__card:hover {
    border-color: #1565C0;
}
.symptom-related__card-icon {
    width: 48px;
    height: 48px;
}
.symptom-related__card-name {
    font-weight: 700;
    font-size: 14px;
    color: #111827;
}

/* Mobile */
@media (max-width: 640px) {
    .symptom-hero {
        padding: 24px 0;
    }
    .symptom-hero__layout {
        display: block;
    }
    .symptom-hero__icon {
        display: none;
    }
    .symptom-hero__content h1 {
        font-size: 28px;
    }
    .symptom-hero__desc {
        font-size: 16px;
    }
    .symptom-recommended,
    .symptom-causes,
    .symptom-related {
        padding: 28px 0;
    }
    .symptom-faq {
        padding: 28px 0;
    }
    .symptom-recommended__grid {
        grid-template-columns: 1fr;
    }
    .symptom-causes__list {
        grid-template-columns: 1fr;
    }
    .symptom-related__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   CABINET PAGE
   ══════════════════════════════════════════════════════════════ */
.cabinet-form-wrapper {
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}
.cabinet-title {
    font-size: 38px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}
.cabinet-subtitle {
    font-size: 16px;
    color: #475569;
    margin-bottom: 28px;
}
.cabinet-form {
    background: #fff;
    border: 2px solid #A0AEC0;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}
.cabinet-field {
    margin-bottom: 16px;
    text-align: left;
}
.cabinet-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}
.cabinet-field input {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid #A0AEC0;
    font-size: 17px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
}
.cabinet-field input:focus {
    border-color: #1565C0;
}
.cabinet-hint {
    display: block;
    font-size: 12px;
    color: #7C8BA0;
    margin-top: 4px;
}
.cabinet-submit {
    width: 100%;
    background: #1565C0;
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 0;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    box-shadow: 0 4px 16px rgba(21,101,192,0.25);
    margin-top: 4px;
}
.cabinet-info {
    background: #fff;
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 20px 24px;
    text-align: left;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.cabinet-info p {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
}
.cabinet-info ul {
    margin: 0;
    padding-left: 20px;
    font-size: 14px;
    color: #475569;
    line-height: 2;
}

@media (max-width: 640px) {
    .cabinet-title { font-size: 28px; }
}

/* ══════════════════════════════════════════════════════════════
   CONTACTS PAGE
   ══════════════════════════════════════════════════════════════ */
/* Карта + Контакты */
.contacts-main { padding: 48px 0; }
@media (max-width: 640px) { .contacts-main { padding: 28px 0; } }

.contacts-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
@media (max-width: 768px) { .contacts-layout { grid-template-columns: 1fr; } }

.contacts-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px solid #EDF1F5;
}
.contacts-card__icon { font-size: 22px; flex-shrink: 0; }
.contacts-card__label { font-size: 13px; color: #7C8BA0; margin-bottom: 2px; }
.contacts-card__value { font-size: 16px; color: #111827; font-weight: 500; line-height: 1.5; }
.contacts-card__phone { font-size: 22px; font-weight: 700; color: #1565C0; text-decoration: none; }
.contacts-card__email { font-size: 16px; color: #1565C0; text-decoration: none; font-weight: 500; }
.quality-control {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 20px 24px;
    margin-top: 16px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.quality-control__icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: #F0F7FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.quality-control__content { flex: 1; }
.quality-control__title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}
.quality-control__desc {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 10px;
}
.quality-control__phone {
    display: block;
    font-size: 19px;
    font-weight: 700;
    color: #111827;
    text-decoration: none;
    margin-bottom: 4px;
}
.quality-control__email {
    display: block;
    font-size: 15px;
    color: #1565C0;
    text-decoration: none;
}
.quality-control__email:hover { text-decoration: underline; }

/* QR */
.contacts-qr {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 16px;
    padding: 16px;
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    background: #fff;
}
.contacts-qr__code img { border-radius: 8px; }
.contacts-qr__text { font-size: 14px; color: #475569; line-height: 1.5; }

/* Как проехать */
.contacts-route { padding: 48px 0; background: #EDF1F5; }
@media (max-width: 640px) { .contacts-route { padding: 28px 0; } }

.contacts-route h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* Табы */
.route-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    background: #fff;
    border-radius: 12px;
    padding: 4px;
    border: 2px solid #A0AEC0;
}
.route-tab {
    flex: 1;
    padding: 12px 0;
    border: none;
    border-radius: 10px;
    background: none;
    font-size: 15px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s, color 0.2s;
}
.route-tab.active {
    background: #1565C0;
    color: #fff;
    box-shadow: 0 2px 8px rgba(21,101,192,0.25);
}

.route-content { display: none; }
.route-content.active { display: block; }

.route-content__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 16px;
}
@media (max-width: 640px) { .route-content__layout { grid-template-columns: 1fr; } }

/* Фото входа */
.contacts-route__entrance-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 14px;
    border: 2px solid #A0AEC0;
}
.contacts-route__photo-placeholder {
    height: 260px;
    border-radius: 14px;
    background: linear-gradient(135deg, #E3F2FD, #F0F7FF);
    border: 2px solid #A0AEC0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #7C8BA0;
    font-size: 15px;
}

/* Шаги */
.contacts-route__step {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}
.contacts-route__step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1565C0, #42A5F5);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contacts-route__step span:last-child { font-size: 15px; color: #111827; }

/* Построить маршрут */
.contacts-route__builder {
    background: #fff;
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 20px;
}
.contacts-route__builder label {
    font-size: 14px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 8px;
    display: block;
}
.contacts-route__input-row { display: flex; gap: 8px; }
@media (max-width: 640px) { .contacts-route__input-row { flex-direction: column; } }

.contacts-route__input-row input {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    border: 2px solid #A0AEC0;
    font-size: 16px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
}
.contacts-route__btn {
    background: #1565C0;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

/* Карточки транспорта */
.route-public__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
@media (max-width: 640px) { .route-public__grid { grid-template-columns: 1fr; } }

.route-public__card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    border: 2px solid #A0AEC0;
    border-radius: 12px;
    padding: 14px 16px;
    background: #fff;
}
.route-public__badge { flex-shrink: 0; }
.route-public__title { font-size: 15px; font-weight: 700; color: #111827; margin-bottom: 4px; font-family: 'Montserrat', sans-serif; }
.route-public__routes { font-size: 14px; font-weight: 600; color: #1565C0; }
.route-public__stop { font-size: 14px; color: #475569; margin-top: 2px; }
.route-public__walk { font-size: 13px; color: #2E7D32; font-weight: 500; margin-top: 4px; }

.route-public__options h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.route-public-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin-bottom: 6px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 15px;
    color: #111827;
    background: #fff;
    border: 1.5px solid #E2E8F0;
    transition: background .15s, border-color .15s;
}
.route-public-option:hover { background: #F0F4FA; border-color: #1565C0; }
.route-public-option input[type="radio"] { accent-color: #1565C0; width: 18px; height: 18px; margin: 0; flex-shrink: 0; }
.route-public-option span { line-height: 1.3; }

/* Реквизиты */
.contacts-legal { padding: 48px 0; }
@media (max-width: 640px) { .contacts-legal { padding: 28px 0; } }

.contacts-legal__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
@media (max-width: 640px) { .contacts-legal__grid { grid-template-columns: 1fr; } }

.contacts-legal__card {
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
}
.contacts-legal__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}
.contacts-legal__text { font-size: 14px; color: #475569; line-height: 2; }

/* ══════════════════════════════════════════════════════════════
   Unified Page Hero (all inner pages)
   ══════════════════════════════════════════════════════════════ */
.page-hero {
    background: linear-gradient(135deg, #0D47A1, #1565C0, #42A5F5);
    padding: 44px 0;
    text-align: center;
}
.page-hero h1 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 8px;
}
.page-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    margin: 0;
}
@media (max-width: 640px) {
    .page-hero { padding: 24px 0; }
    .page-hero h1 { font-size: 28px; }
    .page-hero p { font-size: 15px; }
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: #111827;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 24px;
    text-align: center;
}
@media (max-width: 640px) { .section-title { font-size: 22px; margin-bottom: 16px; } }

/* ══════════════════════════════════════════════════════════════
   About Page (page-o-centre.php)
   ══════════════════════════════════════════════════════════════ */

/* Hero разделённый */
.about-hero {
    background: linear-gradient(160deg, #E1F5FE, #F0F7FF);
    padding: 60px 0;
}
@media (max-width: 640px) { .about-hero { padding: 32px 0; } }

.about-hero__layout {
    display: flex;
    align-items: center;
    gap: 40px;
}
@media (max-width: 768px) { .about-hero__layout { flex-direction: column; gap: 24px; } }

.about-hero__left { flex: 1; }
.about-hero__since {
    font-size: 72px;
    font-weight: 800;
    color: #1565C0;
    line-height: 1;
    font-family: 'Montserrat', sans-serif;
}
@media (max-width: 640px) { .about-hero__since { font-size: 48px; } }

.about-hero__tagline {
    font-size: 28px;
    font-weight: 600;
    color: #475569;
    margin-bottom: 16px;
}
@media (max-width: 640px) { .about-hero__tagline { font-size: 20px; } }

.about-hero__desc {
    font-size: 17px;
    color: #475569;
    line-height: 1.7;
}

.about-hero__divider {
    width: 3px;
    height: 200px;
    background: linear-gradient(180deg, #1565C0, #42A5F5, transparent);
    flex-shrink: 0;
    border-radius: 2px;
}
@media (max-width: 768px) { .about-hero__divider { display: none; } }

.about-hero__right { flex: 1; }
.about-hero__photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    border: 2px solid #A0AEC0;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.about-hero__photo-placeholder {
    height: 280px;
    border-radius: 16px;
    background: linear-gradient(135deg, #E3F2FD, #F0F7FF);
    border: 2px solid #A0AEC0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #7C8BA0;
    font-size: 15px;
}

/* Счётчики */
.about-counters {
    padding: 48px 0;
    background: #fff;
}
.about-counters__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
@media (max-width: 640px) { .about-counters__grid { grid-template-columns: 1fr 1fr; } }

.about-counter {
    text-align: center;
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 24px 16px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.about-counter__value {
    font-size: 42px;
    font-weight: 800;
    color: #1565C0;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}
@media (max-width: 640px) { .about-counter__value { font-size: 32px; } }

.about-counter__label {
    font-size: 14px;
    color: #475569;
    margin-top: 4px;
}

/* Таймлайн */
.about-timeline {
    padding: 48px 0;
    background: #EDF1F5;
}
@media (max-width: 640px) { .about-timeline { padding: 28px 0; } }

.about-timeline h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 32px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #1565C0, #42A5F5);
    border-radius: 2px;
}

.timeline__item {
    position: relative;
    margin-bottom: 24px;
}
.timeline__item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1565C0;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #1565C0;
}

.timeline__year {
    font-size: 14px;
    font-weight: 700;
    color: #1565C0;
    margin-bottom: 4px;
}
.timeline__card {
    background: #fff;
    border: 2px solid #A0AEC0;
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.timeline__title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}
.timeline__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

/* Оборудование */
.about-equipment {
    padding: 48px 0;
}
@media (max-width: 640px) { .about-equipment { padding: 28px 0; } }

.about-equipment h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.equipment-card {
    display: flex;
    gap: 24px;
    border: 2px solid #A0AEC0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
@media (max-width: 768px) { .equipment-card { flex-direction: column; } }

.equipment-card__photo {
    width: 400px;
    flex-shrink: 0;
}
@media (max-width: 768px) { .equipment-card__photo { width: 100%; } }

.equipment-card__photo img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
}
.equipment-card__photo-placeholder {
    height: 100%;
    min-height: 280px;
    background: linear-gradient(135deg, #E3F2FD, #F0F7FF);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #7C8BA0;
    font-size: 15px;
}

.equipment-card__info {
    padding: 24px;
    flex: 1;
}
.equipment-card__info h3 {
    font-size: 24px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}
.equipment-card__desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 20px;
}

.equipment-bars { margin-bottom: 16px; }
.equipment-bar { margin-bottom: 14px; }
.equipment-bar__label {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 4px;
}
.equipment-bar__track {
    height: 8px;
    background: #EDF1F5;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 2px;
}
.equipment-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #1565C0, #42A5F5);
    border-radius: 4px;
    transition: width 1s ease;
}
.equipment-bar__value {
    font-size: 13px;
    color: #475569;
}

.equipment-card__features {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #111827;
    font-weight: 500;
}

/* Принципы */
.about-principles {
    padding: 48px 0;
    background: #EDF1F5;
}
@media (max-width: 640px) { .about-principles { padding: 28px 0; } }

.about-principles h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.principles-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) { .principles-grid { grid-template-columns: 1fr; } }

.principle-card {
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 24px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    border-top: 4px solid transparent;
}
.principle-card--blue { border-top-color: #1565C0; }
.principle-card--green { border-top-color: #2E7D32; }
.principle-card--orange { border-top-color: #FF6F00; }

.principle-card__icon { font-size: 36px; margin-bottom: 12px; }
.principle-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}
.principle-card__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Лицензии */
.about-licenses {
    padding: 48px 0;
}
@media (max-width: 640px) { .about-licenses { padding: 28px 0; } }

.about-licenses h2 {
    font-size: 32px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.licenses-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.license-card {
    min-width: 220px;
    scroll-snap-align: start;
    flex-shrink: 0;
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.license-card__placeholder {
    height: 160px;
    background: linear-gradient(135deg, #E3F2FD, #F0F7FF);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #7C8BA0;
    font-size: 13px;
    padding: 10px;
}
.license-card__name {
    padding: 10px 14px 4px;
    font-size: 13px;
    font-weight: 600;
    color: #111827;
}
.license-card__meta {
    padding: 0 14px 10px;
    font-size: 11px;
    color: #7C8BA0;
}
a.license-card {
    text-decoration: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}
a.license-card:hover {
    border-color: #1565C0;
    box-shadow: 0 4px 16px rgba(21,101,192,0.15);
}

/* ══════════════════════════════════════════════════════════════
   Preparation Page (page-podgotovka-k-mrt.php)
   ══════════════════════════════════════════════════════════════ */
.prep-section { padding: 48px 0; }
.prep-section--alt { background: #EDF1F5; }
@media (max-width: 640px) { .prep-section { padding: 28px 0; } }

.prep-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) { .prep-grid { grid-template-columns: 1fr; } }

.prep-card {
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 24px 20px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    transition: border-color 0.2s;
}
.prep-card:hover { border-color: #1565C0; }
.prep-card__icon { margin-bottom: 12px; }
.prep-card__title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}
.prep-card__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.prep-areas {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.prep-area {
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.prep-area__header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: #F8FAFC;
    border-bottom: 1px solid #E5E7EB;
}
.prep-area__header h3 {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}
.prep-area__body {
    padding: 18px 20px;
}
.prep-area__body p { font-size: 14px; color: #475569; line-height: 1.6; margin-bottom: 8px; }
.prep-area__badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.prep-area__badge--green { background: #E8F5E9; color: #2E7D32; }
.prep-area__badge--orange { background: #FFF3E0; color: #E65100; }
.prep-area__badge--red { background: #FFEBEE; color: #C62828; }
.prep-area__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.prep-area__list li {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    padding: 4px 0 4px 20px;
    position: relative;
}
.prep-area__list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: #1565C0;
    font-weight: 700;
}

.prep-contra-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) { .prep-contra-grid { grid-template-columns: 1fr; } }

.prep-contra {
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}
.prep-contra h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}
.prep-contra ul { list-style: none; padding: 0; margin: 0; }
.prep-contra ul li {
    font-size: 14px;
    line-height: 1.6;
    padding: 4px 0 4px 20px;
    position: relative;
}
.prep-contra ul li::before {
    position: absolute;
    left: 0;
    font-weight: 700;
}
.prep-contra--absolute {
    background: #FFEBEE;
    border: 2px solid #EF9A9A;
}
.prep-contra--absolute h3 { color: #C62828; }
.prep-contra--absolute ul li { color: #B71C1C; }
.prep-contra--absolute ul li::before { content: '✕'; color: #C62828; }

.prep-contra--relative {
    background: #FFF3E0;
    border: 2px solid #FFCC80;
}
.prep-contra--relative h3 { color: #E65100; }
.prep-contra--relative ul li { color: #BF360C; }
.prep-contra--relative ul li::before { content: '!'; color: #E65100; }

/* ══════════════════════════════════════════════════════════════
   Staff Page (page-vrachi.php)
   ══════════════════════════════════════════════════════════════ */

.staff-section { padding: 48px 0; }
@media (max-width: 640px) { .staff-section { padding: 28px 0; } }

.staff-filters {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}
.staff-filter {
    padding: 9px 20px;
    border-radius: 20px;
    border: 2px solid #A0AEC0;
    background: #fff;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.2s;
}
.staff-filter.active {
    border-color: #1565C0;
    background: #E3F2FD;
    color: #1565C0;
}

.staff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
@media (max-width: 1024px) { .staff-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .staff-grid { grid-template-columns: 1fr; } }

/* Staff pagination */
.staff-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    flex-wrap: wrap;
}
.staff-pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 2px solid #A0AEC0;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #1565C0;
    text-decoration: none;
    background: #fff;
    transition: all 0.15s;
}
.staff-pagination .page-numbers:hover {
    border-color: #1565C0;
    background: #E3F2FD;
}
.staff-pagination .page-numbers.current {
    background: #1565C0;
    color: #fff;
    border-color: #1565C0;
}
.staff-pagination .page-numbers.dots {
    border: none;
    background: none;
    color: #A0AEC0;
}

.staff-card {
    border: 2px solid #A0AEC0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.staff-card:hover {
    border-color: #1565C0;
    box-shadow: 0 6px 24px rgba(21,101,192,0.15);
}

.staff-card__photo {
    position: relative;
    height: 260px;
    background: linear-gradient(135deg, #E3F2FD, #F0F7FF);
    overflow: hidden;
}
.staff-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.staff-card__photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.staff-card__video-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: background 0.2s;
}
.staff-card__video-badge:hover {
    background: rgba(21,101,192,0.9);
}

.staff-card__info {
    padding: 18px;
}
.staff-card__name {
    font-size: 18px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
    font-family: 'Montserrat', sans-serif;
}
.staff-card__position {
    font-size: 14px;
    color: #1565C0;
    font-weight: 600;
    margin-bottom: 6px;
}
.staff-card__experience {
    font-size: 13px;
    color: #2E7D32;
    font-weight: 600;
    margin-bottom: 8px;
}
.staff-card__about {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.staff-card__link {
    font-size: 14px;
    color: #1565C0;
    font-weight: 600;
    text-decoration: none;
}
.staff-card__link:hover {
    text-decoration: underline;
}

.staff-trust {
    padding: 48px 0;
    background: #EDF1F5;
}
@media (max-width: 640px) { .staff-trust { padding: 28px 0; } }

.staff-trust__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
}
@media (max-width: 640px) { .staff-trust__grid { grid-template-columns: 1fr; } }

.staff-trust__card {
    border: 2px solid #A0AEC0;
    border-radius: 14px;
    padding: 20px;
    background: #fff;
    text-align: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
}
.staff-trust__icon { font-size: 36px; margin-bottom: 10px; }
.staff-trust__title {
    font-size: 17px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}
.staff-trust__text {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* ── Voice Search ─────────────────────────────────────────────── */
.voice-search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #7C8BA0;
    padding: 4px;
    border-radius: 50%;
    transition: color 0.2s, background 0.2s;
    z-index: 2;
}
.voice-search-btn:hover {
    color: #1565C0;
    background: #E3F2FD;
}
.voice-search-btn.listening {
    color: #D32F2F;
    animation: pulse-mic 1s infinite;
}
@keyframes pulse-mic {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* ══════════════════════════════════════════════════════════════
   CRITICAL MOBILE FIX
   ══════════════════════════════════════════════════════════════ */

/* Prevent any element from causing horizontal scroll */
img, iframe, video {
    max-width: 100% !important;
}
iframe {
    height: auto;
    min-height: 300px;
}

@media (max-width: 768px) {
    /* Force all content within viewport */
    * {
        max-width: 100vw;
    }
    .container {
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow: hidden !important;
    }

    /* ── Service cards (mobile layout) ────────────────────── */
    .service-card {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding: 14px !important;
        overflow: visible !important;
    }

    /* Header becomes vertical: name on top, then icon+price+meta row */
    .service-card__header {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0 !important;
        margin-bottom: 10px !important;
    }

    /* Name: full width first row */
    .service-card__info {
        order: 1 !important;
        flex: none !important;
        width: 100% !important;
        min-width: 0 !important;
        margin-bottom: 10px !important;
    }
    .service-card__name {
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 1.3 !important;
        word-break: break-word !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
    }
    /* Icon: second row left */
    .service-card__icon {
        order: 2 !important;
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
        margin-right: 10px !important;
    }
    .service-card__icon img {
        width: 32px !important;
        height: 32px !important;
    }
    .service-card__icon--emoji {
        font-size: 22px !important;
    }

    /* Price + meta: second row, next to icon */
    .service-card__price {
        order: 3 !important;
        flex: 1 !important;
        text-align: left !important;
        min-width: 0 !important;
        display: flex !important;
        flex-direction: column !important;
    }
    .service-card__price-row {
        justify-content: flex-start !important;
    }
    .service-card__price-current {
        font-size: 18px !important;
        font-weight: 800 !important;
        color: #D32F2F !important;
        white-space: nowrap !important;
    }
    .service-card__price-old {
        font-size: 12px !important;
    }

    .service-card__meta {
        font-size: 11px !important;
        margin-top: 3px !important;
    }

    .service-card__alerts {
        gap: 4px;
    }
    .service-card__alert {
        font-size: 12px !important;
        padding: 5px 10px !important;
        word-break: break-word !important;
    }
    .service-card__buttons {
        flex-direction: column !important;
        gap: 6px !important;
    }
    .service-card__btn-rec,
    .service-card__btn-q {
        width: 100% !important;
        text-align: center !important;
        padding: 12px 0 !important;
    }
    .service-card__badge-popular {
        font-size: 10px !important;
        padding: 2px 8px !important;
        right: 8px !important;
        top: -7px !important;
        white-space: nowrap !important;
        z-index: 2 !important;
    }

    /* ── All cards ──────────────────────────────────────────── */
    .symptom-card,
    .review-card,
    .staff-card,
    .principle-card,
    .staff-trust__card,
    .contacts-card,
    .license-card,
    .route-public__card,
    .equipment-card,
    .about-counter,
    .contacts-legal__card,
    .quality-control,
    .contacts-qr {
        width: 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* ── Filter tabs ───────────────────────────────────────── */
    .services__filters {
        gap: 8px !important;
        justify-content: flex-start !important;
    }
    .services__filter-tab {
        padding: 8px 12px !important;
        font-size: 12px !important;
    }

    /* ── Route tabs ────────────────────────────────────────── */
    .route-tabs {
        flex-wrap: wrap !important;
        overflow-x: hidden !important;
        gap: 4px !important;
    }
    .route-tab {
        font-size: 12px !important;
        padding: 8px 4px !important;
        min-width: 0 !important;
    }

    /* ── Grids → single column ─────────────────────────────── */
    .contacts-layout,
    .contacts-legal__grid,
    .route-content__layout,
    .staff-trust__grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
    }

    /* ── Tables ─────────────────────────────────────────────── */
    table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch;
        max-width: 100% !important;
    }

    /* ── Pagination ─────────────────────────────────────────── */
    .pagination,
    .services__pagination {
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        max-width: 100% !important;
        justify-content: center !important;
    }

    /* ── Booking form ──────────────────────────────────────── */
    .booking-summary {
        font-size: 14px;
    }
    .booking-summary div {
        word-break: break-word;
    }
    .birthdate-selects select {
        padding: 12px 8px !important;
        font-size: 14px !important;
    }

    /* ── Inline-styled elements fix ─────────────────────────── */
    [style*="display:flex"],
    [style*="display: flex"] {
        flex-wrap: wrap !important;
    }
    [style*="padding:16px 40px"] {
        padding: 14px 20px !important;
    }

    /* ── Hero sections ─────────────────────────────────────── */
    .page-hero,
    .hero-section {
        padding: 24px 0;
    }
}

/* Планшет */
@media (max-width: 1024px) and (min-width: 769px) {
    .about-counters__grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ══════════════════════════════════════════════════════════════
   Category Landing Pages
   ══════════════════════════════════════════════════════════════ */
.category-hero { padding: 32px 0 16px; }
.category-hero__title { font-size: 32px; font-weight: 800; color: #111827; margin: 0 0 8px; font-family: 'Montserrat', sans-serif; }
.category-hero__stats { display: flex; gap: 16px; align-items: center; font-size: 15px; color: #475569; }
.category-hero__price { font-weight: 700; color: #1565C0; font-size: 18px; }
.category-text { font-size: 16px; line-height: 1.7; color: #374151; max-width: 860px; }
.category-text h2 { font-size: 22px; font-weight: 700; color: #111827; margin: 24px 0 12px; }
.category-text p { margin: 0 0 14px; }
.category-text ul { padding-left: 20px; margin: 0 0 14px; }
.category-text li { margin-bottom: 4px; }

/* Services Table */
.category-table { border: 2px solid #E2E8F0; border-radius: 14px; overflow: hidden; }
.category-table__header {
    display: grid; grid-template-columns: 1fr 80px 140px 130px;
    padding: 12px 18px; background: #F0F4FA; font-weight: 700; font-size: 13px;
    color: #475569; text-transform: uppercase; letter-spacing: 0.5px;
}
.category-table__row {
    display: grid; grid-template-columns: 1fr 80px 140px 130px;
    padding: 14px 18px; border-top: 1px solid #E2E8F0; align-items: center;
    transition: background 0.15s;
}
.category-table__row:hover { background: #F8FAFC; }
.category-table__row--sale { background: #FFFBEB; }
.category-table__row--sale:hover { background: #FEF3C7; }
.category-table__col--name a { color: #111827; text-decoration: none; font-weight: 600; font-size: 15px; }
.category-table__col--name a:hover { color: #1565C0; }
.category-table__badge { display: inline-block; background: #DC2626; color: #fff; font-size: 10px; font-weight: 700; padding: 2px 6px; border-radius: 4px; margin-left: 8px; vertical-align: middle; }
.category-table__col--duration { font-size: 14px; color: #64748b; text-align: center; }
.category-table__col--price { text-align: right; }
.category-table__price-old { font-size: 13px; color: #94A3B8; text-decoration: line-through; display: block; }
.category-table__price-current { font-size: 16px; font-weight: 700; color: #111827; }
.category-table__col--action { text-align: right; }
.category-table__btn {
    display: inline-block; padding: 8px 16px; background: #1565C0; color: #fff;
    border-radius: 8px; font-size: 13px; font-weight: 600; text-decoration: none;
    transition: background 0.15s;
}
.category-table__btn:hover { background: #0D47A1; }

/* CTA */
.category-cta__box {
    background: #F0F4FA; border-radius: 14px; padding: 32px;
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.category-cta__box h2 { font-size: 22px; font-weight: 700; color: #111827; margin: 0 0 8px; }
.category-cta__box p { font-size: 15px; color: #475569; margin: 0; }
.category-cta__actions { display: flex; gap: 12px; flex-shrink: 0; }
.category-cta__disclaimer { text-align: center; font-size: 12px; color: rgba(0,0,0,0.45); margin-top: 16px; }

@media (max-width: 768px) {
    .category-hero__title { font-size: 24px; }
    .category-table__header { display: none; }
    .category-table__row {
        display: flex; flex-wrap: wrap; gap: 4px 12px; padding: 14px 16px;
    }
    .category-table__col--name { width: 100%; }
    .category-table__col--duration { font-size: 13px; }
    .category-table__col--price { margin-left: auto; }
    .category-table__col--action { width: 100%; margin-top: 8px; }
    .category-table__btn { width: 100%; text-align: center; display: block; }
    .category-cta__box { flex-direction: column; text-align: center; padding: 24px; }
    .category-cta__actions { flex-direction: column; width: 100%; }
}
