.block_item.select_item{
outline: 1px solid green;
}
.main-nav li{
	    list-style-type: none;
    position: relative;
}
.submenu{
	display: none;
}
.main-nav li:hover .submenu{
	display: block;
    position: absolute;
    margin: 0px -10px;
    padding: 10px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
	white-space: nowrap;
}
.popup{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.block_item{
	display: flex;
    align-items: center;
    gap: 30px;
    cursor: pointer;
}
.block_image{
	width: 200px;
    height: 150px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.block_list{
	display: flex;
    flex-direction: column;
    gap: 20px;
    max-height: 600px;
    overflow: auto;
padding: 10px;
}

:root {
            --accent: #ff6b35;
            --accent-dark: #e65622;
            --accent-light: #ffe1d3;
            --teal: #0d6f70;
            --teal-soft: #f2f7f8;
            --text-main: #333333;
            --text-muted: #777777;
            --bg-page: #f7f7f7;
            --bg-soft: #fafafa;
            --border-color: #e3e3e3;
            --shadow-soft: 0 8px 25px rgba(0, 0, 0, 0.06);
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
        }

        * {
            box-sizing: border-box;
        }

        body {
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
            color: var(--text-main);
            background: var(--bg-page);
        }

        a {
            color: var(--accent-dark);
            text-decoration: none;
        }

        a:hover {
            text-decoration: underline;
        }

        h1, h2, h3, h4 {
            margin: 0 0 16px;
            font-weight: 700;
            line-height: 1.3;
        }

        p {
            margin: 0 0 12px;
            line-height: 1.7;
        }

        ul, ol {
            margin: 0 0 12px 20px;
            padding: 0;
        }

        ul li, ol li {
            margin-bottom: 4px;
        }

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

        .page {
            padding: 24px 0 60px;
        }

        /* ---------- БРЕДКРАМБЫ ---------- */

        .breadcrumbs {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .breadcrumbs a {
            color: var(--text-muted);
        }

        .breadcrumbs span {
            margin: 0 4px;
        }

        /* ---------- КНОПКИ И ЧИПЫ ---------- */

        .btn-primary {
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
            border: none;
            border-radius: 999px;
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            transition: box-shadow .2s ease, transform .15s ease, opacity .15s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .btn-primary:hover {
            box-shadow: 0 8px 18px rgba(230, 86, 34, 0.35);
            transform: translateY(-1px);
            opacity: .96;
        }

        .btn-outline {
            border-radius: 999px;
            border: 1px solid var(--accent);
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 500;
            color: var(--accent-dark);
            background: transparent;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-ghost {
            border-radius: 999px;
            border: 1px solid rgba(255, 255, 255, 0.75);
            padding: 7px 18px;
            font-size: 13px;
            font-weight: 500;
            color: #ffffff;
            background: transparent;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px solid #dde2e7;
            font-size: 12px;
            background: #ffffff;
            color: #555;
            cursor: pointer;
        }

        .chip--active {
            border-color: var(--accent);
            background: var(--accent-light);
            color: var(--accent-dark);
            font-weight: 600;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .badge-role {
            background: var(--accent-light);
            color: var(--accent-dark);
        }

        .badge-eat {
            background: #e5f6ff;
            color: #116aa8;
        }

        .badge-status {
            background: #e6f3e9;
            color: #2d7a3e;
        }

        .badge-format {
            background: #eceff2;
            color: #555;
        }

        /* ---------- HERO: НАШИ ВРАЧИ ---------- */

        .doctors-hero {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 24px 26px 24px;
            margin-bottom: 24px;
            display: grid;
            grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1.4fr);
            gap: 22px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .doctors-hero::after {
            content: "";
            position: absolute;
            right: -80px;
            top: -80px;
            width: 240px;
            height: 240px;
            background: radial-gradient(circle at center, #ffe3d6, transparent 70%);
            opacity: 0.7;
        }

        .doctors-hero-main {
            position: relative;
            z-index: 1;
        }

        .hero-tagline {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .09em;
            color: var(--accent-dark);
            background: var(--accent-light);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            margin-bottom: 10px;
        }

        .doctors-hero-title {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .doctors-hero-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 640px;
            margin-bottom: 14px;
        }

        .hero-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .hero-meta-item strong {
            font-weight: 600;
        }

        .doctors-hero-actions {
            margin-top: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .doctors-hero-note {
            font-size: 12px;
            color: var(--text-muted);
        }

        .doctors-hero-side {
            position: relative;
            z-index: 1;
        }

        .hero-panel {
            border-radius: var(--radius-md);
            background: var(--teal);
            color: #ffffff;
            padding: 16px 18px;
        }

        .hero-panel-title {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .hero-panel-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 8px;
        }

        .hero-select {
            flex: 1 1 160px;
            padding: 7px 24px 7px 10px;
            border-radius: 999px;
            border: none;
            font-size: 13px;
            background: #ffffff;
            color: #444;
            appearance: none;
            background-image: linear-gradient(45deg, transparent 50%, #999 50%),
                              linear-gradient(135deg, #999 50%, transparent 50%);
            background-position: calc(100% - 12px) 55%, calc(100% - 8px) 55%;
            background-size: 4px 4px, 4px 4px;
            background-repeat: no-repeat;
        }

        .hero-search {
            flex: 1 1 180px;
            border-radius: 999px;
            border: none;
            padding: 8px 12px;
            font-size: 14px;
        }

        .hero-search::placeholder {
            color: #999;
        }

        .hero-panel-hint {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.85);
        }

        /* ---------- ОБЩИЙ ЛЕЙАУТ ---------- */

        .layout-main {
            display: grid;
            /*grid-template-columns: minmax(0, 2.7fr) minmax(260px, 1.4fr);*/
            gap: 26px;
            align-items: flex-start;
        }

        .card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 18px 20px 18px;
        
            margin-bottom: 18px;
        }

        .section-header {
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .section-lead {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* ---------- ФИЛЬТРЫ ПЕРЕД ЛИСТИНГОМ ---------- */

        .filters-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 14px;
            align-items: center;
            font-size: 13px;
            margin: 0 0 10px;
        }

        .filters-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }

        .filters-label {
            font-weight: 600;
        }

        .select {
            padding: 7px 24px 7px 10px;
            border-radius: 999px;
            border: 1px solid #d1d7dd;
            font-size: 13px;
            background: #ffffff;
            background-image: linear-gradient(45deg, transparent 50%, #999 50%),
                              linear-gradient(135deg, #999 50%, transparent 50%);
            background-position: calc(100% - 12px) 55%, calc(100% - 8px) 55%;
            background-size: 4px 4px, 4px 4px;
            background-repeat: no-repeat;
            appearance: none;
        }

        /* ---------- ЛИСТИНГ ВРАЧЕЙ ---------- */

        .doctors-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px 14px;
        }

        .doctor-card {
            border-radius: var(--radius-md);
            border: 1px solid #edf0f3;
            background: #ffffff;
            padding: 10px 12px 12px;
            display: grid;
            grid-template-columns: auto minmax(0, 1fr);
            gap: 10px;
            align-items: flex-start;
        }

        .doctor-photo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: #dcdcdc url("https://via.placeholder.com/80x80?text=Dr") center/cover no-repeat;
        }

        .doctor-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .doctor-meta-top {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            font-size: 11px;
        }

        .doctor-name {
            font-size: 15px;
            font-weight: 600;
        }

        .doctor-role {
            font-size: 13px;
            color: var(--text-muted);
        }

        .doctor-excerpt {
            font-size: 13px;
            color: var(--text-muted);
        }

        .doctor-meta-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 12px;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        .rating-stars {
            color: #ffb400;
            font-size: 14px;
        }

        .doctor-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            font-size: 11px;
        }

        .doctor-tag {
            padding: 2px 8px;
            border-radius: 999px;
            background: #f2f4f7;
        }

        .doctor-actions {
            margin-top: 6px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .btn-small {
            padding: 6px 10px;
            font-size: 12px;
        }

        /* ---------- ПАГИНАЦИЯ ---------- */

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            font-size: 13px;
        }

        .page-link {
            min-width: 28px;
            height: 28px;
            border-radius: 999px;
            border: 1px solid #d1d7dd;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #ffffff;
        }

        .page-link--active {
            border-color: var(--accent);
            background: var(--accent);
            color: #ffffff;
            font-weight: 600;
        }

        /* ---------- БЛОК "КАК ВЫБРАТЬ ВРАЧА" ---------- */

        .two-column {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
            gap: 18px;
            margin-top: 8px;
        }

        .callout {
            border-radius: var(--radius-md);
            padding: 12px 14px;
            margin: 10px 0;
            font-size: 13px;
            position: relative;
        }

        .callout::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 3px;
            border-radius: 2px;
        }

        .callout-title {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .callout--info {
            background: #f3f8ff;
            border: 1px solid #d5e2ff;
        }

        .callout--info::before {
            background: #5c8dff;
        }

        .callout--tip {
            background: #f4fbf5;
            border: 1px solid #cfe8d4;
        }

        .callout--tip::before {
            background: #3da861;
        }

       

        /* ---------- САЙДБАР ---------- */

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .sidebar-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 16px 18px 18px;
            font-size: 14px;
        }

        .sidebar-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .sidebar-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        .specialties-list {
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 13px;
        }

        .specialties-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }

        .specialties-list span:last-child {
            color: var(--text-muted);
            font-size: 12px;
        }

        .sidebar-taglist {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 6px;
        }

        .sidebar-taglist span {
            font-size: 12px;
            padding: 3px 9px;
            border-radius: 999px;
            background: #f3f4f6;
        }

        .contacts-list {
            list-style: none;
            margin: 6px 0 0;
            padding: 0;
            font-size: 13px;
        }

        .contacts-list li {
            margin-bottom: 4px;
        }

        .map-placeholder {
            border-radius: var(--radius-md);
            background: #d9dde5 url("https://via.placeholder.com/360x200?text=Karta") center/cover no-repeat;
            height: 160px;
            margin-top: 8px;
        }

        .sidebar-form {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .input,
        textarea {
            width: 100%;
            font-family: inherit;
            font-size: 14px;
            padding: 8px 11px;
            border-radius: 999px;
            border: 1px solid #d1d7dd;
            outline: none;
        }

        textarea {
            border-radius: var(--radius-md);
            resize: vertical;
            min-height: 70px;
        }

        .input:focus,
        textarea:focus {
            border-color: var(--accent-dark);
        }

        .sidebar-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        /* ---------- E-A-T БЛОК О ВРАЧАХ ---------- */

        .about-doctors {
            margin-top: 10px;
            border-radius: var(--radius-lg);
            background: var(--teal-soft);
            padding: 14px 16px 12px;
            font-size: 13px;
        }

        .about-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .about-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 10px;
            margin-top: 6px;
        }

        .about-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ---------- АДАПТИВ ---------- */

        @media (max-width: 992px) {
            .doctors-hero {
                grid-template-columns: 1fr;
            }

            .doctors-hero::after {
                display: none;
            }

            .layout-main {
                grid-template-columns: 1fr;
            }

            .doctors-list {
                grid-template-columns: 1fr;
            }

            .two-column {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .doctors-hero {
                padding: 18px;
            }

            .doctors-hero-title {
                font-size: 24px;
            }

            .card {
                padding: 16px 16px 18px;
            }

            .filters-bar {
                flex-direction: column;
                align-items: flex-start;
            }

            .doctor-card {
                grid-template-columns: auto 1fr;
            }
        }
.badge-small {
            font-size: 10px;
            padding: 2px 8px;
        }

        .badge-tag {
            background: #eceff2;
            color: #555;
        }

        .badge-eat {
            background: #e5f6ff;
            color: #116aa8;
        }

        .badge-role {
            background: var(--accent-light);
            color: var(--accent-dark);
        }

        .badge-status {
            background: #e6f3e9;
            color: #2d7a3e;
        }

        /* ---------- HERO ВРАЧА ---------- */

        .doctor-hero {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 24px 26px 22px;
            margin-bottom: 24px;
            display: grid;
            grid-template-columns: minmax(0, 2.1fr) minmax(260px, 1.4fr);
            gap: 24px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .doctor-hero::after {
            content: "";
            position: absolute;
            right: -60px;
            bottom: -60px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle at center, #ffe4d6, transparent 70%);
            opacity: .7;
        }

        .doctor-hero-main {
            position: relative;
            z-index: 1;
        }

        .doctor-hero-topline {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 8px;
        }

        .doctor-name {
            font-size: 26px;
            margin-bottom: 4px;
        }

        .doctor-position {
            font-size: 15px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .doctor-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 14px;
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .meta-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--border-color);
        }

        .doctor-hero-summary {
            font-size: 14px;
            color: var(--text-main);
            margin-bottom: 12px;
            max-width: 650px;
        }

        .doctor-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 14px;
            align-items: center;
        }

        .hero-note {
            font-size: 12px;
            color: var(--text-muted);
        }

        .doctor-hero-side {
            position: relative;
            z-index: 1;
        }

        .doctor-hero-side .doctor-card {
            border-radius: var(--radius-lg);
            background: linear-gradient(135deg, #fffdfa, #ffe7dc);
            padding: 14px;
            box-shadow: var(--shadow-soft);
        }

        .doctor-photo {
            border-radius: 14px;
            height: 200px;
            background: #dcdcdc url("https://via.placeholder.com/360x260?text=Doctor") center/cover no-repeat;
        }

        .doctor-quick {
            margin-top: 10px;
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 8px;
        }

        .doctor-quick-item {
            border-radius: var(--radius-md);
            background: #ffffff;
            padding: 8px 9px;
            font-size: 11px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
        }

        .doctor-quick-value {
            font-size: 16px;
            font-weight: 700;
        }

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

        /* ---------- ЛЕЙАУТ ОСНОВНОГО КОНТЕНТА ---------- */

        .layout-main {
            display: grid;
            /*grid-template-columns: minmax(0, 2.6fr) minmax(260px, 1.4fr);*/
            gap: 26px;
            align-items: flex-start;
        }

        .section-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 20px 22px 22px;
            margin-bottom: 18px;
        }

        .section-header {
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .section-lead {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* ---------- СЕТКИ И СТРУКТУРА ---------- */

        .two-column {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
            gap: 18px;
        }

        .chips-row {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 4px 10px;
            border-radius: 999px;
            border: 1px solid #dde2e7;
            font-size: 12px;
            background: #ffffff;
            color: #555;
        }

        .chip--accent {
            border-color: var(--accent);
            background: var(--accent-light);
            color: var(--accent-dark);
            font-weight: 600;
        }

        /* ---------- СПИСОК НАВЫКОВ/УСЛУГ ---------- */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 8px 14px;
            margin-top: 8px;
        }

        .service-pill {
            border-radius: var(--radius-md);
            border: 1px solid #e1e6ec;
            padding: 7px 10px;
            font-size: 13px;
            background: #fafafa;
        }

        .service-pill strong {
            font-weight: 600;
        }

        /* ---------- CALL-OUT БЛОКИ ---------- */

        .callout {
            border-radius: var(--radius-md);
            padding: 12px 14px;
            margin: 14px 0;
            font-size: 13px;
            position: relative;
        }

        .callout::before {
            content: "";
            position: absolute;
            left: 0;
            top: 10px;
            bottom: 10px;
            width: 3px;
            border-radius: 2px;
        }

        .callout-title {
            font-weight: 600;
            margin-bottom: 4px;
        }

        .callout--info {
            background: #f3f8ff;
            border: 1px solid #d5e2ff;
        }

        .callout--info::before {
            background: #5c8dff;
        }

        .callout--tip {
            background: #f4fbf5;
            border: 1px solid #cfe8d4;
        }

        .callout--tip::before {
            background: #3da861;
        }

        .callout--important {
            background: #fff5f2;
            border: 1px solid #ffd0c1;
        }

        .callout--important::before {
            background: var(--accent);
        }

        /* ---------- ОБРАЗОВАНИЕ / ТАЙМЛАЙН ---------- */

        .education-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
            gap: 18px;
            margin-top: 8px;
        }

        .timeline {
            padding-left: 6px;
            border-left: 2px solid #e1e5ed;
            font-size: 13px;
        }

        .timeline-item {
            position: relative;
            padding: 4px 0 8px 14px;
        }

        .timeline-item::before {
            content: "";
            position: absolute;
            left: -7px;
            top: 8px;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid var(--accent);
        }

        .timeline-year {
            font-weight: 600;
            margin-bottom: 2px;
        }

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

        .cert-list {
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 13px;
        }

        .cert-item {
            display: flex;
            gap: 8px;
            margin-bottom: 6px;
            align-items: flex-start;
        }

        .cert-item-icon {
            margin-top: 2px;
            font-size: 14px;
            color: var(--accent-dark);
        }

        .cert-item-text span {
            display: block;
        }

        .cert-item-text span:first-child {
            font-weight: 600;
        }

        .cert-item-text span:last-child {
            color: var(--text-muted);
        }

        /* ---------- ПОДХОД К ЛЕЧЕНИЮ ---------- */

        .approach-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
            gap: 18px;
            margin-top: 6px;
        }

        .quote-box {
            border-radius: var(--radius-md);
            background: #fff;
            border-left: 4px solid var(--teal);
            box-shadow: 0 4px 16px rgba(0,0,0,0.04);
            padding: 12px 14px 10px;
            font-size: 14px;
        }

        .quote-author {
            margin-top: 4px;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ---------- КЛИНИЧЕСКИЕ СЛУЧАИ ---------- */

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-top: 8px;
        }

        .case-card {
            border-radius: var(--radius-md);
            background: #fafafa;
            border: 1px solid #e5e7ec;
            padding: 10px 11px 9px;
            font-size: 13px;
        }

        .case-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 2px;
        }

        .case-title {
            font-weight: 600;
            margin-bottom: 4px;
        }

        /* ---------- ОТЗЫВЫ О ВРАЧЕ ---------- */

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px;
            margin-top: 8px;
        }

        .review-card {
            border-radius: var(--radius-md);
            background: #fafafa;
            border: 1px solid #e5e7ec;
            padding: 10px 12px;
            font-size: 13px;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 2px;
        }

        .review-name {
            font-weight: 600;
        }

        .review-rating {
            color: #ffb400;
        }

        .review-source {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        /* ---------- ВОПРОС/ОТВЕТ О ВРАЧЕ ---------- */

        
        /* ---------- ПЕРЕЛИНКОВКА НИЖЕ ---------- */

        .links-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
            gap: 18px;
            margin-top: 8px;
        }

        .links-card {
            border-radius: var(--radius-md);
            background: #fafafa;
            border: 1px solid #e5e7ec;
            padding: 10px 12px 12px;
            font-size: 13px;
        }

        .links-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

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

        .links-list li {
            margin-bottom: 4px;
        }

        /* ---------- CTA НИЖЕ СТРАНИЦЫ ---------- */

        .bottom-cta {
            margin-top: 20px;
            background: var(--teal);
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 18px 20px 16px;
            display: grid;
            grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
            gap: 16px;
            align-items: center;
        }

        .bottom-cta h2 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .bottom-cta p {
            font-size: 14px;
            margin-bottom: 4px;
        }

        .bottom-cta-note {
            font-size: 12px;
            color: rgba(255,255,255,0.9);
        }

        .bottom-cta-form {
            display: flex;
            flex-direction: column;
            gap: 7px;
        }

        .input,
        textarea {
            width: 100%;
            font-family: inherit;
            font-size: 14px;
            padding: 8px 11px;
            border-radius: 999px;
            border: 1px solid #d1d7dd;
            outline: none;
        }

        textarea {
            border-radius: var(--radius-md);
            resize: vertical;
            min-height: 70px;
        }

        .input:focus,
        textarea:focus {
            border-color: var(--accent-dark);
        }

        /* ---------- САЙДБАР ---------- */

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .sidebar-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 16px 18px 18px;
            font-size: 14px;
        }

        .sidebar-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .sidebar-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        .sidebar-list {
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 13px;
        }

        .sidebar-list li {
            margin-bottom: 6px;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: 1.3fr 1fr;
            gap: 4px;
            margin-top: 4px;
            font-size: 13px;
        }

        .schedule-grid div:nth-child(odd) {
            color: var(--text-muted);
        }

        .contacts-list {
            list-style: none;
            margin: 6px 0 0;
            padding: 0;
            font-size: 13px;
        }

        .contacts-list li {
            margin-bottom: 4px;
        }

        .map-placeholder {
            border-radius: var(--radius-md);
            background: #d9dde5 url("https://via.placeholder.com/360x200?text=Karta") center/cover no-repeat;
            height: 160px;
            margin-top: 8px;
        }

        .sidebar-taglist {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-top: 6px;
        }

        .sidebar-taglist span {
            font-size: 12px;
            padding: 3px 9px;
            border-radius: 999px;
            background: #f3f4f6;
        }

        .rating-row {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
        }

        .rating-stars {
            color: #ffb400;
            font-size: 14px;
        }

        /* ---------- АДАПТИВ ---------- */

        @media (max-width: 992px) {
            .doctor-hero {
                grid-template-columns: 1fr;
            }

            .doctor-hero::after {
                display: none;
            }

            .layout-main {
                grid-template-columns: 1fr;
            }

            .two-column,
            .education-grid,
            .approach-grid,
            .links-grid,
            .bottom-cta {
                grid-template-columns: 1fr;
            }

            .doctor-quick {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .reviews-grid,
            .cases-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 640px) {
            .doctor-hero {
                padding: 18px;
            }

            .doctor-name {
                font-size: 22px;
            }

            .section-card {
                padding: 16px 16px 18px;
            }

            .doctor-quick {
                grid-template-columns: 1fr 1fr;
            }

            .services-grid,
            .team-grid {
                grid-template-columns: 1fr;
            }

            .reviews-grid,
            .cases-grid {
                grid-template-columns: 1fr;
            }
        }
.chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 5px 12px;
            border-radius: 999px;
            font-size: 13px;
            cursor: pointer;
            border: 1px solid #dde2e7;
            background: #ffffff;
            color: #555;
        }

        .chip--active {
            border-color: var(--accent);
            background: var(--accent-light);
            color: var(--accent-dark);
            font-weight: 600;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 3px 8px;
            border-radius: 999px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .badge-category {
            background: var(--accent-light);
            color: var(--accent-dark);
        }

        .badge-eat {
            background: #e5f6ff;
            color: #1171b8;
        }

        .badge-format {
            background: #eceff2;
            color: #555;
        }

        /* ---------- HERO БЛОГ ---------- */

        .blog-hero {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 24px 26px 24px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-soft);
            display: grid;
            grid-template-columns: 2.2fr 1.5fr;
            gap: 22px;
            align-items: center;
        }

        .blog-hero-title {
            font-size: 28px;
            margin-bottom: 8px;
        }

        .blog-hero-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 640px;
            margin-bottom: 14px;
        }

        .blog-hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 10px;
        }

        .blog-hero-meta {
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 10px 14px;
        }

        .hero-meta-item strong {
            font-weight: 600;
        }

        .blog-hero-search {
            background: var(--teal);
            color: #ffffff;
            border-radius: var(--radius-md);
            padding: 16px 18px;
        }

        .search-title {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .search-row {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 8px;
        }

        .search-input {
            flex: 1 1 180px;
            border-radius: 999px;
            border: none;
            padding: 8px 12px;
            font-size: 14px;
        }

        .search-input::placeholder {
            color: #999;
        }

        .search-hint {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* ---------- ЛЕЙАУТ ---------- */

        .layout-main {
            display: grid;
            /*grid-template-columns: minmax(0, 3fr) minmax(260px, 1.4fr);*/
            gap: 26px;
            align-items: flex-start;
        }

        .card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 18px 20px 18px;
        }

        .card + .card {
            margin-top: 18px;
        }

        /* ---------- ИЗБРАННАЯ СТАТЬЯ ---------- */

        .featured-article {
            display: grid;
            grid-template-columns: 1.6fr 1.3fr;
            gap: 18px;
            align-items: stretch;
        }

        .featured-main {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .featured-meta-top {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
            font-size: 12px;
        }

        .featured-title {
            font-size: 22px;
        }

        .featured-excerpt {
            font-size: 14px;
            color: var(--text-muted);
        }

        .featured-meta-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .meta-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--border-color);
        }

        .featured-cover {
            border-radius: var(--radius-md);
            overflow: hidden;
            min-height: 180px;
            background: #d9dde5;
        }

        .featured-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* ---------- БЛОК ТЕМ ---------- */

        .topics-section-title {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .topics-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 12px;
        }

        .topic-card {
            border-radius: var(--radius-md);
            padding: 10px 12px;
            background: var(--bg-soft);
            border: 1px solid #e1e5ea;
            cursor: pointer;
        }

        .topic-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .topic-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ---------- ФИЛЬТРЫ ПЕРЕД ЛИСТИНГОМ ---------- */

        .filters-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 12px;
            align-items: center;
            font-size: 13px;
            margin: 20px 0 10px;
        }

        .filters-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            align-items: center;
        }

        .filters-label {
            font-weight: 600;
        }

        .select {
            padding: 7px 24px 7px 10px;
            border-radius: 999px;
            border: 1px solid #d1d7dd;
            font-size: 13px;
            background: #ffffff;
            background-image: linear-gradient(45deg, transparent 50%, #999 50%),
                              linear-gradient(135deg, #999 50%, transparent 50%);
            background-position: calc(100% - 12px) 55%, calc(100% - 8px) 55%;
            background-size: 4px 4px, 4px 4px;
            background-repeat: no-repeat;
            appearance: none;
        }

        /* ---------- ЛИСТИНГ СТАТЕЙ ---------- */

        .articles-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 14px;
        }

        .article-card {
            border-radius: var(--radius-md);
            padding: 10px 12px 12px;
            border: 1px solid #edf0f3;
            background: #ffffff;
            display: grid;
            grid-template-columns: 120px minmax(0, 1fr);
            gap: 10px;
        }

        .article-thumb {
            border-radius: var(--radius-sm);
            background: #d9dde5;
            overflow: hidden;
            min-height: 90px;
        }

        .article-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .article-info {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .article-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            align-items: center;
            font-size: 11px;
            color: var(--text-muted);
        }

        .article-title {
            font-size: 15px;
            font-weight: 600;
        }

        .article-excerpt {
            font-size: 13px;
            color: var(--text-muted);
        }

        .article-meta-bottom {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 10px;
            align-items: center;
            font-size: 12px;
            color: var(--text-muted);
        }

        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            font-size: 11px;
        }

        .article-tag {
            padding: 2px 8px;
            border-radius: 999px;
            background: #f2f4f7;
        }

        /* ---------- ПАГИНАЦИЯ ---------- */

        .pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 6px;
            margin-top: 18px;
            font-size: 13px;
        }

        .page-link {
            min-width: 28px;
            height: 28px;
            border-radius: 999px;
            border: 1px solid #d1d7dd;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #ffffff;
        }

        .page-link--active {
            border-color: var(--accent);
            background: var(--accent);
            color: #ffffff;
            font-weight: 600;
        }

        /* ---------- САЙДБАР ---------- */

        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .sidebar-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 16px 18px 18px;
            font-size: 14px;
        }

        .sidebar-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .sidebar-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .sidebar-list li {
            margin-bottom: 8px;
        }

        .sidebar-list a {
            text-decoration: none;
        }

        .topics-list {
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 14px;
        }

        .topics-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }

        .topics-list span:last-child {
            color: var(--text-muted);
            font-size: 12px;
        }

        .sidebar-taglist {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .sidebar-taglist span {
            font-size: 12px;
            padding: 3px 9px;
            border-radius: 999px;
            background: #f3f4f6;
        }

        .author-mini {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 10px;
            align-items: center;
            margin-bottom: 10px;
        }

        .author-photo {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #dcdcdc url("https://via.placeholder.com/46x46?text=Dr") center/cover no-repeat;
        }

        .author-name {
            font-size: 14px;
            font-weight: 600;
        }

        .author-role {
            font-size: 12px;
            color: var(--text-muted);
        }

        .author-meta {
            font-size: 11px;
            color: var(--text-muted);
        }

        .sidebar-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .sidebar-form {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .input,
        textarea {
            width: 100%;
            font-family: inherit;
            font-size: 14px;
            padding: 8px 11px;
            border-radius: 999px;
            border: 1px solid #d1d7dd;
            outline: none;
        }

        textarea {
            border-radius: var(--radius-md);
            resize: vertical;
            min-height: 70px;
        }

        .input:focus,
        textarea:focus {
            border-color: var(--accent-dark);
        }

        /* ---------- БЛОК "О БЛОГЕ" С E-A-T ---------- */

        .about-blog {
            margin-top: 26px;
            border-radius: var(--radius-lg);
            background: var(--teal-soft);
            padding: 16px 18px 14px;
            font-size: 13px;
        }

        .about-title {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .about-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 12px;
            margin-top: 6px;
        }

        .about-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* ---------- НИЖНИЙ FAQ ПО БЛОГУ ---------- */

        .faq-card {
            margin-top: 20px;
            border-radius: var(--radius-lg);
            padding: 16px 18px 14px;
            background: #ffffff;
            box-shadow: var(--shadow-soft);
        }

        .faq-title {
            font-size: 16px;
            margin-bottom: 8px;
        }

        .faq-item + .faq-item {
            border-top: 1px solid #eceff2;
        }

        .faq-item summary {
            list-style: none;
            padding: 8px 0;
            cursor: pointer;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-icon {
            font-size: 18px;
            margin-left: 8px;
        }

        .faq-body {
            padding: 0 0 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- АДАПТИВ ---------- */

        @media (max-width: 992px) {
            .blog-hero {
                grid-template-columns: 1fr;
            }

            .layout-main {
                grid-template-columns: 1fr;
            }

            .featured-article {
                grid-template-columns: 1fr;
            }

            .topics-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .articles-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .blog-hero {
                padding: 18px;
            }

            .blog-hero-title {
                font-size: 24px;
            }

            .card {
                padding: 16px;
            }

            .topics-grid {
                grid-template-columns: 1fr;
            }

            .filters-bar {
                flex-direction: column;
                align-items: flex-start;
            }

            .featured-article {
                gap: 12px;
            }

            .article-card {
                grid-template-columns: 1fr;
            }
        }
.hero {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 32px;
            display: flex;
            gap: 32px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            right: -120px;
            top: -120px;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle at center, #ffe3d6, transparent 70%);
            opacity: 0.7;
        }

        .hero-content {
            flex: 1 1 55%;
            position: relative;
            z-index: 1;
        }

        .hero-tag {
            display: inline-block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--accent-dark);
            background: var(--accent-light);
            padding: 4px 10px;
            border-radius: 999px;
            margin-bottom: 12px;
        }

        .hero-title {
            font-size: 30px;
            margin-bottom: 12px;
        }

        .hero-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .hero-list {
            margin: 0 0 20px;
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
            font-size: 14px;
        }

        .hero-list li::before {
            content: "•";
            color: var(--accent);
            margin-right: 6px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 16px;
            align-items: center;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
            border: none;
            border-radius: 999px;
            padding: 12px 26px;
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            transition: box-shadow .2s ease, transform .15s ease, opacity .15s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .btn-primary:hover {
            box-shadow: 0 8px 18px rgba(230, 86, 34, 0.35);
            transform: translateY(-1px);
            opacity: .96;
        }

        .btn-outline {
            border-radius: 999px;
            border: 1px solid var(--accent);
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 500;
            color: var(--accent-dark);
            background: transparent;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-outline span {
            font-size: 18px;
            line-height: 1;
        }

        .hero-note {
            font-size: 13px;
            color: var(--text-muted);
        }

        .hero-image {
            flex: 1 1 45%;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-inner {
            background: linear-gradient(135deg, #fffdfa, #ffe7dc);
            border-radius: var(--radius-lg);
            padding: 24px;
            position: relative;
        }

        .hero-image-teeth {
            width: 260px;
            height: 200px;
            background: url("https://stomatologiya-ulybka.ru/upload/resize_cache/webp/iblock/6dc/0y829h6gsfkgx3ms0wgb9egofy4j0rd5.webp") center/cover no-repeat;
            border-radius: 20px;
        }

        .hero-price-badge {
            position: absolute;
            bottom: 20px;
            right: 24px;
            background: #ffffff;
            border-radius: 999px;
            padding: 10px 18px;
            box-shadow: var(--shadow-soft);
            font-size: 13px;
        }

        .hero-price-badge strong {
            color: var(--accent-dark);
            font-size: 17px;
        }

        .hero-label {
            position: absolute;
            top: 16px;
            left: 22px;
            background: #ffffff;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            box-shadow: var(--shadow-soft);
        }

        /* ---------- БЛОК: Кратко о процедуре ---------- */

        .facts-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            margin: 28px 0 34px;
        }

        .fact-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 16px 18px;
            box-shadow: var(--shadow-soft);
        }

        .fact-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .fact-value {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 6px;
        }

        .fact-note {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- ОБЩЕЕ ОПИСАНИЕ + CTA ---------- */

        .section {
            margin: 40px 0;
        }

        .section-header {
            margin-bottom: 18px;
        }

        .section-title {
            font-size: 24px;
        }

        .section-lead {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 760px;
        }

        .section-body {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-soft);
        }

        .two-column {
            display: grid;
            grid-template-columns: 3fr 2.2fr;
            gap: 28px;
        }

        .cta-inline {
            background: #0d6f70;
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .cta-inline::after {
            content: "";
            position: absolute;
            right: -40px;
            bottom: -40px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.38), transparent 70%);
        }

        .cta-inline-title {
            font-size: 18px;
        }

        .cta-inline-text {
            font-size: 14px;
            max-width: 320px;
        }

        .cta-inline-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-width: 420px;
        }

        .input {
            border-radius: 999px;
            border: none;
            padding: 9px 16px;
            font-size: 14px;
            width: 100%;
        }

        .input::placeholder {
            color: #999;
        }

        .input-wrapper {
            flex: 1 1 45%;
        }

        .cta-inline .btn-primary {
            background: #ffffff;
            color: #0d6f70;
        }

        .cta-inline .btn-primary:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }

        .cta-inline-note {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* ---------- ПРЕИМУЩЕСТВА ---------- */

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .adv-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 18px 18px 20px;
            box-shadow: var(--shadow-soft);
            position: relative;
        }

        .adv-icon {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            background: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 18px;
            color: var(--accent-dark);
        }

        .adv-title {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .adv-text {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* ---------- ГАЛЕРЕЯ ДО/ПОСЛЕ ---------- */

        .before-after {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 22px 24px 20px;
            box-shadow: var(--shadow-soft);
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: 1.2fr 1.2fr 1.6fr;
            gap: 18px;
        }

        .ba-item {
            border-radius: var(--radius-md);
            background: #f0f0f0;
            overflow: hidden;
            position: relative;
            min-height: 160px;
        }

        .ba-label {
            position: absolute;
            left: 12px;
            top: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: #ffffff;
            font-size: 12px;
            text-transform: uppercase;
            padding: 3px 8px;
            border-radius: 999px;
        }

        .ba-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #d7dde3, #f3f3f3);
    background-size: cover;
        }

        .ba-case {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .ba-case strong {
            color: var(--text-main);
        }

        .ba-meta {
            margin-top: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- КАРТОЧКИ "Решаемые задачи" ---------- */

        .tasks-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .task-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 18px 16px;
            box-shadow: var(--shadow-soft);
        }

        .task-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .task-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- Показания/Противопоказания ---------- */

        .indications-section .section-body {
            padding: 0;
        }

        .indications-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .indications-col {
            padding: 24px 28px;
        }

        .indications-col:nth-child(1) {
            border-right: 1px solid var(--border-color);
        }

        .indications-col:nth-child(2) {
            background: #fff7f4;
        }

        .indications-title {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .check-list,
        .cross-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .check-list li,
        .cross-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 14px;
            margin-bottom: 6px;
        }

        .check-list-icon,
        .cross-list-icon {
            font-size: 18px;
            margin-top: 1px;
        }

        .check-list-icon {
            color: #32a852;
        }

        .cross-list-icon {
            color: #e42121;
        }

        /* ---------- ЭТАПЫ ---------- */

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .step-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 18px 18px 20px;
            box-shadow: var(--shadow-soft);
            position: relative;
        }

        .step-num {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: var(--accent-light);
            color: var(--accent-dark);
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }

        .step-title {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .step-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- ТЕКСТОВОЙ БЛОК ---------- */

        .text-block {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-soft);
            font-size: 14px;
            line-height: 1.75;
        }

        .text-block h3 {
            font-size: 18px;
            margin-top: 16px;
            margin-bottom: 8px;
        }

        .text-block ul {
            margin: 0 0 12px 20px;
        }

        /* ---------- CTA ПОЛОСА ---------- */

        .cta-strip {
            background: #0d6f70;
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            box-shadow: var(--shadow-soft);
        }

        .cta-strip-title {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .cta-strip-text {
            font-size: 14px;
        }

        .cta-strip-contacts {
            font-size: 14px;
        }

        .cta-strip-phone {
            font-size: 18px;
            font-weight: 600;
        }

        /* ---------- СИСТЕМЫ ИМПЛАНТОВ ---------- */

        .brands-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .brand-card {
            flex: 0 0 200px;
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 16px;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .brand-tag {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--text-muted);
        }

        .brand-name {
            font-size: 15px;
            font-weight: 700;
        }

        .brand-country {
            font-size: 13px;
            color: var(--text-muted);
        }

        .brand-note {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- ВРАЧ ---------- */

        .doctor-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            box-shadow: var(--shadow-soft);
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 22px;
            align-items: center;
        }

        .doctor-photo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            background: #dcdcdc url("https://stomatologiya-ulybka.ru/upload/resize_cache/webp/fxmj8np7o7i6jevkkmcqamelqwmv1qou.webp") center/cover no-repeat;
        }

        .doctor-name {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .doctor-position {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .doctor-exp {
            font-size: 13px;
            margin-bottom: 10px;
        }

        .doctor-list {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        /* ---------- ЦЕНЫ ---------- */

        .prices-table-wrap {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 24px 24px 6px;
            box-shadow: var(--shadow-soft);
        }

        .prices-table {
            width: 100%;
            border-collapse: collapse;
        }

        .prices-table th,
        .prices-table td {
            padding: 10px 8px;
            font-size: 14px;
        }

        .prices-table th {
            text-align: left;
            font-weight: 600;
            border-bottom: 1px solid var(--border-color);
        }

        .prices-table tr + tr td {
            border-top: 1px solid var(--border-color);
        }

        .prices-table td:last-child {
            white-space: nowrap;
            text-align: right;
            font-weight: 600;
        }

        .prices-hint {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 10px;
            margin-bottom: 12px;
        }

        .prices-all-link {
            text-align: right;
            font-size: 14px;
            margin-bottom: 4px;
        }

        /* ---------- FAQ ---------- */

        .faq-list {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

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

        .faq-summary {
            list-style: none;
            cursor: pointer;
            padding: 14px 18px;
            background: var(--accent);
            color: #ffffff;
            font-size: 14px;
            position: relative;
        }

        .faq-summary::marker,
        .faq-summary::-webkit-details-marker {
            display: none;
        }

        .faq-summary span {
            margin-right: 24px;
            display: inline-block;
        }

        details[open] .faq-summary {
            background: var(--accent-dark);
        }

        .faq-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            transition: transform .2s ease;
        }

        details[open] .faq-icon {
            transform: translateY(-50%) rotate(90deg);
        }

        .faq-body {
            padding: 14px 18px 16px;
            background: #ffffff;
            color: var(--text-main);
            font-size: 14px;
        }

        /* ---------- ФОРМА ---------- */

        .form-section .section-body {
            background: #0d6f70;
            color: #ffffff;
        }

        .form-title {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .form-text {
            font-size: 14px;
            margin-bottom: 16px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 2fr 1.5fr;
            gap: 20px;
            align-items: center;
        }

        .form-fields {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .form-fields .input-wrapper {
            flex: 1 1 45%;
        }

        .form-section .input {
            border-radius: 10px;
        }

        .form-note {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 8px;
        }

        /* ---------- СТАТЬИ ---------- */

        .cards-row {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .article-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .article-cover {
            height: 150px;
            background: #ddd url("https://stomatologiya-ulybka.ru/o-nas/img/op30.jpg") center/cover no-repeat;
        }

        .article-body {
            padding: 14px 16px 16px;
        }

        .article-tag {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .article-title {
            font-size: 15px;
            margin-bottom: 8px;
        }

        .article-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ---------- КАРТОЧКИ ВРАЧЕЙ ---------- */

        .doctors-slider {
            background: #f2f7f8;
            border-radius: var(--radius-lg);
            padding: 24px 24px 26px;
        }

        .doctors-row {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .doctor-small {
            background: #ffffff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            padding: 14px 14px 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .doctor-small-photo {
            width: 86px;
            height: 86px;
            margin: 0 auto 6px;
            border-radius: 50%;
            background: #ddd url("https://stomatologiya-ulybka.ru/upload/resize_cache/webp/fxmj8np7o7i6jevkkmcqamelqwmv1qou.webp") center/cover no-repeat;
        }

        .doctor-small-name {
            font-size: 14px;
            font-weight: 600;
        }

        .doctor-small-position {
            font-size: 12px;
            color: var(--text-muted);
        }

        .doctor-small-exp {
            font-size: 12px;
        }

        .doctor-small-btn {
            margin-top: 4px;
            font-size: 13px;
            padding: 8px 14px;
        }

        /* ---------- ОТЗЫВ ---------- */

        .review-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            box-shadow: var(--shadow-soft);
            font-size: 14px;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }

        .review-name {
            font-weight: 600;
        }

        .review-rating {
            color: #ffb400;
        }

        .review-source {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ---------- ФУТЕРНЫЙ CTA ---------- */

        .bottom-cta {
            background: #0d6f70;
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 22px 24px 20px;
            display: grid;
            grid-template-columns: 2fr 1.4fr;
            gap: 18px;
            align-items: center;
        }

        .bottom-cta h2 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .bottom-cta p {
            font-size: 14px;
        }

        .bottom-cta .btn-primary {
            background: #ffffff;
            color: #0d6f70;
            justify-content: center;
        }

        /* ---------- NEW: ДОП. ТЕКСТ И МНЕНИЕ ЭКСПЕРТА ---------- */

        .extra-info-section .section-body {
            padding: 24px 28px;
        }

        .extra-info-grid {
            display: grid;
            grid-template-columns: 3fr 2.2fr;
            gap: 28px;
            align-items: flex-start;
        }

        .extra-text {
            font-size: 14px;
            line-height: 1.75;
        }

        .extra-text h3 {
            font-size: 18px;
            margin-top: 0;
            margin-bottom: 8px;
        }

        .extra-text p {
            margin-bottom: 12px;
        }

        .extra-text ul {
            margin-bottom: 12px;
        }

        .expert-card {
            background: #f2f7f8;
            border-radius: var(--radius-lg);
            padding: 18px 20px;
            box-shadow: var(--shadow-soft);
            display: flex;
            gap: 14px;
            align-items: flex-start;
        }

        .expert-photo {
            width: 78px;
            height: 78px;
            border-radius: 50%;
            background: #dcdcdc url("https://via.placeholder.com/78x78?text=Dr") center/cover no-repeat;
            flex-shrink: 0;
        }

        .expert-title {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .expert-name {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .expert-role {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .expert-quote {
            font-size: 14px;
            margin-bottom: 8px;
        }

        .expert-quote em {
            font-style: italic;
        }

        .expert-note {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ---------- АДАПТИВ ---------- */

        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                padding: 24px;
            }

            .facts-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .two-column {
                grid-template-columns: 1fr;
            }

            .advantages-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .before-after-grid {
                grid-template-columns: 1fr 1fr;
            }

            .steps-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .cards-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .doctors-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .bottom-cta,
            .form-grid,
            .doctor-card,
            .extra-info-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 18px;
            }

            .hero-title {
                font-size: 24px;
            }

            .facts-grid,
            .advantages-grid,
            .tasks-grid,
            .steps-grid,
            .cards-row,
            .doctors-row {
                grid-template-columns: 1fr;
            }

            .before-after-grid {
                grid-template-columns: 1fr;
            }

            .cta-strip {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-inline-form,
            .form-fields {
                flex-direction: column;
            }
        }
		.badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 3px 10px;
            border-radius: 999px;
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .08em;
        }

        .badge-tag {
            background: #eceff2;
            color: #555;
        }

        .badge-eat {
            background: #e5f6ff;
            color: #1171b8;
        }

        .badge-category {
            background: var(--accent-light);
            color: var(--accent-dark);
        }

        /* ---------- ХЕДЕР САЙТА ---------- */

        .site-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .header-top {
            font-size: 13px;
            color: #ffffff;
            background: var(--teal);
        }

        .header-top-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 16px;
        }

        .header-top-left {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .header-top-right {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .header-phone {
            font-weight: 600;
        }

        .header-main {
            padding: 10px 0;
        }

        .header-main-inner {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 18px;
            align-items: center;
        }

        .logo-block {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-mark {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 700;
            font-size: 18px;
        }

        .logo-text-main {
            font-size: 18px;
            font-weight: 700;
        }

        .logo-text-sub {
            font-size: 12px;
            color: var(--text-muted);
        }

        .main-nav {
            display: flex;
            justify-content: center;
            gap: 18px;
            font-size: 14px;
        }

        .main-nav a {
            color: var(--text-main);
            text-decoration: none;
            padding: 4px 0;
        }

        .main-nav a:hover {
            color: var(--accent-dark);
        }

        .header-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .header-burger {
            display: none;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #fff;
        }

        /* ---------- HERO ГЛАВНОЙ ---------- */

        .hero-home-wrap {
            background: linear-gradient(135deg, #ffffff 0%, #fff5f0 100%);
            border-radius: 0 0 24px 24px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.04);
            margin-bottom: 24px;
        }

        .hero-home {
            padding: 26px 16px 26px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1.5fr);
            gap: 26px;
            align-items: center;
        }

        .hero-tagline {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .09em;
            color: var(--accent-dark);
            background: var(--accent-light);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            margin-bottom: 10px;
        }

        .hero-title {
            font-size: 30px;
            margin-bottom: 8px;
        }

        .hero-subtitle {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 640px;
            margin-bottom: 16px;
        }

        .hero-list {
            font-size: 14px;
            margin: 0 0 16px;
            padding: 0;
            list-style: none;
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 6px 20px;
        }

        .hero-list li::before {
            content: "•";
            color: var(--accent);
            margin-right: 6px;
        }

        .hero-actions-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 14px;
            align-items: center;
            margin-bottom: 8px;
        }

        .hero-note {
            font-size: 12px;
            color: var(--text-muted);
        }

        .hero-meta-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .hero-meta-item strong {
            font-weight: 600;
        }

        .hero-side-card {
            border-radius: var(--radius-lg);
            background: #ffffff;
            padding: 16px 16px 14px;
            box-shadow: var(--shadow-soft);
            position: relative;
            overflow: hidden;
        }

        .hero-photo {
            border-radius: 14px;
            height: 220px;
            background: #d9dde5 url("https://via.placeholder.com/480x260?text=Stomatologiya+Ulybka") center/cover no-repeat;
            margin-bottom: 10px;
        }

        .hero-side-metrics {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 10px;
            font-size: 12px;
        }

        .hero-metric {
            border-radius: 12px;
            background: #fafafa;
            padding: 8px 8px 6px;
        }

        .hero-metric-value {
            font-size: 18px;
            font-weight: 700;
        }

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

        .hero-service-shortcuts {
            margin-top: 10px;
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .hero-service-chip {
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 999px;
            background: #f3f4f6;
        }

        /* ---------- ОБЩИЙ ПАТТЕРН СЕКЦИЙ ---------- */

        .section {
            padding: 26px 0;
        }

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

        .section-header {
            margin-bottom: 18px;
        }

        .section-title {
            font-size: 24px;
            margin-bottom: 6px;
        }

        .section-lead {
            font-size: 14px;
            color: var(--text-muted);
            max-width: 760px;
        }

        /* ---------- БЛОК УСЛУГ ---------- */

        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .service-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            padding: 14px 14px 14px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .service-icon {
            width: 32px;
            height: 32px;
            border-radius: 12px;
            background: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--accent-dark);
            margin-bottom: 4px;
        }

        .service-title {
            font-size: 15px;
            font-weight: 600;
        }

        .service-text {
            font-size: 13px;
            color: var(--text-muted);
            flex: 1;
        }

        .service-meta {
            font-size: 13px;
        }

        .service-link {
            font-size: 13px;
            margin-top: 4px;
        }

        /* ---------- БЛОК "КЛИНИКА В ЦИФРАХ" + ПРЕИМУЩЕСТВА ---------- */

        .about-layout {
            display: grid;
            grid-template-columns: minmax(0, 1.4fr) minmax(0, 2fr);
            gap: 24px;
            align-items: flex-start;
        }

        .metrics-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
            margin-top: 10px;
        }

        .metric-card {
            border-radius: var(--radius-md);
            background: #ffffff;
            padding: 12px 12px 10px;
            box-shadow: var(--shadow-soft);
            font-size: 13px;
        }

        .metric-value {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 2px;
        }

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

        .metric-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .adv-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 14px 14px 16px;
            box-shadow: var(--shadow-soft);
            font-size: 14px;
        }

        .adv-icon {
            width: 30px;
            height: 30px;
            border-radius: 12px;
            background: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            color: var(--accent-dark);
            margin-bottom: 6px;
        }

        .adv-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .adv-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- БЛОК "ВРАЧИ" ---------- */

        .doctors-strip {
            background: #f2f7f8;
            border-radius: var(--radius-lg);
            padding: 20px 20px 22px;
        }

        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .doctor-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            padding: 14px 14px 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .doctor-photo {
            width: 82px;
            height: 82px;
            margin: 0 auto 6px;
            border-radius: 50%;
            background: #ddd url("https://via.placeholder.com/82x82?text=Dr") center/cover no-repeat;
        }

        .doctor-name {
            font-size: 14px;
            font-weight: 600;
        }

        .doctor-role {
            font-size: 12px;
            color: var(--text-muted);
        }

        .doctor-exp {
            font-size: 12px;
        }

        .doctor-btn {
            margin-top: 4px;
            font-size: 13px;
            padding: 7px 12px;
        }

        .doctors-footer {
            margin-top: 10px;
            font-size: 13px;
            color: var(--text-muted);
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        /* ---------- БЛОК ФОТО КЛИНИКИ ---------- */

        .gallery-grid {
            display: grid;
            grid-template-columns: 1.6fr 1.4fr;
            gap: 12px;
        }

        .gallery-main {
            border-radius: var(--radius-lg);
            background: #d9dde5 url("https://via.placeholder.com/600x320?text=Recepciya") center/cover no-repeat;
            min-height: 220px;
        }

        .gallery-col {
            display: grid;
            grid-template-rows: 1fr 1fr;
            gap: 10px;
        }

        .gallery-item {
            border-radius: var(--radius-md);
            background: #d9dde5 url("https://via.placeholder.com/290x150?text=Cabinet") center/cover no-repeat;
        }

        .gallery-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* ---------- БЛОК БЛОГА ---------- */

        .blog-layout {
            display: grid;
            grid-template-columns: minmax(0, 2.4fr) minmax(260px, 1.5fr);
            gap: 22px;
        }

        .blog-list {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 14px;
        }

        .blog-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            font-size: 14px;
        }

        .blog-cover {
            height: 120px;
            background: #ddd url("https://via.placeholder.com/260x140?text=Blog") center/cover no-repeat;
        }

        .blog-body {
            padding: 10px 12px 12px;
        }

        .blog-meta-top {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .blog-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .blog-excerpt {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .blog-meta-bottom {
            font-size: 11px;
            color: var(--text-muted);
        }

        .blog-sidebar-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 14px 16px 16px;
            font-size: 13px;
        }

        .blog-topic-list {
            list-style: none;
            margin: 0;
            padding: 0;
            font-size: 13px;
        }

        .blog-topic-list li {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }

        /* ---------- ОТЗЫВЫ ---------- */

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 12px;
        }

        .review-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 12px 14px;
            box-shadow: var(--shadow-soft);
            font-size: 13px;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 4px;
        }

        .review-name {
            font-weight: 600;
        }

        .review-rating {
            color: #ffb400;
        }

        .review-source {
            font-size: 11px;
            color: var(--text-muted);
            margin-bottom: 4px;
        }

        .review-text {
            font-size: 13px;
        }

        /* ---------- БЛОК СЕДАЦИИ (E-A-T) ---------- */

        .sedation-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 18px 18px 18px;
            display: grid;
            grid-template-columns: minmax(0, 2fr) minmax(260px, 1.5fr);
            gap: 22px;
            align-items: center;
        }

        .sedation-note {
            font-size: 13px;
            color: var(--text-muted);
        }

        .sedation-list {
            list-style: none;
            margin: 10px 0 0;
            padding: 0;
            font-size: 14px;
        }

        .sedation-list li {
            display: flex;
            gap: 8px;
            margin-bottom: 6px;
        }

        .sedation-icon {
            font-size: 18px;
            margin-top: 1px;
        }

        .sedation-expert {
            border-radius: var(--radius-md);
            background: #f3f8ff;
            padding: 12px 14px;
            font-size: 13px;
            margin-top: 10px;
        }

        .sedation-expert strong {
            display: block;
            margin-bottom: 4px;
        }

        /* ---------- ЭТАПЫ ЛЕЧЕНИЯ ---------- */

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .step-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 14px 14px 16px;
            box-shadow: var(--shadow-soft);
            font-size: 13px;
        }

        .step-num {
            width: 26px;
            height: 26px;
            border-radius: 999px;
            background: var(--accent-light);
            color: var(--accent-dark);
            font-size: 13px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 6px;
        }

        .step-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

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

        /* ---------- FAQ ---------- */

        .faq-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
            gap: 22px;
        }

        .faq-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

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

        .faq-summary {
            list-style: none;
            cursor: pointer;
            padding: 12px 16px;
            background: #fafafa;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-summary::-webkit-details-marker {
            display: none;
        }

        .faq-question {
            font-weight: 500;
        }

        .faq-icon {
            font-size: 18px;
            margin-left: 8px;
        }

        .faq-body {
            padding: 10px 16px 12px;
            font-size: 14px;
        }

        .faq-side-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 14px 16px 16px;
            font-size: 13px;
        }

        .faq-side-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .faq-side-list li {
            margin-bottom: 6px;
        }

        /* ---------- ФОРМА + КОНТАКТЫ ---------- */

        .contacts-section-inner {
            background: var(--teal);
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 20px 20px 18px;
            display: grid;
            grid-template-columns: minmax(0, 1.8fr) minmax(260px, 1.5fr);
            gap: 22px;
            align-items: center;
        }

        .form-title {
            font-size: 20px;
            margin-bottom: 8px;
        }

        .form-text {
            font-size: 14px;
            margin-bottom: 10px;
        }

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

        .input,
        textarea {
            width: 100%;
            font-family: inherit;
            font-size: 14px;
            padding: 9px 12px;
            border-radius: 999px;
            border: 1px solid #d6dde3;
            outline: none;
        }

        textarea {
            resize: vertical;
            min-height: 70px;
            border-radius: 12px;
        }

        .input:focus,
        textarea:focus {
            border-color: var(--accent-dark);
        }

        .form-note {
            font-size: 12px;
            color: rgba(255,255,255,0.9);
            margin-top: 6px;
        }

        .contacts-box {
            font-size: 14px;
        }

        .contacts-box strong {
            display: block;
            margin-bottom: 4px;
        }

        .contacts-list {
            list-style: none;
            margin: 0 0 8px;
            padding: 0;
            font-size: 13px;
        }

        .contacts-list li {
            margin-bottom: 4px;
        }

        .schedule-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 4px;
            font-size: 13px;
            margin-top: 6px;
        }

        .map-placeholder {
            border-radius: var(--radius-md);
            background: #d9dde5 url("https://via.placeholder.com/360x180?text=Map") center/cover no-repeat;
            height: 180px;
            margin-top: 10px;
        }

        /* ---------- ФУТЕР ---------- */

        .site-footer {
            margin-top: 26px;
            background: #111827;
            color: #e5e7eb;
            padding: 24px 0 20px;
            font-size: 13px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
            gap: 22px;
            margin-bottom: 12px;
        }

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

        .footer-logo-mark {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .footer-logo-text-main {
            font-size: 16px;
            font-weight: 700;
        }

        .footer-logo-text-sub {
            font-size: 11px;
            color: #9ca3af;
        }

        .footer-text {
            color: #9ca3af;
        }

        .footer-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

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

        .footer-list li {
            margin-bottom: 4px;
        }

        .footer-list a {
            color: #e5e7eb;
            text-decoration: none;
        }

        .footer-list a:hover {
            color: var(--accent-light);
        }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            border-top: 1px solid #1f2937;
            padding-top: 10px;
            color: #9ca3af;
            font-size: 12px;
        }

        /* ---------- АДАПТИВ ---------- */

        @media (max-width: 1100px) {
            .services-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .advantages-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .doctors-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .steps-grid {
                grid-template-columns: repeat(3, minmax(0, 1fr));
            }

            .blog-list {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 992px) {
            .header-main-inner {
                grid-template-columns: auto auto;
                grid-template-rows: auto auto;
                row-gap: 8px;
            }

            .main-nav {
                display: none;
            }

            .header-burger {
                display: inline-flex;
            }

            .hero-grid {
                grid-template-columns: 1fr;
            }

            .hero-home-wrap {
                border-radius: 0 0 18px 18px;
            }

            .about-layout {
                grid-template-columns: 1fr;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .blog-layout {
                grid-template-columns: 1fr;
            }

            .sedation-card {
                grid-template-columns: 1fr;
            }

            .faq-grid {
                grid-template-columns: 1fr;
            }

            .contacts-section-inner {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .advantages-grid {
                grid-template-columns: 1fr;
            }

            .doctors-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .steps-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .reviews-grid {
                grid-template-columns: 1fr;
            }

            .blog-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero-home {
                padding: 20px 16px 22px;
            }

            .hero-title {
                font-size: 24px;
            }

            .hero-list {
                grid-template-columns: 1fr;
            }

            .section {
                padding: 20px 0;
            }

            .section-title {
                font-size: 20px;
            }

            .about-layout,
            .blog-layout {
                gap: 16px;
            }

            .form-grid {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
            }
        }
		.hero {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 32px;
            display: flex;
            gap: 32px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: "";
            position: absolute;
            right: -120px;
            top: -120px;
            width: 260px;
            height: 260px;
            background: radial-gradient(circle at center, #ffe3d6, transparent 70%);
            opacity: 0.7;
        }

        .hero-content {
            flex: 1 1 55%;
            position: relative;
            z-index: 1;
        }

        .hero-tag {
            display: inline-block;
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 0.06em;
            color: var(--accent-dark);
            background: var(--accent-light);
            padding: 4px 10px;
            border-radius: 999px;
            margin-bottom: 12px;
        }

        .hero-title {
            font-size: 30px;
            margin-bottom: 12px;
        }

        .hero-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .hero-list {
            margin: 0 0 20px;
            list-style: none;
            padding: 0;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 24px;
            font-size: 14px;
        }

        .hero-list li::before {
            content: "•";
            color: var(--accent);
            margin-right: 6px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 16px;
            align-items: center;
        }

        .btn-primary {
            background: linear-gradient(90deg, var(--accent) 0%, var(--accent-dark) 100%);
            border: none;
            border-radius: 999px;
            padding: 12px 26px;
            font-size: 15px;
            font-weight: 600;
            color: #ffffff;
            cursor: pointer;
            transition: box-shadow .2s ease, transform .15s ease, opacity .15s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            white-space: nowrap;
        }

        .btn-primary:hover {
            box-shadow: 0 8px 18px rgba(230, 86, 34, 0.35);
            transform: translateY(-1px);
            opacity: .96;
        }

        .btn-outline {
            border-radius: 999px;
            border: 1px solid var(--accent);
            padding: 10px 22px;
            font-size: 14px;
            font-weight: 500;
            color: var(--accent-dark);
            background: transparent;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .btn-outline span {
            font-size: 18px;
            line-height: 1;
        }

        .hero-note {
            font-size: 13px;
            color: var(--text-muted);
        }

        .hero-image {
            flex: 1 1 45%;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-inner {
            background: linear-gradient(135deg, #fffdfa, #ffe7dc);
            border-radius: var(--radius-lg);
            padding: 24px;
            position: relative;
        }

        .hero-image-teeth {
            width: 260px;
            height: 200px;
            background: url("https://stomatologiya-ulybka.ru/wp-content/uploads/2022/12/implantatsiya-3d.png") center/cover no-repeat;
            border-radius: 20px;
        }

        .hero-price-badge {
            position: absolute;
            bottom: 20px;
            right: 24px;
            background: #ffffff;
            border-radius: 999px;
            padding: 10px 18px;
            box-shadow: var(--shadow-soft);
            font-size: 13px;
        }

        .hero-price-badge strong {
            color: var(--accent-dark);
            font-size: 17px;
        }

        .hero-label {
            position: absolute;
            top: 16px;
            left: 22px;
            background: #ffffff;
            padding: 6px 12px;
            border-radius: 999px;
            font-size: 12px;
            box-shadow: var(--shadow-soft);
        }

        /* ---------- БЛОК: Кратко о процедуре ---------- */

        .facts-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
            margin: 28px 0 34px;
        }

        .fact-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 16px 18px;
            box-shadow: var(--shadow-soft);
        }

        .fact-label {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .fact-value {
            font-weight: 700;
            font-size: 16px;
            margin-bottom: 6px;
        }

        .fact-note {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- ОБЩЕЕ ОПИСАНИЕ + CTA ---------- */

        .section {
            margin: 40px 0;
        }

        .section-header {
            margin-bottom: 18px;
        }

        .section-title {
            font-size: 24px;
        }

        .section-lead {
            font-size: 15px;
            color: var(--text-muted);
            max-width: 760px;
        }

        .section-body {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-soft);
        }

        .two-column {
            display: grid;
            grid-template-columns: 3fr 2.2fr;
            gap: 28px;
        }

        .cta-inline {
            background: #0d6f70;
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            position: relative;
            overflow: hidden;
        }

        .cta-inline::after {
            content: "";
            position: absolute;
            right: -40px;
            bottom: -40px;
            width: 160px;
            height: 160px;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.38), transparent 70%);
        }

        .cta-inline-title {
            font-size: 18px;
        }

        .cta-inline-text {
            font-size: 14px;
            max-width: 320px;
        }

        .cta-inline-form {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            max-width: 420px;
        }

        .input {
            border-radius: 999px;
            border: none;
            padding: 9px 16px;
            font-size: 14px;
            width: 100%;
        }

        .input::placeholder {
            color: #999;
        }

        .input-wrapper {
            flex: 1 1 45%;
        }

        .cta-inline .btn-primary {
            background: #ffffff;
            color: #0d6f70;
        }

        .cta-inline .btn-primary:hover {
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
        }

        .cta-inline-note {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
        }

        /* ---------- ПРЕИМУЩЕСТВА ---------- */

        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 18px;
        }

        .adv-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 18px 18px 20px;
            box-shadow: var(--shadow-soft);
            position: relative;
        }

        .adv-icon {
            width: 36px;
            height: 36px;
            border-radius: 12px;
            background: var(--accent-light);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 18px;
            color: var(--accent-dark);
        }

        .adv-title {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .adv-text {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* ---------- ГАЛЕРЕЯ ДО/ПОСЛЕ ---------- */

        .before-after {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 22px 24px 20px;
            box-shadow: var(--shadow-soft);
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: 1.2fr 1.2fr 1.6fr;
            gap: 18px;
        }

        .ba-item {
            border-radius: var(--radius-md);
            background: #f0f0f0;
            overflow: hidden;
            position: relative;
            min-height: 160px;
        }

        .ba-label {
            position: absolute;
            left: 12px;
            top: 10px;
            background: rgba(0, 0, 0, 0.7);
            color: #ffffff;
            font-size: 12px;
            text-transform: uppercase;
            padding: 3px 8px;
            border-radius: 999px;
        }

        .ba-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #d7dde3, #f3f3f3);
        }

        .ba-case {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.5;
        }

        .ba-case strong {
            color: var(--text-main);
        }

        .ba-meta {
            margin-top: 8px;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- КАРТОЧКИ "Решаемые задачи" ---------- */

        .tasks-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .task-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 18px 16px;
            box-shadow: var(--shadow-soft);
        }

        .task-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 4px;
        }

        .task-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- Показания/Противопоказания ---------- */

        .indications-section .section-body {
            padding: 0;
        }

        .indications-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .indications-col {
            padding: 24px 28px;
        }

        .indications-col:nth-child(1) {
            border-right: 1px solid var(--border-color);
        }

        .indications-col:nth-child(2) {
            background: #fff7f4;
        }

        .indications-title {
            font-size: 18px;
            margin-bottom: 10px;
        }

        .check-list,
        .cross-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .check-list li,
        .cross-list li {
            display: flex;
            align-items: flex-start;
            gap: 8px;
            font-size: 14px;
            margin-bottom: 6px;
        }

        .check-list-icon,
        .cross-list-icon {
            font-size: 18px;
            margin-top: 1px;
        }

        .check-list-icon {
            color: #32a852;
        }

        .cross-list-icon {
            color: #e42121;
        }

        /* ---------- ЭТАПЫ ---------- */

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 16px;
        }

        .step-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 18px 18px 20px;
            box-shadow: var(--shadow-soft);
            position: relative;
        }

        .step-num {
            width: 28px;
            height: 28px;
            border-radius: 999px;
            background: var(--accent-light);
            color: var(--accent-dark);
            font-size: 14px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 8px;
        }

        .step-title {
            font-size: 15px;
            margin-bottom: 6px;
        }

        .step-text {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- ТЕКСТОВОЙ БЛОК ---------- */

        .text-block {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 24px 28px;
            box-shadow: var(--shadow-soft);
            font-size: 14px;
            line-height: 1.75;
        }

        .text-block h3 {
            font-size: 18px;
            margin-top: 16px;
            margin-bottom: 8px;
        }

        .text-block ul {
            margin: 0 0 12px 20px;
        }

        /* ---------- CTA ПОЛОСА ---------- */

        .cta-strip {
            background: #0d6f70;
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            box-shadow: var(--shadow-soft);
        }

        .cta-strip-title {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .cta-strip-text {
            font-size: 14px;
        }

        .cta-strip-contacts {
            font-size: 14px;
        }

        .cta-strip-phone {
            font-size: 18px;
            font-weight: 600;
        }

        /* ---------- СИСТЕМЫ ИМПЛАНТОВ ---------- */

        .brands-row {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
        }

        .brand-card {
            flex: 0 0 200px;
            background: #ffffff;
            border-radius: var(--radius-md);
            padding: 16px;
            box-shadow: var(--shadow-soft);
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .brand-tag {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--text-muted);
        }

        .brand-name {
            font-size: 15px;
            font-weight: 700;
        }

        .brand-country {
            font-size: 13px;
            color: var(--text-muted);
        }

        .brand-note {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ---------- ВРАЧ ---------- */

        .doctors-list .doctor-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 22px 24px;
            box-shadow: var(--shadow-soft);
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 5px 22px;
            align-items: flex-start;
        }
.doctor-info2{
    grid-column: span 2;
}
        .doctors-list .doctor-photo {
            width: 140px;
            height: 210px;
            border-radius: 15px;
            background: #dcdcdc url("https://via.placeholder.com/140x140?text=Doctor") center/cover no-repeat;
background-position: top;
        }

        .doctor-name {
            font-size: 18px;
            margin-bottom: 4px;
        }

        .doctor-position {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .doctor-exp {
            font-size: 13px;
            margin-bottom: 10px;
        }

        .doctor-list {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        /* ---------- ЦЕНЫ ---------- */

        .prices-table-wrap {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 24px 24px 6px;
            box-shadow: var(--shadow-soft);
        }

        .prices-table {
            width: 100%;
            border-collapse: collapse;
        }

        .prices-table th,
        .prices-table td {
            padding: 10px 8px;
            font-size: 14px;
        }

        .prices-table th {
            text-align: left;
            font-weight: 600;
            border-bottom: 1px solid var(--border-color);
        }

        .prices-table tr + tr td {
            border-top: 1px solid var(--border-color);
        }

        .prices-table td:last-child {
            white-space: nowrap;
            text-align: right;
            font-weight: 600;
        }

        .prices-hint {
            font-size: 13px;
            color: var(--text-muted);
            margin-top: 10px;
            margin-bottom: 12px;
        }

        .prices-all-link {
            text-align: right;
            font-size: 14px;
            margin-bottom: 4px;
        }

        /* ---------- FAQ ---------- */

        .faq-list {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

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

        .faq-summary {
            list-style: none;
            cursor: pointer;
            padding: 14px 18px;
            background: var(--accent);
            color: #ffffff;
            font-size: 14px;
            position: relative;
        }

        .faq-summary::marker,
        .faq-summary::-webkit-details-marker {
            display: none;
        }

        .faq-summary span {
            margin-right: 24px;
            display: inline-block;
        }

        details[open] .faq-summary {
            background: var(--accent-dark);
        }

        .faq-icon {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 18px;
            transition: transform .2s ease;
        }

        details[open] .faq-icon {
            transform: translateY(-50%) rotate(90deg);
        }

        .faq-body {
            padding: 14px 18px 16px;
            background: #ffffff;
            color: var(--text-main);
            font-size: 14px;
        }

        /* ---------- ФОРМА ---------- */

        .form-section .section-body {
            background: #0d6f70;
            color: #ffffff;
        }

        .form-title {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .form-text {
            font-size: 14px;
            margin-bottom: 16px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 2fr 1.5fr;
            gap: 20px;
            align-items: center;
        }

        .form-fields {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .form-fields .input-wrapper {
            flex: 1 1 45%;
        }

        .form-section .input {
            border-radius: 10px;
        }

        .form-note {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 8px;
        }

        /* ---------- СТАТЬИ ---------- */

        .cards-row {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 16px;
        }

        .article-card {
            background: #ffffff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .article-cover {
            height: 150px;
            background: #ddd url("https://via.placeholder.com/420x260?text=Article") center/cover no-repeat;
        }

        .article-body {
            padding: 14px 16px 16px;
        }

        .article-tag {
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: .08em;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .article-title {
            font-size: 15px;
            margin-bottom: 8px;
        }

        .article-meta {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ---------- КАРТОЧКИ ВРАЧЕЙ ---------- */

        .doctors-slider {
            background: #f2f7f8;
            border-radius: var(--radius-lg);
            padding: 24px 24px 26px;
        }

        .doctors-row {
            display: grid;
            grid-template-columns: repeat(4, minmax(0, 1fr));
            gap: 14px;
        }

        .doctor-small {
            background: #ffffff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-soft);
            padding: 14px 14px 16px;
            text-align: center;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .doctor-small-photo {
            width: 86px;
            height: 86px;
            margin: 0 auto 6px;
            border-radius: 50%;
            background: #ddd url("https://via.placeholder.com/86x86?text=Dr") center/cover no-repeat;
        }

        .doctor-small-name {
            font-size: 14px;
            font-weight: 600;
        }

        .doctor-small-position {
            font-size: 12px;
            color: var(--text-muted);
        }

        .doctor-small-exp {
            font-size: 12px;
        }

        .doctor-small-btn {
            margin-top: 4px;
            font-size: 13px;
            padding: 8px 14px;
        }

        /* ---------- ОТЗЫВ ---------- */

        .review-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            padding: 20px 22px;
            box-shadow: var(--shadow-soft);
            font-size: 14px;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 6px;
        }

        .review-name {
            font-weight: 600;
        }

        .review-rating {
            color: #ffb400;
        }

        .review-source {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ---------- ФУТЕРНЫЙ CTA ---------- */

        .bottom-cta {
            background: #0d6f70;
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 22px 24px 20px;
            display: grid;
            grid-template-columns: 2fr 1.4fr;
            gap: 18px;
            align-items: center;
        }

        .bottom-cta h2 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .bottom-cta p {
            font-size: 14px;
        }

        .bottom-cta .btn-primary {
            background: #ffffff;
            color: #0d6f70;
            justify-content: center;
        }

        /* ---------- АДАПТИВ ---------- */

        @media (max-width: 992px) {
            .hero {
                flex-direction: column;
                padding: 24px;
            }

            .facts-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .two-column {
                grid-template-columns: 1fr;
            }

            .advantages-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .before-after-grid {
                grid-template-columns: 1fr 1fr;
            }

            .steps-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .cards-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .doctors-row {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }

            .bottom-cta,
            .form-grid,
            .doctor-card {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 18px;
            }

            .hero-title {
                font-size: 24px;
            }

            .facts-grid,
            .advantages-grid,
            .tasks-grid,
            .steps-grid,
            .cards-row,
            .doctors-row {
                grid-template-columns: 1fr;
            }

            .before-after-grid {
                grid-template-columns: 1fr;
            }

            .cta-strip {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-inline-form,
            .form-fields {
                flex-direction: column;
            }
        }
		.chip {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            border: 1px solid #dde2e7;
            padding: 5px 12px;
            font-size: 13px;
            background: #ffffff;
            color: #555;
            cursor: pointer;
            white-space: nowrap;
        }

        .chip--active {
            border-color: var(--accent);
            background: var(--accent-light);
            color: var(--accent-dark);
            font-weight: 600;
        }

        /* ---------- HEADER (как в общем макете) ---------- */

        .site-header {
            background: #ffffff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.04);
            position: sticky;
            top: 0;
            z-index: 50;
        }

        .header-top {
            font-size: 13px;
            color: #ffffff;
            background: var(--teal);
        }

        .header-top-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 16px;
        }

        .header-top-left,
        .header-top-right {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            align-items: center;
        }

        .header-main {
            padding: 10px 0;
        }

        .header-main-inner {
            display: grid;
            grid-template-columns: auto 1fr auto;
            gap: 18px;
            align-items: center;
        }

        .logo-block {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-mark {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-weight: 700;
            font-size: 18px;
        }

        .logo-text-main { font-size: 18px; font-weight: 700; }
        .logo-text-sub { font-size: 12px; color: var(--text-muted); }

        .main-nav {
            display: flex;
            justify-content: center;
            gap: 18px;
            font-size: 14px;
        }

        .main-nav a {
            color: var(--text-main);
            text-decoration: none;
            padding: 4px 0;
        }

        .main-nav a:hover { color: var(--accent-dark); }

        .header-actions {
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .header-burger {
            display: none;
            width: 32px;
            height: 32px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            background: #fff;
        }

        /* ---------- HERO страницы услуг ---------- */

        .services-hero-wrap {
            background: #ffffff;
            border-radius: 0 0 24px 24px;
            box-shadow: 0 4px 18px rgba(0,0,0,0.04);
            margin-bottom: 24px;
        }

        .services-hero {
            padding: 22px 0 22px;
        }

        .services-hero-grid {
            display: grid;
            grid-template-columns: minmax(0, 2.1fr) minmax(260px, 1.5fr);
            gap: 24px;
            align-items: start;
        }

        .breadcrumb {
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        .breadcrumb a { color: var(--text-muted); }

        .services-hero-title {
            font-size: 28px;
            margin-bottom: 6px;
        }

        .services-hero-lead {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 10px;
            max-width: 680px;
        }

        .services-hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 10px 16px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .direction-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 10px;
        }

        .services-hero-note {
            font-size: 12px;
            color: var(--text-muted);
        }

        .services-hero-side {
            border-radius: 16px;
            background: var(--teal-soft);
            padding: 14px 16px 14px;
        }

        .services-hero-side h3 {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .services-hero-side p {
            font-size: 13px;
            margin-bottom: 8px;
        }

        .services-hero-side ul {
            font-size: 13px;
            margin-left: 18px;
        }

        /* ---------- Основной layout: навигация направлений + список услуг ---------- */

        .section {
            padding: 24px 0;
        }

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

        .services-layout {
            display: grid;
            grid-template-columns: minmax(260px, 0.9fr) minmax(0, 2.4fr);
            gap: 24px;
            align-items: flex-start;
        }

        .services-nav {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 14px 14px 16px;
            font-size: 13px;
        }

        .services-nav-title {
            font-weight: 600;
            margin-bottom: 6px;
            font-size: 14px;
        }

        .services-nav-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .services-nav-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 0;
            border-bottom: 1px solid #f1f3f6;
        }

        .services-nav-item:last-child { border-bottom: none; }

        .services-nav-link-wrap {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .services-nav-icon {
            width: 22px;
            height: 22px;
            border-radius: 999px;
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
        }

        .services-nav a {
            font-weight: 500;
            color: var(--text-main);
        }

        .services-nav-count {
            font-size: 12px;
            color: var(--text-muted);
        }

        .services-nav-note {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .services-nav-note a { color: var(--accent-dark); }

        .services-groups {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .services-group {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            padding: 16px 16px 14px;
        }

        .services-group-header {
            display: flex;
            justify-content: space-between;
            gap: 10px;
            align-items: center;
            margin-bottom: 10px;
        }

        .services-group-title {
            font-size: 18px;
            margin-bottom: 2px;
        }

        .services-group-sub {
            font-size: 13px;
            color: var(--text-muted);
        }

        .services-group-labels {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            justify-content: flex-end;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 10px 12px;
        }

        .service-item {
            border-radius: var(--radius-md);
            border: 1px solid #edf0f3;
            padding: 10px 10px 10px;
            font-size: 13px;
        }

        .service-item-header {
            display: flex;
            justify-content: space-between;
            gap: 6px;
            align-items: baseline;
            margin-bottom: 4px;
        }

        .service-item-title {
            font-size: 14px;
            font-weight: 600;
        }

        .service-item-price {
            font-size: 12px;
            color: #2d7a3e;
        }

        .service-item-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 4px;
            margin-bottom: 4px;
        }

        .service-item-tag {
            border-radius: 999px;
            background: #f3f4f6;
            padding: 2px 8px;
            font-size: 11px;
            color: #555;
        }

        .service-item-text {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 6px;
        }

        .service-item-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 6px;
            font-size: 12px;
        }

        .service-item-link {
            font-weight: 500;
        }

        .service-item-cta {
            font-size: 12px;
            color: var(--accent-dark);
        }

        .services-note {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 10px;
        }

        /* ---------- Дополнительные блоки (FAQ, CTA) ---------- */

        .services-extra-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) minmax(260px, 1.2fr);
            gap: 18px;
        }

        .faq-card {
            background: #ffffff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-soft);
            overflow: hidden;
        }

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

        .faq-summary {
            list-style: none;
            cursor: pointer;
            padding: 10px 14px;
            background: #fafafa;
            font-size: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-summary::-webkit-details-marker { display: none; }

        .faq-icon {
            font-size: 18px;
            margin-left: 8px;
        }

        .faq-body {
            padding: 8px 14px 10px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .services-cta-card {
            background: var(--teal);
            color: #ffffff;
            border-radius: var(--radius-lg);
            padding: 14px 16px 14px;
            font-size: 13px;
        }

        .services-cta-card h3 {
            font-size: 16px;
            margin-bottom: 6px;
        }

        .services-cta-card p {
            margin-bottom: 8px;
        }

        /* ---------- FOOTER (короткий) ---------- */

        .site-footer {
            margin-top: 26px;
            background: #111827;
            color: #e5e7eb;
            padding: 20px 0 16px;
            font-size: 13px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
            gap: 18px;
            margin-bottom: 10px;
        }

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

        .footer-logo-mark {
            width: 40px;
            height: 40px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--accent), var(--accent-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .footer-logo-text-main { font-size: 16px; font-weight: 700; }
        .footer-logo-text-sub { font-size: 11px; color: #9ca3af; }

        .footer-title {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
        }

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

        .footer-list li { margin-bottom: 4px; }

        .footer-list a {
            color: #e5e7eb;
            text-decoration: none;
        }

        .footer-list a:hover { color: var(--accent-light); }

        .footer-bottom {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            border-top: 1px solid #1f2937;
            padding-top: 8px;
            color: #9ca3af;
            font-size: 12px;
        }

        /* ---------- Адаптив ---------- */

        @media (max-width: 992px) {
            .header-main-inner {
                grid-template-columns: auto auto;
                grid-template-rows: auto auto;
                row-gap: 8px;
            }

            .main-nav { display: none; }
            .header-burger { display: inline-flex; }

            .services-hero-grid {
                grid-template-columns: 1fr;
            }

            .services-layout {
                grid-template-columns: 1fr;
            }

            .services-list {
                grid-template-columns: 1fr;
            }

            .services-extra-grid {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 640px) {
            .services-hero-title { font-size: 22px; }

            .direction-chips {
                gap: 6px;
            }

            .chip {
                padding: 4px 10px;
                font-size: 12px;
            }

            .section { padding: 20px 0; }

            .footer-top {
                grid-template-columns: 1fr;
            }
        }