/* ============================================================
   ASSETS/CSS/STYLE.CSS — ПОЛНЫЙ ФАЙЛ СТИЛЕЙ
   Версия: 1.1
   ============================================================ */

/* ============================================================
   1. ПЕРЕМЕННЫЕ (ROOT)
   ============================================================ */
:root {
    --primary: #595dfe;
    --primary-dark: #3d42d4;
    --primary-light: #8b8eff;
    --primary-bg: #eeefff;
    --secondary: #04a4ff;
    --secondary-dark: #0382cc;
    --secondary-light: #66c8ff;
    --secondary-bg: #e6f4ff;
    --ink: #202c38;
    --ink-soft: #3d4a56;
    --muted: #7a8793;
    --line: #d5dee4;
    --surface: #ffffff;
    --surface-soft: #ecf1f3;
    --container: 1330px;
    --radius: 18px;
    --radius-sm: 10px;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 40px rgba(0, 0, 0, 0.10);
}

/* ============================================================
   2. БАЗА
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    margin: 0;
    overflow-x: clip;
    color: var(--ink);
    background: var(--surface);
    font-family: var(--font);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; cursor: pointer; background: none; }
ul, ol { list-style: none; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }

/* ============================================================
   3. КНОПКИ
   ============================================================ */
.btn {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: transparent;
}
.btn--primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    box-shadow: 0 4px 20px rgba(89, 93, 254, 0.35);
}
.btn--outline {
    color: var(--ink);
    background: transparent;
    border-color: var(--line);
}
.btn--outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}
.btn--ghost {
    color: var(--ink-soft);
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
}
.btn--ghost:hover {
    background: #fff;
    border-color: var(--primary);
    color: var(--primary);
}
.btn--large { min-height: 56px; padding: 14px 36px; font-size: 15px; }
.btn--small { min-height: 40px; padding: 8px 18px; font-size: 12px; }
.btn .icon { font-size: 1.1em; }

/* ============================================================
   4. БЭЙДЖ
   ============================================================ */
.badge {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--secondary-bg);
}
.badge--primary {
    color: var(--primary);
    background: var(--primary-bg);
}

/* ============================================================
   5. ЗАГОЛОВКИ СЕКЦИЙ
   ============================================================ */
.section-head {
    text-align: center;
    margin-bottom: 32px;
}
.section-head .badge { margin-bottom: 8px; }
.section-head h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--ink);
    text-transform: uppercase;
}
.section-head p {
    max-width: 640px;
    margin: 10px auto 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}
.text-center { text-align: center; }
.section { padding: 50px 0; }
.wrapper-page { padding: 0; }

/* ============================================================
   6. БЛОК: WELCOME (главный баннер)
   ============================================================ */
.section-welcome {
    position: relative;
    padding: 60px 0 0 0;
    background: var(--surface-soft);
    overflow: hidden;
    isolation: isolate;
}
.section-welcome__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
}
.section-welcome__content {
    max-width: 760px;
    position: relative;
    z-index: 2;
}
.section-welcome__content .eyebrow {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--secondary-bg);
    margin-bottom: 16px;
}
.section-welcome__content h1 {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 12px;
}
.section-welcome__content h1 span { color: var(--secondary); }
.section-welcome__content .subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 16px;
    line-height: 1.3;
}
.section-welcome__content p {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 640px;
}
.section-welcome__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.section-welcome__actions .btn {
    min-height: 60px;
    padding: 16px 40px;
    font-size: 16px;
}
.section-welcome__visual {
    flex-shrink: 0;
    width: 42%;
    max-width: 560px;
    min-height: 400px;
    border-radius: var(--radius);
    background: var(--surface-soft);
    position: relative;
    overflow: hidden;
}
.section-welcome__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 6.1. ПРЕИМУЩЕСТВА В WELCOME (НА ВСЮ ШИРИНУ) */
.section-welcome__benefits {
    background: var(--surface);
    border-top: 1px solid var(--line);
    padding: 24px 0;
}
.welcome-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.welcome-benefits__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
    border: 1px solid var(--surface-soft);
}
.welcome-benefits__item:hover { background: var(--surface-soft); }
.welcome-benefits__icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    background: var(--primary-bg);
    color: var(--primary);
    font-size: 22px;
    transition: background 0.2s ease, color 0.2s ease;
}
.welcome-benefits__item:hover .welcome-benefits__icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--surface);
}
.welcome-benefits__content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.welcome-benefits__value {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
    letter-spacing: -0.02em;
}
.welcome-benefits__label {
    font-size: 14px;
    font-weight: 500;
    color: var(--muted);
    line-height: 1.3;
}

/* ============================================================
   7. БЛОК: АКЦИЯ
   ============================================================ */
.section-promo { padding: 30px 0 50px 0; }
.promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 40px 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius);
    color: #fff;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.promo-banner::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}
.promo-banner::after {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: -100px;
    left: 30%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}
