:root {
            --accent: #ff6b35;
            --accent-dark: #e65622;
            --accent-light: #ffe1d3;
			--teal: #0d6f70;
            --teal-soft: #f2f7f8;
            --text-main: #333333;
            --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;
        }

        * {
            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.6;
        }

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

        .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;
        }

        /* ---------- HERO ---------- */
        .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);
        }

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

        .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: 210px;
    border-radius: 15px;
            background: #dcdcdc url("https://via.placeholder.com/140x140?text=Doctor") 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://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: 124px;
            margin: 0 auto 6px;
            border-radius: 15px;
            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;
        }
		.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;
        }
		 .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;
        }
		.btn-ghost{
			    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #ffffff;
    background: transparent;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
		}
        /* ---------- АДАПТИВ ---------- */
		@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: 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;
            }
			.footer-top {
                grid-template-columns: 1fr;
            }
        }