.promo-banner__content {
    flex: 1;
    position: relative;
    z-index: 1;
}
.promo-banner__badge {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--primary);
    background: #fff;
    margin-bottom: 12px;
}
.promo-banner__title {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.promo-banner__title span { color: #ffd93d; }
.promo-banner__desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 520px;
    margin-bottom: 20px;
}
.promo-banner__desc strong { color: #ffd93d; font-weight: 800; }
.promo-banner__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.promo-banner__phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    transition: color 0.2s ease;
}
.promo-banner__phone:hover { color: #ffd93d; }
.promo-banner__phone i { font-size: 20px; }
.promo-banner__actions .btn {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}
.promo-banner__actions .btn:hover {
    background: var(--primary-bg);
    transform: translateY(-2px);
}
.promo-banner__visual {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}
.promo-banner__icon {
    font-size: 48px;
    color: #fff;
}
.promo-banner__icon i { display: block; }

/* ============================================================
   8. БЛОК: ПОПУЛЯРНЫЕ УСЛУГИ И ЦЕНЫ
   ============================================================ */
.section-prices {
    padding: 60px 0 80px;
    background: var(--surface-soft);
}
.prices-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    gap: 24px;
}
.prices-header__info .badge { margin-bottom: 8px; }
.prices-header__info h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 4px;
}
.prices-header__info p {
    color: var(--muted);
    font-size: 16px;
}
.prices-header__cta { flex-shrink: 0; }
.prices-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}
.prices-sidebar {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.prices-menu {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 8px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.prices-menu__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
    text-align: left;
    border: none;
}
.prices-menu__item:hover {
    background: var(--surface-soft);
    color: var(--primary);
}
.prices-menu__item--active {
    background: var(--secondary-bg);
    color: var(--secondary);
}
.prices-menu__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--secondary-bg);
    color: var(--secondary);
    transition: var(--transition-fast);
}
.prices-menu__item--active .prices-menu__icon,
.prices-menu__item:hover .prices-menu__icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--surface);
}
.prices-menu__label { flex: 1; }
.prices-menu__count {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    background: var(--surface-soft);
    padding: 2px 8px;
    border-radius: 100px;
    min-width: 24px;
    text-align: center;
}
.prices-menu__item--active .prices-menu__count {
    background: rgba(89, 93, 254, 0.15);
    color: var(--secondary);
}
.prices-sidebar__cta {
    background: var(--ink);
    color: var(--surface);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.06);
}
.prices-sidebar__cta-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
}
.prices-sidebar__cta h3 {
    color: var(--surface);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.prices-sidebar__cta p {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}
.prices-sidebar__cta .btn { min-height: 44px; font-size: 14px; }
.prices-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.price-category { animation: fadeIn 0.35s ease; }
.price-category.hidden { display: none; }
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
.price-table {
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.price-table__header {
    display: grid;
    grid-template-columns: 1fr 160px 140px 140px;
    background: var(--secondary-bg);
    padding: 16px 24px;
    border-bottom: 1px solid var(--line);
    align-items: center;
}
.price-table__header .price-table__col {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}
.price-table__col--service {
    text-align: left;
    justify-content: flex-start;
}
.price-table__col--region,
.price-table__col--our,
.price-table__col--save {
    text-align: center;
    justify-content: center;
}
.price-table__row {
    display: grid;
    grid-template-columns: 1fr 160px 140px 140px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    transition: background 0.16s ease;
    align-items: center;
    min-height: 100px;
}
.price-table__row:last-child { border-bottom: none; }
.price-table__row:hover { background: var(--surface-soft); }
.price-table__row--highlight {
    background: var(--primary-bg);
    border-left: 3px solid var(--primary);
}
.price-table__row--highlight:hover { background: #e0e1ff; }
.price-table__col--service {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.price-table__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}
.price-table__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.4;
}
.price-table__badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--surface);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 2px 12px;
    border-radius: 4px;
    margin-bottom: 4px;
    width: fit-content;
}
.price-table__guarantee {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    margin-top: 2px;
}
.price-table__region-price {
    font-size: 16px;
    font-weight: 700;
    color: var(--muted);
    text-decoration: line-through;
}
.price-table__our-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
}
.price-table__col--save {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}
.price-table__save-amount {
    font-size: 18px;
    font-weight: 800;
    color: #e35400;
    background: #fef9e7;
    padding: 4px 16px;
    border-radius: 50px;
    display: inline-block;
}
.price-table__save-percent {
    font-size: 14px;
    font-weight: 700;
    color: #d35400;
}
.prices-footnote {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    flex-wrap: wrap;
}
.prices-footnote p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}
.prices-footnote .btn {
    min-height: 38px;
    padding: 8px 20px;
    font-size: 12px;
    flex-shrink: 0;
}

/* ============================================================
   9. БЛОК: ПРЕИМУЩЕСТВА (НА ГЛАВНОЙ)
   ============================================================ */
.section-advantages { background: var(--surface-soft); }
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}
.advantage-card {
    padding: 24px 20px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    text-align: center;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.advantage-card:hover {
    border-color: var(--primary);
    background: var(--primary-bg);
}
.advantage-card i {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 12px;
    display: block;
}
.advantage-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}
.advantage-card p {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   10. БЛОК: НАШИ ВРАЧИ (КАРТОЧКИ-ПЕРЕВЁРТЫШИ) — ГЛАВНАЯ
   ============================================================ */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.doctor-card {
    perspective: 1000px;
    height: 100%;
    min-height: 380px;
    cursor: pointer;
}
.doctor-card__inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}
.doctor-card.is-flipped .doctor-card__inner { transform: rotateY(180deg); }
.doctor-card__front,
.doctor-card__back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease;
}
.doctor-card__front:hover,
.doctor-card__back:hover { box-shadow: var(--shadow-hover); }
.doctor-card__front {
    display: flex;
    flex-direction: column;
    z-index: 2;
}
.doctor-card__back {
    transform: rotateY(180deg);
    z-index: 1;
    background: var(--surface);
}
.doctor-card__photo {
    height: 220px;
    background: var(--surface-soft);
    overflow: hidden;
    flex-shrink: 0;
}
.doctor-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.doctor-card__name {
    font-size: 17px;
    font-weight: 800;
    color: var(--ink);
    padding: 14px 18px 2px;
    line-height: 1.3;
}
.doctor-card__spec {
    font-size: 14px;
    color: var(--secondary);
    font-weight: 600;
    padding: 0 18px 10px;
}
.doctor-card__flip-hint {
    display: block;
    font-size: 11px;
    color: var(--muted);
    padding: 0 18px 14px;
    margin-top: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}
.doctor-card:hover .doctor-card__flip-hint { opacity: 1; }
.doctor-card__back-content {
    padding: 24px 22px 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow-y: auto;
}
.doctor-card__back-content h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 2px;
    padding-right: 30px;
}
.doctor-card__back-spec {
    font-size: 15px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 4px;
}
.doctor-card__back-exp {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 2px;
}
.doctor-card__back-edu {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 12px;
}
.doctor-card__back-desc {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}
.doctor-card__back-content .btn {
    width: 100%;
    margin-top: auto;
}
.doctor-card__back-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--muted);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: grid;
    place-items: center;
    z-index: 5;
}
.doctor-card__back-close:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}
.doctor-card--form {
    cursor: default;
    perspective: none;
}
.doctor-card--form .doctor-card__inner {
    transform: none !important;
    min-height: auto;
}
.doctor-card--form .doctor-card__front,
.doctor-card--form .doctor-card__back {
    position: relative;
    backface-visibility: visible;
    transform: none;
}
.doctor-card--form .doctor-card__front { display: block; }
.doctor-card--form .doctor-card__back { display: none; }
.doctor-card__form-body {
    padding: 28px 24px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: var(--secondary-bg);
    border: 1px solid var(--secondary-light);
    border-radius: var(--radius);
    min-height: 380px;
}
.doctor-card__form-title {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--secondary-dark);
    text-transform: uppercase;
    margin-bottom: 10px;
}
.doctor-card__form-desc {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 18px;
}
.doctor-card__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
}
.doctor-card__form input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: border-color 0.2s ease;
}
.doctor-card__form input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(4, 164, 255, 0.15);
}
.doctor-card__form input::placeholder { color: var(--muted); }
.doctor-card__form .btn {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
}
.doctor-card__form-consent {
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
    text-align: center;
}
.doctor-card__form-consent a {
    color: var(--secondary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.doctor-card__form-consent a:hover { color: var(--secondary-dark); }
.doctors-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

/* ============================================================
   11. БЛОК: ОТЗЫВЫ (СЛАЙДЕР)
   ============================================================ */
.section-reviews {
    padding: 50px 0;
    background: var(--surface-soft);
}
.reviews-slider {
    position: relative;
    margin-top: 8px;
    padding: 0 48px;
}
.reviews-slider__viewport {
    overflow: hidden;
    border-radius: var(--radius);
}
.reviews-slider__track {
    display: flex;
    transition: transform 0.4s ease;
    will-change: transform;
}
.review-card {
    flex: 0 0 33.333%;
    padding: 0 10px 5px;
    box-sizing: border-box;
}
.review-card__inner {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 22px 18px;
    background: var(--surface);
    transition: border-color 0.16s ease;
    min-height: 175px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.review-card__inner:hover { border-color: var(--primary); }
.review-card .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 8px;
    flex-shrink: 0;
}
.review-card .stars i {
    color: #f5b342;
    font-size: 16px;
}
.review-card .review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.review-card .review-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 2px;
    flex-shrink: 0;
}
.review-card .review-date {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    flex-shrink: 0;
}
.reviews-slider__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink-soft);
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}
.reviews-slider__arrow:hover {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--surface);
}
.reviews-slider__arrow--prev { left: 0; }
.reviews-slider__arrow--next { right: 0; }
.reviews-slider__arrow--disabled {
    opacity: 0.3;
    cursor: default;
    pointer-events: none;
}
.reviews-slider__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.reviews-slider__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    cursor: pointer;
    padding: 0;
    transition: var(--transition-fast);
    font-size: 0;
}
.reviews-slider__dot--active {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-color: var(--primary);
    width: 28px;
    border-radius: 10px;
}
.reviews-external {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 16px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}
.reviews-external__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
}
.reviews-external__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.reviews-external__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--surface);
    border: 1px solid var(--line);
    transition: var(--transition-fast);
    text-decoration: none;
}
.reviews-external__link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-2px);
}
.reviews-external__link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}
.reviews-external__link--2gis:hover {
    border-color: #f15b2a;
    color: #f15b2a;
    background: #fef0eb;
}
.reviews-external__link--prodoctorov:hover {
    border-color: #1a73e8;
    color: #1a73e8;
    background: #e8f0fe;
}
.reviews-external__link--yandex:hover {
    border-color: #fc3f1d;
    color: #fc3f1d;
    background: #fef0ed;
}
.reviews-external__link--zoon:hover {
    border-color: #8b5cf6;
    color: #8b5cf6;
    background: #f3edff;
}

/* ============================================================
   12. БЛОК: FAQ
   ============================================================ */
.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
    margin-top: 8px;
}
.faq-col {
    flex: 1 1 calc(50% - 6px);
    max-width: calc(50% - 6px);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #fff;
    overflow: hidden;
    transition: border-color 0.2s ease;
    width: 100%;
}
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 24px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    list-style: none;
    transition: background 0.16s ease;
    width: 100%;
}
.faq-item summary:hover { background: var(--surface-soft); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    font-size: 14px;
    color: var(--muted);
    transition: transform 0.25s ease;
}
.faq-item[open] summary i {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-item .answer {
    padding: 10px 24px 20px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
}
.faq-item .answer a {
    color: var(--primary);
    font-weight: 600;
}
.faq-item .answer a:hover { text-decoration: underline; }

/* ============================================================
   13. БЛОК: БЛОГ
   ============================================================ */
.section-blog { background: var(--surface-soft); }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 8px;
}
.blog-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.16s ease, box-shadow 0.16s ease;
}
.blog-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.blog-card--large {
    grid-column: span 1;
    grid-row: span 2;
}
.blog-card--wide { grid-column: span 2; }
.blog-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.blog-card__body .tag {
    display: inline-block;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--primary);
    background: var(--primary-bg);
    padding: 2px 10px;
    border-radius: 4px;
    margin-bottom: 6px;
    align-self: flex-start;
}
.blog-card__body h4 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
    line-height: 1.3;
}
.blog-card__body p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}
.blog-card--large .blog-card__body p { -webkit-line-clamp: 5; }
.blog-card__body .btn--small {
    padding: 6px 14px;
    font-size: 10px;
    align-self: flex-start;
}

/* ============================================================
   14. БЛОК: КОНТАКТЫ
   ============================================================ */
.section-contacts {
    padding: 50px 0;
    background: var(--surface-soft);
}
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 8px;
}
.contacts-info { display: flex; }
.contacts-info__card {
    flex: 1;
    padding: 28px 30px 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.contacts-socials {
    display: flex;
    gap: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    flex-wrap: wrap;
}
.contacts-socials__link {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 20px;
    transition: var(--transition-fast);
    background: var(--surface);
    text-decoration: none;
}
.contacts-socials__link img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.contacts-socials__link:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-2px);
}
.contacts-socials__link--max:hover {
    border-color: #8B5CF6;
    color: #8B5CF6;
    background: #f3edff;
}
.contacts-socials__link--wa:hover {
    border-color: #25D366;
    color: #25D366;
    background: #e8f8f0;
}
.contacts-socials__link--tg:hover {
    border-color: #0088cc;
    color: #0088cc;
    background: #e8f2f8;
}
.contacts-socials__link--vk:hover {
    border-color: #2787F5;
    color: #2787F5;
    background: #e8effb;
}
.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.contact-item__icon {
    display: grid;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    place-items: center;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    color: var(--secondary);
    font-size: 18px;
    background: var(--surface);
    transition: var(--transition-fast);
}
.contact-item:hover .contact-item__icon {
    border-color: var(--secondary);
    background: var(--secondary-bg);
}
.contact-item__body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 2px;
}
.contact-item__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}
.contact-item__value {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
}
.contact-item__value a {
    color: var(--ink);
    transition: color 0.16s ease;
}
.contact-item__value a:hover { color: var(--primary); }
.contact-item__phone-secondary {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 1px;
}
.contact-item__schedule {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 2px;
}
.schedule-item {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 6px;
}
.schedule-item__days {
    font-weight: 500;
    color: var(--ink-soft);
}
.schedule-item__time {
    font-weight: 600;
    color: var(--ink);
}
.schedule-item--weekend { background: #fdf2f0; }
.schedule-item--weekend .schedule-item__days { color: var(--ink-soft); }
.schedule-item--weekend .schedule-item__time {
    color: #c0392b;
    font-weight: 600;
}
.contacts-routes {
    display: flex;
    gap: 10px;
    margin-top: 4px;
    flex-wrap: wrap;
}
.contacts-routes__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    background: var(--surface);
    transition: var(--transition-fast);
    text-decoration: none;
}
.contacts-routes__btn i {
    font-size: 14px;
    color: var(--muted);
}
.contacts-routes__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
    transform: translateY(-2px);
}
.contacts-routes__btn:hover i { color: var(--primary); }
.contacts-map {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    min-height: 420px;
    background: var(--surface-soft);
    box-shadow: var(--shadow);
}
.contacts-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: none;
}

/* ============================================================
   15. БЛОК: НИЖНИЙ БАННЕР (ФУТЕР-ПРОМО)
   ============================================================ */
.section-footer-promo {
    padding: 60px 0;
    background: var(--surface);
}
.footer-promo {
    position: relative;
    min-height: 520px;
    border-radius: 26px;
    overflow: hidden;
    isolation: isolate;
    color: var(--ink);
    background: linear-gradient(110deg, #fff 0%, #f8fbff 54%, #e4f0f8 100%);
    box-shadow: 0 20px 60px rgba(15, 58, 107, 0.10);
}
.footer-promo__photo {
    position: absolute;
    z-index: -3;
    inset: 0;
    background-image: url('/assets/img/ban_foot-fon.webp');
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
}
.footer-promo__wash {
    position: absolute;
    z-index: -2;
    inset: 0;
    background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,0.98) 45%, rgba(255,255,255,0.68) 57%, transparent 72%),
                linear-gradient(0deg, #eef7fd 0 145px, transparent 145px);
    pointer-events: none;
}
.footer-promo__content {
    width: 54%;
    padding: 54px 0 180px 64px;
    position: relative;
    z-index: 1;
}
.footer-promo__brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
}
.footer-promo__brand-icon {
    width: 58px;
    height: 58px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--primary);
    background: var(--primary-bg);
}
.footer-promo__brand-icon svg {
    width: 38px;
    height: 38px;
}
.footer-promo__brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.footer-promo__brand-copy strong {
    font-family: var(--font);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.035em;
    color: var(--ink);
}
.footer-promo__brand-copy small {
    margin-top: 4px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    color: var(--muted);
}
.footer-promo__title {
    font-size: 4.8rem;
    font-weight: 500;
    letter-spacing: -0.045em;
    line-height: 0.92;
    margin: 0 0 18px;
    color: var(--ink);
}
.footer-promo__title strong {
    display: block;
    font: inherit;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary);
}
.footer-promo__offer {
    width: 580px;
    min-height: 90px;
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 12px 24px;
    border-radius: 12px;
    color: var(--surface);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    box-shadow: 0 12px 28px rgba(89, 93, 254, 0.25);
    margin-bottom: 20px;
    position: relative;
    z-index: 5;
}
.footer-promo__offer-copy {
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.05;
    text-transform: uppercase;
    flex: 1 1 auto;
    min-width: 0;
}
.footer-promo__offer-copy b {
    font-family: var(--font);
    font-size: 1.8rem;
    color: var(--surface);
}
.footer-promo__offer-copy span {
    max-width: 320px;
    font-size: 0.92rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    line-height: 1.3;
}
.footer-promo__content .btn {
    min-height: 56px;
    padding: 16px 40px;
    font-size: 16px;
    position: relative;
    z-index: 5;
}
.footer-promo__slogan {
    position: absolute;
    z-index: 2;
    right: 5%;
    bottom: 180px;
    width: 38%;
    margin: 0;
    color: var(--secondary-dark);
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    transform: rotate(-4deg);
    text-shadow: 0 1px 10px rgba(255,255,255,0.9);
    pointer-events: none;
}
.footer-promo__contact {
    position: absolute;
    z-index: 3;
    right: 0;
    bottom: 0;
    width: 42%;
    min-height: 145px;
    padding: 18px 34px;
    border-radius: 18px 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--surface);
    text-decoration: none;
    transition: transform 0.2s ease, filter 0.2s ease;
    overflow: hidden;
}
.footer-promo__contact:hover { filter: brightness(1.06); }
.footer-promo__contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-promo__contact-row svg {
    width: 31px;
    height: 31px;
    flex: 0 0 auto;
    color: rgba(255,255,255,0.8);
}
.footer-promo__contact-row strong {
    font-family: var(--font);
    font-size: 1.45rem;
    white-space: nowrap;
}
.footer-promo__contact-address {
    font-size: 0.92rem;
    color: rgba(255,255,255,0.85);
}
.footer-promo__contact-address svg { color: rgba(255,255,255,0.6); }
.footer-promo__benefits {
    position: absolute;
    z-index: 2;
    left: 0;
    bottom: 0;
    width: 58%;
    min-height: 120px;
    padding: 10px 14px 8px 24px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: center;
    background: rgba(238, 247, 253, 0.96);
    border-radius: 0 0 0 26px;
}
.footer-promo__benefit {
    min-width: 0;
    padding: 0 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 650;
    line-height: 1.2;
    text-align: center;
}
.footer-promo__benefit + .footer-promo__benefit {
    border-left: 1px solid rgba(89, 93, 254, 0.22);
}
.footer-promo__benefit-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    background: var(--surface);
    box-shadow: 0 7px 18px rgba(89, 93, 254, 0.13);
    color: var(--primary);
}
.footer-promo__benefit-icon svg {
    width: 22px;
    height: 22px;
}

/* ============================================================
   16. ПОДВАЛ (FOOTER)
   ============================================================ */
.footer {
    padding: 50px 0 20px;
    background: var(--ink);
    color: rgba(255,255,255,0.7);
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand .logo__image {
    width: 150px;
    height: auto;
    margin-bottom: 8px;
}
.footer__slogan {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 16px;
}
.footer__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer__contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 13px;
}
.footer__contact-item i {
    width: 18px;
    color: var(--secondary);
    margin-top: 2px;
    font-size: 15px;
    flex-shrink: 0;
}
.footer__contact-item div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.footer__contact-item strong { color: #fff; font-weight: 700; }
.footer__contact-item a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s ease;
}
.footer__contact-item a:hover { color: var(--secondary); }
.footer__contact-item small {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
}
.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.footer__socials a {
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: border-color 0.2s ease, background 0.2s ease;
}
.footer__socials a:hover {
    border-color: var(--secondary);
    background: rgba(4, 164, 255, 0.1);
}
.footer__socials img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.footer__col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 14px;
}
.footer__col ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer__col ul li a,
.footer__col ul li span {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
    line-height: 1.4;
}
.footer__col ul li a:hover { color: var(--secondary); }
.footer__col ul li span {
    color: rgba(255,255,255,0.4);
    cursor: default;
}
.footer__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}
.footer__buttons .btn {
    min-height: 44px;
    padding: 10px 20px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
}
.footer__vision-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 600;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
    width: 100%;
}
.footer__vision-btn:hover {
    border-color: var(--secondary);
    color: var(--secondary);
    background: rgba(4, 164, 255, 0.08);
}
.footer__docs {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.06);
}
.footer__docs-item {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
}
.footer__legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    padding: 16px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__legal-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.5);
    transition: color 0.2s ease;
    text-decoration: none;
    position: relative;
}
.footer__legal-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--secondary);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}
.footer__legal-links a:hover { color: var(--secondary); }
.footer__legal-links a:hover::after { transform: scaleX(1); }
.footer__legal-links a:not(:last-child)::before {
    content: '';
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 1px;
}
.footer__legal {
    padding: 24px 0 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__legal-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px 20px;
    font-size: 12px;
}
.footer__legal-col {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer__legal-col--full { grid-column: 1 / -1; }
.footer__legal-col .legal-label {
    color: rgba(255,255,255,0.35);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 600;
}
.footer__legal-col .legal-value {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 500;
}
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 12px;
    color: rgba(255,255,255,0.35);
}
.footer__bottom-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.footer__bottom-left .footer__disclaimer {
    font-size: 10px;
    color: rgba(255,255,255,0.25);
}
.footer__bottom-right a {
    color: rgba(255,255,255,0.4);
    transition: color 0.2s ease;
}
.footer__bottom-right a:hover { color: var(--secondary); }
.footer__socials a i {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
    transition: color 0.2s ease;
}
.footer__socials a:hover i { color: var(--secondary); }

/* ============================================================
   17. ПЛАВАЮЩАЯ КНОПКА СВЯЗИ (FLOATING CHAT)
   ============================================================ */
.floating-chat {
    position: fixed;
    z-index: 50;
    right: 20px;
    bottom: 30px;
}
.floating-chat__toggle {
    display: grid;
    width: 56px;
    height: 56px;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(89, 93, 254, 0.4);
    transition: transform 0.3s ease, background 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    z-index: 2;
}
.floating-chat__toggle:hover {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
}
.floating-chat__toggle .fa-times { display: none; }
.floating-chat.is-open .floating-chat__toggle .fa-comment-dots { display: none; }
.floating-chat.is-open .floating-chat__toggle .fa-times { display: block; }
.floating-chat__menu {
    position: absolute;
    right: 0;
    bottom: 68px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.9);
    transition: opacity 0.25s ease, transform 0.25s ease;
    transform-origin: bottom right;
}
.floating-chat.is-open .floating-chat__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}
.chat-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fff;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
    color: var(--ink);
    font-size: 13px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    min-width: 140px;
    justify-content: flex-start;
}
.chat-btn:hover {
    transform: translateX(-4px);
    box-shadow: var(--shadow-hover);
}
.chat-btn i,
.chat-btn img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    text-align: center;
    font-size: 18px;
}
.chat-btn--phone i { color: var(--primary); }
.chat-btn--email i { color: var(--secondary); }
.chat-btn--whatsapp img { width: 22px; height: 22px; }
.chat-btn--max img { width: 22px; height: 22px; }

/* ============================================================
   18. МОДАЛЬНОЕ ОКНО ЗАПИСИ
   ============================================================ */
.appointment-dialog {
    width: min(520px, calc(100% - 32px));
    max-height: min(90vh, 700px);
    padding: 0;
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    color: var(--ink);
    box-shadow: var(--shadow-hover);
    margin: auto;
}
.appointment-dialog::backdrop {
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
}
.appointment-form {
    position: relative;
    display: grid;
    padding: 32px 34px 30px;
    gap: 16px;
}
.dialog-close {
    position: absolute;
    top: 16px;
    right: 16px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink-soft);
    font-size: 18px;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
}
.dialog-close:hover {
    color: var(--primary);
    background: var(--primary-bg);
    transform: rotate(90deg);
}
.appointment-form__intro {
    padding-right: 40px;
}
.appointment-form__icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: var(--radius-sm);
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 22px;
    margin-bottom: 14px;
}
.appointment-form__intro h2 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--ink);
    margin: 6px 0 6px;
}
.appointment-form__intro p {
    color: var(--muted);
    font-size: 14px;
    margin: 0;
}
.form-field {
    display: grid;
    gap: 6px;
}
.form-field>span {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-soft);
}
.form-field>span small {
    font-weight: 400;
    color: var(--muted);
}
.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
    font-size: 14px;
    transition: border-color 0.2s ease, background 0.2s ease;
    outline: none;
    font-family: var(--font);
    color: var(--ink);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(89, 93, 254, 0.12);
}
.form-field textarea {
    min-height: 80px;
    resize: vertical;
}
.form-captcha {
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface-soft);
}
.form-captcha__prompt {
    font-size: 13px;
    color: var(--muted);
    margin: 0 0 8px;
}
.form-captcha__prompt strong {
    display: inline-grid;
    min-width: 28px;
    min-height: 28px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 14px;
    margin-left: 6px;
}
.form-captcha__control {
    display: grid;
    grid-template-columns: 1fr 44px;
    gap: 12px;
    align-items: center;
}
.form-captcha__control input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
}
.form-captcha__control output {
    display: grid;
    place-items: center;
    min-height: 34px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    font-weight: 700;
    font-size: 16px;
    color: var(--ink);
}
.form-consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.5;
}
.form-consent input {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--primary);
    margin-top: 1px;
}
.form-consent a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.appointment-form__submit {
    width: 100%;
    min-height: 52px;
    font-size: 15px;
}
.form-status {
    min-height: 0;
    margin: -4px 0 0;
    font-size: 13px;
    text-align: center;
    color: var(--muted);
}
.form-status[data-state="error"] {
    color: #c0392b;
}
.form-status[data-state="success"] {
    color: var(--secondary);
    font-weight: 700;
}

/* ============================================================
   19. СТРАНИЦА: ЦЕНЫ
   ============================================================ */
.page-header {
    padding: 40px 0 30px;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--line);
}
.page-header__content h1 {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 8px;
}
.page-header__content p {
    color: var(--muted);
    font-size: 18px;
}
.prices-full {
    padding: 40px 0 60px;
    background: var(--surface-soft);
}
.price-section { margin-bottom: 40px; }
.price-section__title {
    font-size: 24px;
    font-weight: 800;
    color: var(--ink);
    padding: 14px 20px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius) var(--radius) 0 0;
    border-bottom: none;
    margin: 0;
}
.price-table-full {
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
    background: var(--surface);
}
.price-table-full__header {
    display: grid;
    grid-template-columns: 100px 140px 1fr 120px;
    background: var(--primary-bg);
    padding: 12px 18px;
    border-bottom: 1px solid var(--line);
    font-weight: 700;
    font-size: 13px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.price-table-full__row {
    display: grid;
    grid-template-columns: 100px 140px 1fr 120px;
    padding: 10px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
    transition: background 0.15s ease;
    align-items: center;
}
.price-table-full__row:last-child { border-bottom: none; }
.price-table-full__row:hover { background: var(--surface-soft); }
.price-table-full__col--code {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}
.price-table-full__col--name {
    color: var(--ink);
    font-weight: 500;
}
.price-table-full__col--price {
    font-weight: 700;
    color: var(--ink);
    text-align: right;
}
.prices-full .prices-footnote {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--surface);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    flex-wrap: wrap;
    margin-top: 40px;
}
.prices-full .prices-footnote p {
    font-size: 13px;
    color: var(--muted);
    margin: 0;
}
.prices-full .prices-footnote .btn {
    min-height: 38px;
    padding: 8px 20px;
    font-size: 12px;
    flex-shrink: 0;
}

/* ============================================================
   20. БАННЕР-ПЕРЕТЯЖКА "О НАС" В БЛОКЕ ВРАЧЕЙ
   ============================================================ */
.doctors-about-banner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--primary-bg), var(--secondary-bg));
    border-radius: var(--radius);
    border: 1px solid rgba(89, 93, 254, 0.15);
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.doctors-about-banner__icon {
    display: grid;
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--surface);
    font-size: 28px;
}
.doctors-about-banner__text {
    flex: 1;
    min-width: 200px;
}
.doctors-about-banner__text p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--ink-soft);
    margin: 0;
}
.doctors-about-banner__text strong { color: var(--ink); }
.doctors-about-banner__action { flex-shrink: 0; }
.doctors-about-banner__action .btn {
    min-height: 44px;
    padding: 10px 24px;
    font-size: 13px;
    white-space: nowrap;
}

/* ============================================================
   21. СТРАНИЦА: О НАС — HERO
   ============================================================ */
.page-hero {
    padding: 40px 0 30px;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--line);
}
.about-hero {
    padding: 50px 0 30px;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--line);
}
.about-hero__grid {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-hero__content { flex: 1; }
.about-hero__content .eyebrow {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--secondary-bg);
    margin-bottom: 12px;
}
.about-hero__content h1 {
    font-size: 40px;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.08;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px;
}
.about-hero__content h1 span { color: var(--secondary); }
.about-hero__lead {
    color: var(--ink-soft);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 560px;
}
.about-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.about-hero__visual {
    flex: 0 0 42%;
    max-width: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface-soft);
}
.about-hero__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   22. СТРАНИЦА: О НАС — ЦИФРЫ И ФАКТЫ
   ============================================================ */
.about-stats {
    padding: 40px 0;
    background: var(--surface);
}
.about-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.about-stats__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--surface-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.about-stats__item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.about-stats__icon {
    display: grid;
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, #595dfe, #04a4ff) !important;
    color: #ffffff !important;
    font-size: 22px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-stats__item:hover .about-stats__icon {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(89, 93, 254, 0.35);
}
.about-stats__item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.about-stats__item strong {
    font-size: 20px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.2;
}
.about-stats__item span {
    font-size: 14px;
    color: var(--muted);
    font-weight: 500;
    line-height: 1.3;
}

/* ============================================================
   23. СТРАНИЦА: О НАС — О КЛИНИКЕ
   ============================================================ */
.about-clinic {
    padding: 60px 0;
    background: var(--surface-soft);
}
.about-clinic__grid {
    display: flex;
    align-items: center;
    gap: 50px;
}
.about-clinic__content { flex: 1; }
.about-clinic__content .badge { margin-bottom: 12px; }
.about-clinic__content h2 {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 16px;
}
.about-clinic__content p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}
.about-clinic__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    margin-top: 16px;
}
.about-clinic__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}
.about-clinic__feature i {
    color: var(--secondary);
    font-size: 18px;
    width: 22px;
    text-align: center;
}
.about-clinic__visual {
    flex: 0 0 42%;
    max-width: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface-soft);
}
.about-clinic__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ============================================================
   24. СТРАНИЦА: О НАС — ПРИНЦИПЫ РАБОТЫ
   ============================================================ */
.about-principles {
    padding: 60px 0;
    background: var(--surface);
}
.about-principles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.about-principles__card {
    display: flex;
    gap: 16px;
    padding: 24px 22px;
    background: var(--surface-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.about-principles__card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.about-principles__card > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #595dfe, #04a4ff) !important;
    color: #ffffff !important;
    font-size: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-principles__card:hover > span {
    transform: scale(1.08);
    box-shadow: 0 4px 16px rgba(89, 93, 254, 0.35);
}
.about-principles__card div {
    flex: 1;
}
.about-principles__card div h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.about-principles__card div p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   25. СТРАНИЦА: О НАС — НАШИ ВРАЧИ (БОЛЬШИЕ КАРТОЧКИ)
   ============================================================ */
.about-doctors {
    padding: 60px 0;
    background: var(--surface-soft);
}
.doctor-big-card {
    display: flex;
    gap: 32px;
    padding: 28px 32px;
    margin-bottom: 24px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.doctor-big-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.doctor-big-photo {
    flex: 0 0 200px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--surface-soft);
}
.doctor-big-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.doctor-big-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.doctor-big-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 2px;
}
.doctor-big-specialty {
    font-size: 16px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}
.doctor-big-description {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 14px;
}
.doctor-big-details-schedule {
    display: flex;
    gap: 40px;
    margin-bottom: 16px;
    padding: 12px 16px;
    background: var(--surface-soft);
    border-radius: var(--radius-sm);
}
.doctor-big-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.doctor-big-details div {
    font-size: 14px;
    color: var(--ink-soft);
}
.doctor-big-schedule {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.5;
}
.doctor-big-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}
.btn-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}
.btn-action.btn-primary {
    color: var(--surface);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.btn-action.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(89, 93, 254, 0.35);
}
.btn-action.btn-secondary {
    color: var(--ink-soft);
    background: var(--surface-soft);
    border: 1px solid var(--line);
}
.btn-action.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-bg);
}

/* ============================================================
   26. СТРАНИЦА: О НАС — КАК МЫ РАБОТАЕМ
   ============================================================ */
.about-process {
    padding: 60px 0;
    background: var(--surface);
}
.about-process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 8px;
}
.about-process__step {
    display: flex;
    gap: 16px;
    padding: 20px 16px;
    background: var(--surface-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.about-process__step > span {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    flex-shrink: 0;
    min-width: 36px;
}
.about-process__step div h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 4px;
}
.about-process__step div p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ============================================================
   27. КОНТАКТНАЯ СЕКЦИЯ (ДЛЯ СТРАНИЦЫ "О НАС")
   ============================================================ */
.contact-panel {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}
.contact-panel--compact {
    padding: 40px 48px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    margin-bottom: 40px;
}
.contact-panel__lead .eyebrow { margin-bottom: 8px; }
.contact-panel__lead h2 {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 12px;
}
.contact-panel__lead p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.contact-panel__methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 18px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}
.contact-method:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.contact-method__icon {
    display: grid;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    place-items: center;
    border-radius: 12px;
    background: var(--surface-soft);
    color: var(--ink-soft);
    font-size: 20px;
    transition: background 0.2s ease, color 0.2s ease;
}
.contact-method:hover .contact-method__icon {
    background: var(--primary-bg);
    color: var(--primary);
}
.contact-method__icon--telegram { color: #0088cc; }
.contact-method__icon--telegram:hover {
    background: #e6f2f8;
    color: #0088cc;
}
.contact-method__icon--whatsapp { color: #25D366; }
.contact-method__icon--whatsapp:hover {
    background: #e8f8f0;
    color: #25D366;
}
.contact-method__icon--max { background: transparent; }
.contact-method__icon--max img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.contact-method__icon--max:hover { background: #f3edff; }
.contact-method span:last-child {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.contact-method small {
    font-size: 11px;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.contact-method strong {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
}
.contact-method em {
    font-size: 12px;
    color: var(--muted);
    font-style: normal;
}
/* ============================================================
   СТРАНИЦА УСЛУГИ — ПОЛНЫЙ CSS
   Версия: 5.0
   ============================================================ */

/* ----- HERO (серый фон) ----- */
.service-hero {
    padding: 40px 0 50px;
    background: var(--surface-soft);
    border-bottom: 1px solid var(--line);
}
.service-hero__grid {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: clamp(38px, 7vw, 100px);
    align-items: start;
}
.service-hero__content .eyebrow {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--secondary);
    background: var(--secondary-bg);
    margin-bottom: 12px;
}
.service-hero__content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 0.98;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 20px;
}
.service-hero__lead {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 650px;
}
.service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.service-hero__facts {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    margin-top: 28px;
    padding: 0;
    list-style: none;
}
.service-hero__facts li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-soft);
}
.service-hero__facts li i {
    color: var(--secondary);
    font-size: 16px;
}

/* ----- ПРАЙС-КАРТОЧКА ----- */
.service-price-card {
    padding: 24px;
    border: 1px solid rgba(7, 143, 135, 0.24);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    position: sticky;
    top: 120px;
}
.service-price-card__icon {
    display: grid;
    width: 50px;
    height: 50px;
    place-items: center;
    border-radius: 16px;
    color: var(--secondary);
    background: var(--secondary-bg);
    font-size: 24px;
    margin-bottom: 14px;
}
.service-price-card p {
    margin-bottom: 2px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}
.service-price-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-dark);
    font-size: 26px;
    letter-spacing: -0.04em;
}
.service-price-card small {
    display: block;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}
.service-price-card .btn {
    width: 100%;
}

/* ----- ОСНОВНОЕ СОДЕРЖАНИЕ (светлый фон) + STICKY ФОРМА ----- */
.service-content {
    padding: 40px 0 50px;
    background: var(--surface);
    overflow: visible !important;
}

.service-content__grid {
    display: flex !important;
    align-items: flex-start !important;
    gap: clamp(40px, 6vw, 90px) !important;
    overflow: visible !important;
}

.service-content__main {
    flex: 1 1 60%;
    min-width: 0;
}

.service-content__sidebar {
    flex: 0 0 320px;
    position: sticky !important;
    top: 170px !important;
    align-self: flex-start !important;
    height: auto !important;
}

/* ----- STICKY ФОРМА (ПРАВАЯ КОЛОНКА) ----- */
.service-form-sticky {
    position: sticky !important;
    top: 170px !important;
    z-index: 10 !important;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface-soft);
}

.service-form-sticky__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--ink);
    text-transform: uppercase;
    margin-bottom: 16px;
}
.service-form-sticky__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.service-form-sticky__field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-soft);
    margin-bottom: 4px;
}
.service-form-sticky__field input,
.service-form-sticky__field textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    font-size: 14px;
    transition: border-color 0.2s ease;
    outline: none;
    font-family: var(--font);
    color: var(--ink);
}
.service-form-sticky__field input:focus,
.service-form-sticky__field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(89, 93, 254, 0.12);
}
.service-form-sticky__field input[readonly] {
    background: var(--surface-soft);
    cursor: default;
    opacity: 0.8;
}
.service-form-sticky__field textarea {
    min-height: 80px;
    resize: vertical;
}
.service-form-sticky__form .btn {
    width: 100%;
    justify-content: center;
}
.service-form-sticky .form-captcha {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
}
.service-form-sticky .form-captcha__prompt {
    font-size: 12px;
    color: var(--muted);
    margin: 0 0 6px;
}
.service-form-sticky .form-captcha__prompt strong {
    display: inline-grid;
    min-width: 26px;
    min-height: 26px;
    place-items: center;
    border-radius: 6px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    font-size: 13px;
    margin-left: 4px;
}
.service-form-sticky .form-captcha__control {
    display: grid;
    grid-template-columns: 1fr 36px;
    gap: 10px;
    align-items: center;
}
.service-form-sticky .form-captcha__control input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
}
.service-form-sticky .form-captcha__control output {
    display: grid;
    place-items: center;
    min-height: 30px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: var(--surface);
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
}
.service-form-sticky .form-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: var(--muted);
    line-height: 1.4;
}
.service-form-sticky .form-consent input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--primary);
    margin-top: 2px;
}
.service-form-sticky .form-consent a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* ----- ТЕКСТ СТАТЬИ В ЛЕВОЙ КОЛОНКЕ ----- */
.service-content__main {
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
}
.service-content__main h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.04em;
    margin: 40px 0 16px;
    text-transform: uppercase;
}
.service-content__main h2:first-child {
    margin-top: 0;
}
.service-content__main h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
    margin: 28px 0 12px;
}
.service-content__main h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    margin: 20px 0 8px;
}
.service-content__main p {
    margin: 0 0 18px;
    line-height: 1.75;
}
.service-content__main ul {
    margin: 0 0 22px;
    padding-left: 0;
    list-style: none;
}
.service-content__main ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    line-height: 1.6;
}
.service-content__main ul li i {
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--secondary);
    width: 18px;
    text-align: center;
}
.service-content__main ol {
    margin: 0 0 22px;
    padding-left: 0;
    list-style: none;
    counter-reset: item;
}
.service-content__main ol li {
    padding: 6px 0 6px 34px;
    position: relative;
    line-height: 1.6;
    counter-increment: item;
}
.service-content__main ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 6px;
    font-weight: 700;
    color: var(--secondary);
}
.service-content__main strong {
    color: var(--ink);
    font-weight: 700;
}
.service-content__main blockquote {
    margin: 24px 0;
    padding: 20px 24px;
    border-left: 4px solid var(--secondary);
    background: var(--surface-soft);
    border-radius: var(--radius-sm);
    color: var(--ink-soft);
    font-style: italic;
}
.service-content__main blockquote p {
    margin: 0;
}
.service-content__main img {
    border-radius: var(--radius-sm);
    margin: 16px 0;
    max-width: 100%;
    height: auto;
}

/* ============================================================
   УДАЛЕНЫ БЛОКИ:
   - ПРЕИМУЩЕСТВА (service-advantages)
   - ПОХОЖИЕ СТАТЬИ (service-related)
   ============================================================ */

/* ----- СРАВНЕНИЕ ЦЕН (серый фон) ----- */
.service-comparison {
    padding: 50px 0;
    background: var(--surface-soft);
}
.service-comparison__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
}
.service-comparison__card {
    display: flex;
    flex-direction: column;
    padding: 22px 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-comparison__card:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}
.service-comparison__card h3 {
    font-size: clamp(1.05rem, 1.25vw, 1.2rem);
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
    margin: 0 0 6px;
}
.service-comparison__desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.5;
    margin-bottom: 18px;
}
.service-comparison__price {
    margin-top: auto;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--line);
}
.service-comparison__price span {
    display: block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}
.service-comparison__price strong {
    color: var(--secondary-dark);
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.03em;
}
.service-comparison__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--secondary-dark);
    background: var(--secondary-bg);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

/* ----- ЭТАПЫ (светлый фон) ----- */
.service-steps {
    padding: 50px 0;
    background: var(--surface);
}
.service-steps__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0;
    list-style: none;
    margin-top: 8px;
}
.service-steps__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 16px;
    background: var(--surface-soft);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.service-steps__item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.service-steps__number {
    font-size: 28px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}
.service-steps__icon {
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 22px;
    margin-bottom: 12px;
}
.service-steps__item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}
.service-steps__item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

/* ----- FAQ (серый фон, сами вопросы светлые) ----- */
.service-faq {
    padding: 50px 0;
    background: var(--surface-soft);
}
.service-faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 980px;
    margin: 8px auto 0;
}
.service-faq__item {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    overflow: hidden;
    transition: border-color 0.2s ease;
}
.service-faq__item[open] {
    border-color: var(--primary);
}
.service-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink);
    cursor: pointer;
    list-style: none;
    transition: background 0.16s ease;
    gap: 16px;
}
.service-faq__item summary:hover {
    background: var(--surface-soft);
}
.service-faq__item summary::-webkit-details-marker {
    display: none;
}
.service-faq__plus {
    flex-shrink: 0;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 50%;
    background: var(--secondary-bg);
    color: var(--secondary);
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease;
}
.service-faq__item[open] .service-faq__plus {
    transform: rotate(45deg);
}
.service-faq__item > p {
    padding: 0 20px 20px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   CTA — СИНИЙ БЛОК СЛЕВА 3/5, КАРТИНКА СПРАВА 2/5 С ПРОМЕЖУТКОМ
   ============================================================ */
.service-cta {
    padding: 50px 0 60px;
    background: var(--surface);
}

.service-cta__wrapper {
    display: flex;
    align-items: stretch;
    gap: 30px;
}

.service-cta__block {
    flex: 0 0 60%;
    padding: 40px 48px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-cta__image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
}

.service-cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-cta__block h2 {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.service-cta__block p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    max-width: 500px;
}
.service-cta__form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
}
.service-cta__form input {
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.95);
    outline: none;
}
.service-cta__form input:focus {
    background: #fff;
}
.service-cta__form input[readonly] {
    background: rgba(255, 255, 255, 0.5);
    cursor: default;
    opacity: 0.8;
}
.service-cta__form .btn {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
    width: 100%;
    justify-content: center;
}
.service-cta__form .btn:hover {
    background: var(--surface-soft);
}

/* ----- КАПЧА В CTA ----- */
.service-cta .form-captcha--light {
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.1);
}
.service-cta .form-captcha--light .form-captcha__prompt {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 6px;
}
.service-cta .form-captcha--light .form-captcha__prompt strong {
    display: inline-grid;
    min-width: 26px;
    min-height: 26px;
    place-items: center;
    border-radius: 6px;
    color: var(--primary);
    background: #fff;
    font-size: 13px;
    margin-left: 4px;
}
.service-cta .form-captcha--light .form-captcha__control {
    display: grid;
    grid-template-columns: 1fr 36px;
    gap: 10px;
    align-items: center;
}
.service-cta .form-captcha--light .form-captcha__control input[type="range"] {
    width: 100%;
    accent-color: var(--primary);
    cursor: pointer;
}
.service-cta .form-captcha--light .form-captcha__control output {
    display: grid;
    place-items: center;
    min-height: 30px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}
.service-cta .form-consent--light {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}
.service-cta .form-consent--light input {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    accent-color: var(--primary);
    margin-top: 2px;
}
.service-cta .form-consent--light a {
    color: #fff;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}