/* Основные переменные */
:root {
    --primary-color: #4ca5a7;
    --primary-dark: #3a7d7f;
    --primary-light: #6bb5b7;
    --text-dark: #2c3e50;
    --text-gray: #5a6c7d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
    --radius: 12px;
    --radius-sm: 8px;
}

/* Базовые стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    letter-spacing: -0.01em;
    background-color: #f8fafc;
}

/* Заголовки */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

h1 {
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Шапка */
header {
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Top bar */
.header-top {
    background: var(--primary-color);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.header-top-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Свитчер городов */
.city-switcher {
    position: relative;
}

.city-chip {
    display: inline-grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    min-width: 172px;
    padding: 8px 14px 8px 10px;
    background: #ffffff;
    border: 1px solid rgba(76, 165, 167, 0.18);
    border-radius: 18px;
    box-shadow: 0 8px 18px rgba(14, 116, 144, 0.12);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    border: none;
    color: var(--text-dark);
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s, transform 0.2s, border-color 0.2s;
    font-family: inherit;
}

.city-chip:hover {
    background: #fbffff;
    border-color: rgba(76, 165, 167, 0.32);
    box-shadow: 0 10px 22px rgba(14, 116, 144, 0.16);
    transform: translateY(-1px);
}

.city-chip svg {
    flex-shrink: 0;
    opacity: 1;
}

.city-chevron {
    margin-left: 0;
    color: var(--primary-color);
    transition: transform 0.2s;
}

.city-switcher.active .city-chevron {
    transform: rotate(180deg);
}

.city-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
    z-index: 1000;
    overflow: hidden;
}

.city-switcher.active .city-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.city-dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
    gap: 8px;
}

.city-dropdown-item:hover {
    background: var(--bg-light);
}

.city-dropdown-item.active {
    background: var(--bg-light);
    color: var(--primary-color);
    font-weight: 600;
}

.city-dropdown-item.active svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

/* Индикатор статуса */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

.status-dot.status-open {
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
}

.status-dot.status-closed {
    background: #6b7280;
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.2);
}

.status-text {
    color: white;
    opacity: 0.95;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.2s;
}

.header-phone:hover {
    opacity: 0.85;
}

.header-phone svg {
    flex-shrink: 0;
    opacity: 0.9;
}

/* Кнопки мессенджеров */
.messenger-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: background 0.2s, opacity 0.2s;
    white-space: nowrap;
}

.messenger-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    opacity: 1;
}

.messenger-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.messenger-telegram {
    background: white;
    color: #0088cc;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.messenger-telegram:hover {
    background: #f8f9fa;
    color: #0077b5;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.messenger-max {
    background: white;
    color: #5533ee;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.messenger-max:hover {
    background: #f8f9fa;
    color: #4422dd;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.messenger-max img {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.header-hours {
    font-size: 13px;
    opacity: 0.95;
    font-weight: 400;
}

/* Main header */
.header-main {
    padding: 16px 0;
    background: var(--bg-white);
}

.header-main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.header-brand:hover {
    opacity: 0.85;
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

.header-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: -0.01em;
}

.brand-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: var(--text-gray);
    letter-spacing: 0;
}

/* Навигация */
.header-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Manrope', sans-serif;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Кнопка CTA */
.btn-cta {
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Мобильное меню */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    width: 36px;
    height: 36px;
    position: relative;
}

.mobile-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-menu-toggle span:nth-child(1) {
    top: 10px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 17px;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 24px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    top: 17px;
    transform: translateX(-50%) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 17px;
    transform: translateX(-50%) rotate(-45deg);
}

/* Адаптивность */
@media (max-width: 1024px) {
    .header-nav {
        gap: 24px;
    }
    
    .nav-menu {
        gap: 24px;
    }
    
    .hero-card,
    .service-hero-card {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 50px 40px;
    }
    
    .hero-content h1,
    .service-hero-content h1 {
        font-size: 40px;
    }
    
    .hero-visual,
    .service-hero-visual {
        order: -1;
    }
}

.header-actions-mobile,
.mobile-phone-btn,
.mobile-nav-header,
.mobile-nav-contacts,
.mobile-nav-overlay {
    display: none;
}

@media (max-width: 768px) {
    .header-top {
        padding: 5px 0;
        font-size: 12px;
    }

    .header-top-content {
        flex-wrap: nowrap;
        gap: 8px;
        align-items: center;
    }
    
    .header-top-left {
        gap: 6px;
        flex-shrink: 0;
        min-width: 0;
    }

    .city-chip {
        min-width: auto;
        gap: 8px;
        padding: 5px 10px 5px 6px;
        border-radius: 14px;
        box-shadow: 0 4px 10px rgba(14, 116, 144, 0.12);
    }

    .status-indicator {
        font-size: 0;
    }

    .status-text {
        display: none;
    }

    .status-dot {
        width: 6px;
        height: 6px;
    }
    
    .header-top-right {
        gap: 6px;
        font-size: 12px;
        flex-wrap: nowrap;
        margin-left: auto;
        flex-shrink: 0;
    }

    .header-top-right .header-phone,
    .header-top-right .header-hours {
        display: none;
    }

    .header-phone span {
        display: none;
    }

    .header-phone {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 26px;
        height: 26px;
    }

    .header-phone svg {
        width: 14px;
        height: 14px;
    }
    
    .messenger-btn span {
        display: none;
    }
    
    .messenger-btn {
        padding: 0;
        width: 26px;
        height: 26px;
        min-width: 26px;
        justify-content: center;
        background: none;
    }

    .header-top-right .messenger-btn {
        display: inline-flex;
    }

    .messenger-telegram {
        box-shadow: none;
        background: none;
        color: white;
    }

    .messenger-telegram:hover {
        box-shadow: none;
        background: none;
        color: white;
        transform: none;
    }

    .messenger-max {
        box-shadow: none;
        background: none;
        color: white;
    }

    .messenger-max:hover {
        box-shadow: none;
        background: none;
        color: white;
        transform: none;
    }

    .messenger-max img {
        width: 18px;
        height: 18px;
    }

    .messenger-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .header-main {
        padding: 8px 0;
        position: sticky;
        top: 0;
        z-index: 100;
        box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
    }
    
    .header-main-content {
        gap: 10px;
    }
    
    .header-logo {
        height: 32px;
    }
    
    .brand-name {
        font-size: 14px;
    }
    
    .brand-subtitle {
        font-size: 10px;
    }

    .header-actions-mobile {
        display: flex;
        align-items: center;
        gap: 0;
        margin-left: auto;
    }

    .mobile-phone-btn {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
    }

    .mobile-nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .mobile-nav-overlay.active {
        display: block;
        opacity: 1;
    }
    
    .header-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: 280px;
        max-width: 80vw;
        height: 100dvh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        gap: 0;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        overflow-y: hidden;
        box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
        display: flex;
    }
    
    .header-nav.active {
        transform: translateX(0);
    }

    .mobile-nav-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 12px;
        margin-bottom: 4px;
        border-bottom: 1px solid var(--border-color);
        flex-shrink: 0;
    }

    .mobile-nav-city {
        margin-bottom: 0;
    }

    .city-chip--mobile {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 4px 10px;
        background: rgba(76, 165, 167, 0.1);
        border-radius: 16px;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.4;
        border: none;
        color: var(--primary-color);
        cursor: pointer;
        transition: background 0.2s;
        font-family: inherit;
    }

    .city-chip--mobile:hover {
        background: rgba(76, 165, 167, 0.18);
    }

    .city-chip--mobile svg {
        flex-shrink: 0;
        opacity: 0.8;
    }

    .city-switcher--mobile .city-dropdown {
        position: absolute;
        top: calc(100% + 4px);
        left: 0;
        z-index: 1010;
    }

    .mobile-nav-status {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 12px;
        color: var(--text-gray);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        width: 100%;
        margin-bottom: 0;
        padding: 0;
        flex: 1;
        overflow-y: auto;
    }
    
    .nav-menu li {
        width: 100%;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 11px 4px;
        font-size: 15px;
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        color: var(--text-dark);
    }

    .nav-menu a:hover {
        color: var(--primary-color);
    }

    .mobile-nav-contacts {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding-top: 10px;
        margin-top: 4px;
        border-top: 1px solid var(--border-color);
        flex-shrink: 0;
    }

    .mobile-nav-contact-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 7px 4px;
        font-size: 13px;
        color: var(--text-dark);
        text-decoration: none;
        transition: color 0.2s;
    }

    a.mobile-nav-contact-item:hover {
        color: var(--primary-color);
    }

    .mobile-nav-contact-item svg {
        flex-shrink: 0;
        color: var(--primary-color);
        width: 16px;
        height: 16px;
    }

    .mobile-nav-contact-item img {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
        border-radius: 3px;
    }

    .mobile-nav-hours {
        color: var(--text-gray);
    }
    
    .btn-cta {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
        margin-top: 12px;
        font-size: 14px;
        flex-shrink: 0;
    }

    .header-hours {
        font-size: 11px;
        white-space: nowrap;
        opacity: 0.9;
    }
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

/* =====================================================
   НОВЫЙ HERO БЛОК
   ===================================================== */
.hero {
    position: relative;
    padding: 80px 0 100px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0faf9 0%, #e8f5f4 50%, #f5f9f8 100%);
    z-index: -2;
}

.hero__bg::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 165, 167, 0.15) 0%, transparent 60%);
    border-radius: 50%;
}

.hero__bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 165, 167, 0.1) 0%, transparent 60%);
    border-radius: 50%;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero__content {
    max-width: 580px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 165, 167, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero__badge svg {
    color: var(--primary-color);
}

.hero__title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.hero__title-accent {
    color: var(--primary-color);
}

.hero__text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.hero__features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero__feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.hero__feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero__card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(76, 165, 167, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    border: 1px solid rgba(76, 165, 167, 0.1);
}

.hero__card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.hero__card-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__card-label {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.hero__card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.hero__stat {
    background: white;
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(76, 165, 167, 0.1);
}

.hero__stat-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 6px;
}

.hero__stat-label {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Кнопки */
.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border: none;
    font-weight: 600;
}

.btn-ghost:hover {
    color: var(--primary-color);
}

.btn-white {
    background: white;
    color: var(--text-dark);
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* =====================================================
   СЕКЦИИ - ОБЩИЕ СТИЛИ
   ===================================================== */
.section:not(.blog-article):not(.blog-breadcrumbs) {
    padding: 100px 0;
}

.section-light {
    background: var(--bg-light);
}

.section-header {
    margin-bottom: 60px;
}

.section-header--center {
    text-align: center;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.1), rgba(76, 165, 167, 0.05));
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.section-label--light {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header--center .section-title {
    text-align: center;
}

.section-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 600px;
}

.section-header--center .section-desc {
    text-align: center;
    margin: 0 auto;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-footer {
    text-align: center;
    margin-top: 50px;
}

/* =====================================================
   ФИЛИАЛЫ
   ===================================================== */
.branches {
    background: var(--bg-light);
}

.branches__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.branch {
    background: white;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.branch:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.branch--active {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(76, 165, 167, 0.03), white);
}

.branch__badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.branch__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.branch__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.branch__name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.branch__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.branch__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: var(--text-gray);
}

.branch__item svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

.branch__item a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.branch__item a:hover {
    color: var(--primary-color);
}

.branch__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--bg-light);
    color: var(--primary-color);
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.branch__btn:hover {
    background: var(--primary-color);
    color: white;
}

/* =====================================================
   УСЛУГИ / SERVICES
   ===================================================== */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-decoration: none;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(76, 165, 167, 0.15);
}

.service-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.1), rgba(76, 165, 167, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: auto;
}

.service-card:hover .service-card__link {
    gap: 10px;
}

/* =====================================================
   ПРЕИМУЩЕСТВА / ADVANTAGES
   ===================================================== */
.advantages {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.advantages__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.advantages__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.advantages__title {
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.advantages__text {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 32px;
}

.advantages__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.advantage {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.advantage:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(8px);
}

.advantage__icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.advantage__content h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    margin-bottom: 6px;
}

.advantage__content p {
    font-size: 14px;
    opacity: 0.85;
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   СПЕЦИАЛИСТЫ / DOCTORS
   ===================================================== */
.doctors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.doctor-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.doctor-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.doctor-card__photo {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-light), #e8f5f4);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.doctor-card__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.doctor-card__placeholder {
    color: var(--primary-light);
}

.doctor-card__content {
    padding: 24px;
}

.doctor-card__name {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.doctor-card__spec {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
}

.doctor-card__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--primary-color);
    font-weight: 500;
}

/* =====================================================
   ОБОРУДОВАНИЕ / EQUIPMENT
   ===================================================== */
.equipment {
    background: var(--bg-light);
}

.equipment__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.equip-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.equip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.equip-card__icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.1), rgba(76, 165, 167, 0.05));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 20px;
}

.equip-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.equip-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* =====================================================
   ОТЗЫВЫ / REVIEWS
   ===================================================== */
.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.review-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    color: #fbbf24;
}

.review-card__text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-card__avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
}

.review-card__info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-card__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-card__city {
    font-size: 13px;
    color: var(--text-gray);
}

/* =====================================================
   CTA СЕКЦИЯ / ФОРМА
   ===================================================== */
.cta-section {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.cta-section__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 50%, rgba(76, 165, 167, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 20%, rgba(76, 165, 167, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-text {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.cta-contacts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.cta-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

.cta-contact svg {
    color: var(--primary-color);
}

.cta-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.cta-form .form-group {
    margin-bottom: 20px;
}

.cta-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-optional {
    font-weight: 400;
    color: var(--text-gray);
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(76, 165, 167, 0.1);
}

.cta-form textarea {
    resize: vertical;
    min-height: 100px;
}

.cta-form .btn-block {
    margin-top: 8px;
}

.form-consent {
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
    margin-top: 16px;
}

.form-consent a {
    color: var(--primary-color);
    text-decoration: none;
}

.form-consent a:hover {
    text-decoration: underline;
}

.text-muted {
    color: var(--text-gray);
}

.text-center {
    text-align: center;
}

.text-gray {
    color: var(--text-gray);
}

/* Карточки */
.card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--primary-light);
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
    line-height: 1.3;
}

.card-text {
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.6;
    font-size: 15px;
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

/* Филиалы */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.branch-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
}

.branch-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.branch-card-current {
    border-color: var(--primary-color);
    background: linear-gradient(to bottom, rgba(76, 165, 167, 0.03), var(--bg-white));
}

.branch-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.branch-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 0;
    font-weight: 600;
}

.branch-badge {
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.branch-info {
    margin-bottom: 24px;
}

.branch-info-item {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    align-items: flex-start;
}

.branch-info-label {
    font-weight: 500;
    color: var(--text-dark);
    flex-shrink: 0;
    min-width: 140px;
}

.branch-info-value {
    color: var(--text-gray);
    flex: 1;
}

.branch-info-value a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
}

.branch-info-value a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Секция акций / спецпредложений */
.offers-section {
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f8 100%);
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(76, 165, 167, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.offers-header {
    text-align: center;
    margin-bottom: 50px;
}

.offers-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.offers-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.offers-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Карточка акции */
.offer-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.offer-card__accent {
    height: 4px;
    width: 100%;
}

.offer-card--seniors .offer-card__accent {
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
}

.offer-card--birthday .offer-card__accent {
    background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.offer-card--treatment .offer-card__accent {
    background: linear-gradient(90deg, var(--primary-color), #10b981);
}

.offer-card__content {
    padding: 28px;
}

.offer-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.offer-card--seniors .offer-card__icon {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    color: #6366f1;
}

.offer-card--birthday .offer-card__icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(239, 68, 68, 0.1));
    color: #f59e0b;
}

.offer-card--treatment .offer-card__icon {
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.1), rgba(16, 185, 129, 0.1));
    color: var(--primary-color);
}

.offer-card__tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.offer-card__discount {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.offer-card__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.offer-card__text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* CTA блок */
.offers-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(76, 165, 167, 0.15);
}

.offers-cta__text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Адаптивность */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .offers-title {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .offers-header {
        margin-bottom: 40px;
    }
    
    .offers-title {
        font-size: 26px;
    }
    
    .offers-subtitle {
        font-size: 16px;
    }
    
    .offer-card__content {
        padding: 24px;
    }
}

/* Услуги */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 36px 24px;
}

.service-icon-wrapper {
    margin-bottom: 24px;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    box-shadow: 0 4px 12px rgba(76, 165, 167, 0.2);
}

/* Почему выбирают нас */
.why-section {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.why-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.why-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.why-text p {
    margin-bottom: 20px;
}

.why-text p:last-child {
    margin-bottom: 0;
}

.why-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.why-benefits h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 32px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: var(--primary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.benefit-content p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 15px;
    margin: 0;
}

/* Врачи */
.doctors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.doctor-card {
    text-align: center;
    padding: 32px 24px;
}

.doctor-photo-wrapper {
    margin-bottom: 20px;
}

.doctor-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    border: 4px solid var(--primary-light);
    display: block;
}

.doctor-photo-placeholder {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid var(--primary-light);
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.doctor-specialization {
    color: var(--text-gray);
    margin-bottom: 12px;
    font-size: 15px;
}

.doctor-cities {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Оборудование */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.equipment-card {
    text-align: center;
    padding: 32px 24px;
}

.equipment-icon-wrapper {
    margin-bottom: 20px;
}

.equipment-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 12px rgba(76, 165, 167, 0.2);
}

.equipment-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.equipment-text {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}


/* Форма обратного звонка */
.callback-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 50px 40px;
    box-shadow: var(--shadow-md);
    max-width: 600px;
    margin: 0 auto;
}

.callback-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
    line-height: 1.2;
}

.callback-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.6;
}

.callback-form {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    outline: none;
    line-height: 1.5;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 165, 167, 0.1);
}

.form-group input[type="text"].error,
.form-group input[type="tel"].error,
.form-group input[type="email"].error,
.form-group textarea.error {
    border-color: #dc2626;
}

.form-group input[type="text"].error:focus,
.form-group input[type="tel"].error:focus,
.form-group input[type="email"].error:focus,
.form-group textarea.error:focus {
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.form-group input[type="text"]:hover,
.form-group input[type="tel"]:hover,
.form-group input[type="email"]:hover,
.form-group textarea:hover {
    border-color: var(--primary-light);
}

.form-group input[type="text"]::placeholder,
.form-group input[type="tel"]::placeholder,
.form-group input[type="email"]::placeholder,
.form-group textarea::placeholder {
    color: #9ca3af;
    opacity: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.form-error {
    display: block;
    color: #dc2626;
    font-size: 14px;
    margin-top: 6px;
    line-height: 1.4;
}

.consent-text {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 20px;
    text-align: center;
    line-height: 1.6;
}

.consent-text a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.consent-text a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .callback-card {
        padding: 32px 24px;
    }
    
    .callback-title {
        font-size: 26px;
    }
    
    .callback-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Футер */
footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary-light);
}

/* Одноколоночный список для раздела "Информация" */
.footer-info-grid {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-info-grid a {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-info-grid a::before {
    content: '';
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'%3E%3C/path%3E%3Cpolyline points='14 2 14 8 20 8'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-logo {
    display: inline-block;
    transition: opacity 0.3s;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 500;
    margin: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* =====================================================
   АДАПТИВНОСТЬ - ГЛАВНАЯ СТРАНИЦА
   ===================================================== */
@media (max-width: 1200px) {
    .hero__grid {
        gap: 60px;
    }
    
    .hero__title {
        font-size: 44px;
    }
    
    .doctors__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .equipment__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero__content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero__features {
        justify-content: center;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__title {
        font-size: 40px;
    }
    
    .branches__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages__grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .advantages__content {
        text-align: center;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .cta-content {
        text-align: center;
    }
    
    .cta-contacts {
        justify-content: center;
    }
    
    .reviews__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 0 70px;
    }
    
    .hero__title {
        font-size: 32px;
    }
    
    .hero__text {
        font-size: 16px;
    }
    
    .hero__features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .hero__stat {
        padding: 16px 12px;
    }
    
    .hero__stat-value {
        font-size: 24px;
    }
    
    .section:not(.blog-article):not(.blog-breadcrumbs) {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-desc {
        font-size: 16px;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .doctors__grid {
        grid-template-columns: 1fr;
        max-width: 320px;
        margin: 0 auto;
    }
    
    .equipment__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    
    .equip-card {
        padding: 24px 16px;
    }
    
    .advantages__title {
        font-size: 28px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-form-wrapper {
        padding: 28px 24px;
    }
    
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    h1 {
        font-size: 32px;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 24px;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 20px;
        line-height: 1.3;
    }
    
    .seo-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-section,
    .service-hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-card,
    .service-hero-card {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 30px;
    }
    
    .hero-visual,
    .service-hero-visual {
        order: -1;
    }
    
    .hero-content h1,
    .service-hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle,
    .service-hero-subtitle {
        font-size: 16px;
    }
    
    .hero-badges,
    .service-hero-badges {
        gap: 10px;
    }
    
    .hero-badge,
    .service-hero-badge {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .hero-cta,
    .service-hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn,
    .service-hero-cta .btn {
        width: 100%;
    }
    
    .hero-icon-large,
    .service-hero-icon-large {
        font-size: 80px;
    }
    
    .hero-visual-content,
    .service-hero-visual-content {
        padding: 35px 25px;
    }
    
    .why-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .why-content h2,
    .why-benefits h2 {
        font-size: 28px;
    }
    
    .benefit-item {
        flex-direction: column;
        gap: 12px;
    }
    
    .benefit-icon {
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
    
    .branches-grid,
    .services-grid,
    .doctors-grid,
    .equipment-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .callback-card,
    .license-card {
        padding: 32px 24px;
    }
    
    .callback-title,
    .license-card h2 {
        font-size: 26px;
    }
    
    .license-icon {
        font-size: 48px;
    }
}

/* Блок специалистов на странице услуги */
.service-specialists {
    margin-bottom: 60px;
}

.service-specialists .section-title {
    text-align: left;
    font-size: 32px;
    margin-bottom: 12px;
}

.service-specialists .section-subtitle {
    text-align: left;
    margin-bottom: 40px;
    max-width: 100%;
}

/* Хлебные крошки */
.breadcrumbs {
    font-size: 14px;
    color: var(--text-gray);
}

.breadcrumbs a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
}

/* Навигация по услугам */
.services-navigation {
    margin-bottom: 40px;
}

.services-nav-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.service-nav-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    white-space: nowrap;
}

.service-nav-item:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-icon-emoji {
    font-size: 20px;
    line-height: 1;
    display: inline-block;
}

.service-name {
    display: inline-block;
}

/* Таблицы прайса */
.price-section {
    margin-bottom: 50px;
}

.price-section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--primary-color);
}

.price-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.price-table thead {
    background: var(--primary-color);
    color: white;
}

.price-table th {
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
}

.price-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.price-table tbody tr:last-child td {
    border-bottom: none;
}

.price-table tbody tr:hover {
    background: var(--bg-light);
}

.price-cell {
    font-size: 18px;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-note {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary-color);
}

/* Страница услуги - layout */
.service-page-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

.service-main-content {
    min-width: 0;
}

.service-sidebar {
    min-width: 0;
}

.service-sidebar-nav {
    list-style: none;
}

.service-sidebar-link {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s;
}

.service-sidebar-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.service-sidebar-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* SEO-контент услуги */
.service-seo-content {
    line-height: 1.8;
}

.seo-text-content {
    font-size: 16px;
    color: var(--text-dark);
}

.seo-text-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-light);
}

.seo-text-content h2:first-child {
    margin-top: 0;
}

.seo-text-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.seo-text-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-gray);
}

.seo-text-content ul,
.seo-text-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
    line-height: 1.8;
}

.seo-text-content li {
    margin-bottom: 10px;
    color: var(--text-gray);
}

.seo-text-content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* CTA блок */
.service-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 50px 40px;
    border-radius: var(--radius);
    text-align: center;
}

.service-cta h2 {
    color: white;
    margin-bottom: 20px;
}

.service-cta p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.service-cta .btn {
    background: white;
    color: var(--primary-color);
    font-size: 18px;
    padding: 16px 40px;
    border: none;
}

.service-cta .btn:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero-секция услуги */
.service-hero-section {
    padding: 60px 0 80px;
}

.breadcrumbs-service {
    margin-bottom: 30px;
}

.breadcrumbs-service a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumbs-service a:hover {
    color: var(--primary-color);
}

.breadcrumbs-service span {
    margin: 0 10px;
    color: var(--text-gray);
}

.service-hero-card {
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.95) 0%, rgba(76, 165, 167, 0.85) 100%);
    color: white;
    border-radius: 24px;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(76, 165, 167, 0.2);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.service-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    opacity: 0.6;
    pointer-events: none;
}

.service-hero-content {
    position: relative;
    z-index: 1;
}

.service-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: white;
}

.service-hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 28px;
    opacity: 0.95;
    font-weight: 400;
    color: white;
}

.service-hero-badges {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 10px 18px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: background 0.2s;
}

.service-hero-badge:hover {
    background: rgba(255, 255, 255, 0.3);
}

.service-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.service-hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.service-hero-visual-content {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 50px 35px;
    text-align: center;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    width: 100%;
    transition: transform 0.3s ease;
}

.service-hero-visual-content:hover {
    transform: translateY(-4px);
}

.service-hero-icon-large {
    font-size: 120px;
    margin-bottom: 20px;
    line-height: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.service-hero-visual-text {
    font-size: 16px;
    opacity: 0.95;
    font-weight: 500;
    color: white;
}

.service-benefits {
    margin-bottom: 40px;
}

.service-benefits > div {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    flex-wrap: wrap;
}

.service-benefits > div > div {
    display: flex;
    align-items: center;
    gap: 10px;
}


/* Блок до/после */
.service-before-after {
    margin-bottom: 60px;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.before-after-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.before-after-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* Адаптивность для страниц услуг */
@media (max-width: 1024px) {
    .service-page-layout {
        grid-template-columns: 1fr;
    }
    
    .service-sidebar {
        order: -1;
    }
    
    .service-sidebar .card {
        position: static;
    }
    
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    
    .before-after-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .services-nav-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .service-nav-item {
        text-align: center;
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .price-table {
        font-size: 14px;
    }
    
    .price-table th,
    .price-table td {
        padding: 12px 10px;
    }
    
    .price-section-title {
        font-size: 24px;
    }
    
    .seo-text-content h2 {
        font-size: 22px;
    }
    
    .service-cta {
        padding: 30px 20px;
    }
    
    .service-cta h2 {
        font-size: 24px;
    }
    
    .service-cta p {
        font-size: 16px;
    }
}


/* =====================================================
   СТРАНИЦА УСЛУГИ - НОВЫЙ ДИЗАЙН
   ===================================================== */

/* Breadcrumbs */
.sp-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    font-size: 14px;
}

.sp-breadcrumbs a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.2s;
    flex-shrink: 0;
}

.sp-breadcrumbs a:hover {
    color: var(--primary-color);
}

.sp-breadcrumbs span:last-child {
    color: var(--text-dark);
    font-weight: 500;
    flex-shrink: 0;
}

.sp-breadcrumbs svg {
    color: var(--text-gray);
    opacity: 0.5;
    flex-shrink: 0;
}

/* Hero услуги */
.sp-hero {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f8 100%);
}

.sp-hero__card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: start;
}

.sp-hero__title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}

.sp-hero__subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 600px;
}

.sp-hero__price {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
    padding: 16px 20px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.12), rgba(76, 165, 167, 0.04));
    border: 1px solid rgba(76, 165, 167, 0.18);
}

.sp-hero__price-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.sp-hero__price-value {
    font-size: 32px;
    line-height: 1;
    color: var(--primary-color);
}

.sp-service-note {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    max-width: 680px;
    margin-bottom: 32px;
    padding: 20px 24px;
    border: 1px solid rgba(76, 165, 167, 0.18);
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.12), rgba(76, 165, 167, 0.04));
}

.sp-service-note__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 14px;
    background: white;
    color: var(--primary-dark);
    box-shadow: 0 8px 20px rgba(76, 165, 167, 0.12);
}

.sp-service-note__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-service-note__label {
    width: fit-content;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(76, 165, 167, 0.16);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--primary-dark);
}

.sp-service-note__content p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.sp-service-note__phone-row {
    margin-top: 2px;
}

.sp-service-note__content a {
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
}

.sp-service-note__phone {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.sp-service-note__content a:hover {
    text-decoration: underline;
}

.sp-service-note__meta {
    color: var(--text-gray) !important;
}

.sp-hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.sp-hero__badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.1), rgba(76, 165, 167, 0.05));
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.sp-hero__badge svg {
    color: var(--primary-color);
}

.sp-hero__cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.sp-hero__cta-note {
    font-size: 14px;
    color: var(--text-gray);
}

.sp-hero__info {
    min-width: 280px;
}

.sp-hero__clinic {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
}

.sp-hero__clinic-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.sp-hero__clinic-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sp-hero__clinic-city {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
}

.sp-hero__clinic-phone {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
}

.sp-hero__clinic-phone:hover {
    text-decoration: underline;
}

.sp-hero__clinic-hours {
    font-size: 14px;
    color: var(--text-gray);
}

/* Симптомы */
.sp-symptoms {
    background: white;
}

.sp-symptoms__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.sp-symptom {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: 16px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.sp-symptom:hover {
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.1), rgba(76, 165, 167, 0.05));
    transform: translateY(-2px);
}

.sp-symptom__icon {
    width: 44px;
    height: 44px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.sp-symptoms__cta {
    text-align: center;
}

/* Блок опасности */
.sp-danger {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.sp-danger__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
    pointer-events: none;
}

.sp-danger__title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

.sp-danger__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
    margin-bottom: 50px;
}

.sp-danger__card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
}

.sp-danger__card-num {
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
    margin-bottom: 16px;
}

.sp-danger__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.sp-danger__card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

.sp-danger__cta {
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Результаты до/после */
.sp-results {
    background: var(--bg-light);
}

.sp-results__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto 24px;
}

.sp-results__item {
    position: relative;
    aspect-ratio: 23 / 30;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.sp-results__item img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

.sp-results__label {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.sp-results__label--before {
    background: #ef4444;
    color: white;
}

.sp-results__label--after {
    background: #10b981;
    color: white;
}

.sp-results__placeholder {
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    color: var(--text-gray);
}

.sp-results__placeholder span {
    font-size: 14px;
}

.sp-results__note {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 32px;
}

.sp-results__cta {
    text-align: center;
}

/* Почему мы */
.sp-why {
    background: white;
}

.sp-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.sp-why__card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.sp-why__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.sp-why__icon {
    width: 64px;
    height: 64px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin: 0 auto 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.sp-why__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.sp-why__card p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}

/* Специалисты на странице услуги */
.sp-doctors {
    background: var(--bg-light);
}

/* Цены */
.sp-prices {
    background: white;
}

.sp-prices__table {
    max-width: 700px;
    margin: 0 auto 24px;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
}

.sp-prices__header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 16px 24px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-prices__row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    align-items: center;
}

.sp-prices__row:last-child {
    border-bottom: none;
}

.sp-prices__name {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sp-prices__name span {
    font-weight: 600;
    color: var(--text-dark);
}

.sp-prices__link {
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sp-prices__link:hover {
    color: var(--primary-color);
}

.sp-prices__name small {
    font-size: 13px;
    color: var(--text-gray);
}

.sp-prices__value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.sp-prices__note {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.sp-prices__cta {
    text-align: center;
}

.sp-prices__empty {
    text-align: center;
    padding: 48px;
    background: var(--bg-light);
    border-radius: 20px;
}

.sp-prices__empty p {
    margin-bottom: 24px;
    color: var(--text-gray);
}

/* Подуслуги на странице услуги */
.sp-subservices {
    background: var(--bg-light);
}

.sp-subservices__directory {
    max-width: 1120px;
    margin: 0 auto;
}

.sp-subservices__toolbar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.sp-subservices__toolbar-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.sp-subservices__search {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1 1 420px;
}

.sp-subservices__search svg {
    position: absolute;
    left: 16px;
    color: var(--text-gray);
    pointer-events: none;
}

.sp-subservices__search input {
    width: 100%;
    min-height: 52px;
    padding: 14px 18px 14px 46px;
    border: 1px solid rgba(76, 165, 167, 0.18);
    border-radius: 16px;
    background: white;
    font-size: 15px;
    color: var(--text-dark);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.04);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.sp-subservices__search input:focus {
    outline: none;
    border-color: rgba(76, 165, 167, 0.48);
    box-shadow: 0 14px 36px rgba(76, 165, 167, 0.12);
}

.sp-subservices__summary {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-gray);
    font-weight: 600;
    white-space: nowrap;
}

.sp-subservices__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sp-subservices__chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 8px 14px;
    border: 1px solid rgba(76, 165, 167, 0.14);
    border-radius: 999px;
    background: white;
    color: var(--text-gray);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sp-subservices__chip:hover {
    transform: translateY(-1px);
    border-color: rgba(76, 165, 167, 0.3);
    color: var(--primary-dark);
}

.sp-subservices__chip.is-active {
    background: linear-gradient(135deg, var(--primary-color), #5abec0);
    border-color: transparent;
    color: white;
}

.sp-subservices__list {
    max-width: 920px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.05);
}

.sp-subservices__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: center;
    padding: 20px 28px;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.25s ease;
}

.sp-subservices__item:last-child {
    border-bottom: none;
}

.sp-subservices__item:hover {
    background: rgba(76, 165, 167, 0.04);
}

.sp-subservices__name {
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: var(--text-dark);
    min-width: 0;
}

.sp-subservices__meta {
    display: flex;
    align-items: center;
    gap: 24px;
}

.sp-subservices__price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.sp-subservices__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-dark);
}

.sp-subservices__carousel {
    max-width: 1120px;
    margin: 0 auto;
}

.sp-subservices__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}

.sp-subservices__control {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 999px;
    background: white;
    color: var(--primary-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.sp-subservices__control:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.sp-subservices__control:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.sp-subservices__viewport {
    display: flex;
    align-items: stretch;
    gap: 20px;
    overflow-x: auto;
    padding: 4px 4px 18px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    touch-action: pan-y;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
}

.sp-subservices__viewport::-webkit-scrollbar {
    display: none;
}

.sp-subservices__viewport.is-dragging {
    cursor: grabbing;
    user-select: none;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.sp-subservices__viewport.is-dragging .sp-subservices__item--card {
    pointer-events: none;
}

.sp-subservices__carousel.is-filtering .sp-subservices__viewport {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
    overflow: visible;
    padding: 0;
    cursor: default;
    scroll-snap-type: none;
}

.sp-subservices__carousel.is-filtering .sp-subservices__item--card {
    flex: none;
    min-height: 200px;
}

.sp-subservices__item--card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 16px;
    flex: 0 0 min(290px, calc(100% - 20px));
    min-height: 220px;
    padding: 18px;
    border: 1px solid rgba(76, 165, 167, 0.14);
    border-radius: 24px;
    border-bottom: 1px solid rgba(76, 165, 167, 0.14);
    background: white;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    scroll-snap-align: start;
    text-decoration: none;
    border-bottom: none;
}

.sp-subservices__item--card:hover {
    background: white;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.sp-subservices__card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.sp-subservices__type,
.sp-subservices__price-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.sp-subservices__type {
    color: var(--primary-dark);
    background: rgba(76, 165, 167, 0.12);
}

.sp-subservices__type--analysis {
    background: rgba(76, 165, 167, 0.14);
}

.sp-subservices__type--consultation {
    background: rgba(58, 112, 170, 0.12);
    color: #2f5f95;
}

.sp-subservices__type--removal {
    background: rgba(233, 119, 103, 0.14);
    color: #b44f45;
}

.sp-subservices__type--procedure {
    background: rgba(145, 109, 195, 0.14);
    color: #6a4ea0;
}

.sp-subservices__type--material {
    background: rgba(224, 172, 72, 0.16);
    color: #9b6f09;
}

.sp-subservices__type--other {
    background: rgba(131, 145, 161, 0.14);
    color: #55606d;
}

.sp-subservices__price-chip {
    color: var(--primary-dark);
    background: rgba(76, 165, 167, 0.08);
    white-space: nowrap;
}

.sp-subservices__item--card .sp-subservices__name {
    font-size: 19px;
    line-height: 1.42;
}

.sp-subservices__name--compact {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.42em * 4);
}

.sp-subservices__card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.sp-subservices__hint {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-gray);
}

.sp-subservices__item--card .sp-subservices__link {
    flex-shrink: 0;
}

.sp-subservices__item--card .sp-subservices__link svg {
    transition: transform 0.2s ease;
}

.sp-subservices__item--card:hover .sp-subservices__link svg {
    transform: translateX(2px);
}

.sp-subservices__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.sp-subservices__empty {
    margin-top: 18px;
    padding: 20px 22px;
    border: 1px dashed rgba(76, 165, 167, 0.28);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--text-gray);
}

.sp-subservices__empty strong {
    display: block;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.sp-subservices__empty p {
    margin: 0;
}

/* SEO блок */
.sp-seo {
    background: var(--bg-light);
}

.sp-seo__content {
    max-width: 800px;
    margin: 0 auto;
}

.sp-seo__content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.sp-seo__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.sp-seo__text h2,
.sp-seo__text h3 {
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.sp-seo__text p {
    margin-bottom: 16px;
}

.sp-seo__text ul,
.sp-seo__text ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.sp-seo__text li {
    margin-bottom: 8px;
}

.sp-seo__cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

/* Форма записи */
.sp-appointment {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.sp-appointment__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 50%, rgba(76, 165, 167, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(76, 165, 167, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.sp-appointment__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.sp-appointment__title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.sp-appointment__text {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 32px;
}

.sp-appointment__contacts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sp-appointment__contact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    width: fit-content;
}

.sp-appointment__contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.sp-appointment__contact svg {
    color: var(--primary-color);
}

.sp-appointment__form-wrap {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.sp-appointment__callout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-appointment__badge {
    width: fit-content;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(76, 165, 167, 0.12);
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.sp-appointment__callout-text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

.sp-appointment__form .form-group {
    margin-bottom: 20px;
}

.sp-appointment__form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.sp-appointment__form input,
.sp-appointment__form select {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.sp-appointment__form input:focus,
.sp-appointment__form select:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(76, 165, 167, 0.1);
}

.sp-appointment__form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%235a6c7d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

/* Другие услуги */
.sp-other {
    background: white;
}

/* Адаптивность страницы услуги */
@media (max-width: 1200px) {
    .sp-danger__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .sp-hero__card {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sp-hero__info {
        min-width: auto;
    }
    
    .sp-symptoms__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sp-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sp-appointment__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .sp-appointment__content {
        text-align: center;
    }
    
    .sp-appointment__contacts {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .sp-breadcrumbs {
        gap: 6px;
        margin-bottom: 18px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .sp-breadcrumbs::-webkit-scrollbar {
        display: none;
    }

    .sp-breadcrumbs a,
    .sp-breadcrumbs span:last-child {
        font-size: 13px;
    }

    .sp-hero {
        padding: 24px 0 60px;
    }
    
    .sp-hero__card {
        padding: 32px 24px;
    }
    
    .sp-hero__title {
        font-size: 28px;
    }
    
    .sp-hero__subtitle {
        font-size: 16px;
    }

    .sp-hero__price-value {
        font-size: 28px;
    }

    .sp-service-note {
        flex-direction: column;
        padding: 18px 20px;
    }

    .sp-service-note__icon {
        width: 42px;
        height: 42px;
    }

    .sp-service-note__phone {
        font-size: 16px;
    }
    
    .sp-hero__badges {
        gap: 12px;
    }
    
    .sp-hero__badge {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .sp-symptoms__grid {
        grid-template-columns: 1fr;
    }
    
    .sp-danger__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sp-danger__title {
        font-size: 28px;
    }
    
    .sp-results__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .sp-why__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .sp-prices__table {
        border-radius: 16px;
    }
    
    .sp-prices__row {
        padding: 16px 20px;
    }
    
    .sp-prices__value {
        font-size: 18px;
    }

    .sp-subservices__item {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: flex-start;
        padding: 18px 20px;
    }

    .sp-subservices__toolbar {
        gap: 14px;
        margin-bottom: 18px;
    }

    .sp-subservices__toolbar-main {
        align-items: stretch;
    }

    .sp-subservices__search {
        flex-basis: 100%;
    }

    .sp-subservices__search input {
        min-height: 48px;
        font-size: 14px;
    }

    .sp-subservices__summary {
        white-space: normal;
    }

    .sp-subservices__chips {
        gap: 8px;
    }

    .sp-subservices__chip {
        min-height: 34px;
        padding: 7px 12px;
        font-size: 13px;
    }

    .sp-subservices__meta {
        width: 100%;
        justify-content: space-between;
        gap: 16px;
    }

    .sp-subservices__name {
        font-size: 16px;
    }

    .sp-subservices__price {
        font-size: 18px;
    }

    .sp-subservices__controls {
        margin-bottom: 16px;
    }

    .sp-subservices__control {
        width: 42px;
        height: 42px;
    }

    .sp-subservices__viewport {
        gap: 16px;
        padding-bottom: 14px;
    }

    .sp-subservices__carousel.is-filtering .sp-subservices__viewport {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sp-subservices__item--card {
        flex-basis: min(270px, calc(100% - 20px));
        min-height: 200px;
        padding: 20px;
    }

    .sp-subservices__card-top,
    .sp-subservices__card-footer {
        gap: 10px;
    }

    .sp-subservices__type,
    .sp-subservices__price-chip {
        min-height: 28px;
        padding: 5px 9px;
        font-size: 11px;
    }

    .sp-subservices__name--compact {
        min-height: auto;
        -webkit-line-clamp: 5;
    }

    .sp-subservices__hint {
        font-size: 12px;
    }

    .sp-subservices__grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sp-subservices__empty {
        padding: 16px 18px;
    }
    
    .sp-appointment__title {
        font-size: 28px;
    }
    
    .sp-appointment__form-wrap {
        padding: 28px 24px;
    }

    .sp-doctors .doctors__grid {
        display: flex;
        gap: 12px;
        max-width: none;
        margin: 0 -4px;
        padding: 4px 4px 10px;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sp-doctors .doctors__grid::-webkit-scrollbar {
        display: none;
    }

    .sp-doctors .doctor-card {
        flex: 0 0 min(240px, 78vw);
        scroll-snap-align: start;
        border-radius: 16px;
    }

    .sp-doctors .doctor-card__photo {
        aspect-ratio: 4 / 3;
    }

    .sp-doctors .doctor-card__content {
        padding: 14px 16px 16px;
    }

    .sp-doctors .doctor-card__name {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .sp-doctors .doctor-card__spec {
        font-size: 13px;
        line-height: 1.45;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .sp-doctors .doctor-card__exp {
        font-size: 12px;
    }

    .sp-other .services__grid {
        gap: 10px;
    }

    .sp-other .service-card {
        display: grid;
        grid-template-columns: 36px minmax(0, 1fr);
        align-items: center;
        column-gap: 12px;
        row-gap: 8px;
    }

    .sp-other .service-card__icon {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
    }

    .sp-other .service-card__title {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
    }

    .sp-other .service-card__text {
        grid-column: 1 / -1;
        margin: 0;
        -webkit-line-clamp: 3;
    }

    .sp-other .service-card__link {
        grid-column: 1 / -1;
        margin-top: 0;
    }
}

/* =====================================================
   СТРАНИЦА СПИСКА УСЛУГ - СОВРЕМЕННЫЙ ДИЗАЙН
   ===================================================== */

/* Hero */
.sl-hero {
    padding: 40px 0 80px;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f8 100%);
}

.sl-hero__content {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 60px;
    align-items: start;
}

.sl-hero__title {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.15;
    margin-bottom: 20px;
}

.sl-hero__desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 560px;
}

.sl-hero__stats {
    display: flex;
    gap: 48px;
}

.sl-hero__stat {
    display: flex;
    flex-direction: column;
}

.sl-hero__stat-num {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.sl-hero__stat-label {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
}

.sl-hero__cta-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.sl-hero__cta-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin: 0 auto 20px;
}

.sl-hero__cta-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.sl-hero__cta-card p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* Сетка услуг */
.sl-services {
    background: white;
}

.sl-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.sl-service-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sl-service-card:hover {
    background: white;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.sl-service-card__icon {
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.sl-service-card:hover .sl-service-card__icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.sl-service-card__title {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.sl-service-card__desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: auto;
    flex-grow: 1;
}

.sl-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 16px;
    transition: gap 0.3s ease;
}

.sl-service-card:hover .sl-service-card__link {
    gap: 10px;
}

.sl-services__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px;
    background: var(--bg-light);
    border-radius: 20px;
    color: var(--text-gray);
}

/* Прайс-лист */
.sl-prices {
    background: var(--bg-light);
}

.sl-prices__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.sl-price-block {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.sl-price-block__header {
    padding: 20px 28px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.sl-price-block__title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.sl-price-block__title:hover {
    gap: 16px;
}

.sl-price-block__title svg {
    opacity: 0.8;
}

.sl-price-block__items {
    padding: 8px 0;
}

.sl-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    border-bottom: 1px solid var(--border-color);
    gap: 24px;
}

.sl-price-item:last-child {
    border-bottom: none;
}

.sl-price-item__info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sl-price-item__name {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.sl-price-item__name-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.sl-price-item__name-link:hover {
    color: var(--primary-color);
}

.sl-price-item__duration {
    font-size: 13px;
    color: var(--text-gray);
}

.sl-price-item__price {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.sl-prices__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 600px;
    margin: 40px auto 0;
    padding: 20px 28px;
    background: white;
    border-radius: 12px;
    text-align: center;
}

.sl-prices__note svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.sl-prices__note p {
    font-size: 14px;
    color: var(--text-gray);
    margin: 0;
}

/* Пустой прайс */
.sl-prices-empty {
    background: var(--bg-light);
}

.sl-prices-empty__card {
    max-width: 400px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.sl-prices-empty__card svg {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.sl-prices-empty__card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.sl-prices-empty__card p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

/* CTA блок */
.sl-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.sl-cta__bg {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 30%);
    pointer-events: none;
}

.sl-cta__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.sl-cta__title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.sl-cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.sl-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Кнопки */
.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

/* Адаптивность */
@media (max-width: 1200px) {
    .sl-services__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .sl-hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sl-hero__cta-card {
        max-width: 400px;
    }
    
    .sl-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sl-hero {
        padding: 24px 0 60px;
    }
    
    .sl-hero__title {
        font-size: 32px;
    }
    
    .sl-hero__desc {
        font-size: 16px;
    }
    
    .sl-hero__stats {
        gap: 32px;
    }
    
    .sl-hero__stat-num {
        font-size: 28px;
    }
    
    .sl-services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sl-service-card {
        padding: 24px;
    }
    
    .sl-price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 20px;
    }
    
    .sl-price-item__price {
        align-self: flex-end;
    }
    
    .sl-cta__title {
        font-size: 28px;
    }
    
    .sl-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* =====================================================
   СТРАНИЦА УСЛУГИ - ДОПОЛНИТЕЛЬНЫЕ БЛОКИ
   ===================================================== */

/* Эмпатический блок "Если вы..." */
.sp-empathy {
    background: linear-gradient(180deg, white 0%, var(--bg-light) 100%);
    padding: 80px 0;
}

.sp-empathy__card {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sp-empathy__left {
    position: relative;
}

.sp-empathy__title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.2;
}

.sp-empathy__title span {
    color: var(--primary-color);
}

.sp-empathy__text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 28px;
    padding: 20px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-left: 4px solid var(--primary-color);
}

.sp-empathy__text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.sp-empathy__note {
    margin-bottom: 28px;
    padding: 18px 20px;
    border: 1px solid rgba(76, 165, 167, 0.22);
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.14), rgba(76, 165, 167, 0.05));
    box-shadow: 0 8px 24px rgba(76, 165, 167, 0.08);
    text-align: left;
}

.sp-empathy__note-label {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 10px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(76, 165, 167, 0.18);
    color: var(--primary-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sp-empathy__note p {
    margin: 0;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.6;
}

.sp-empathy__cta {
    display: flex;
    justify-content: flex-start;
}

.sp-empathy__right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.sp-empathy__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.sp-empathy__item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.sp-empathy__icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.15), rgba(76, 165, 167, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sp-empathy__icon svg {
    color: var(--primary-color);
}

.sp-empathy__item-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.4;
    font-weight: 500;
}

/* Блок шагов */
.sp-steps {
    background: var(--bg-light);
}

.sp-steps__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.sp-step {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}

.sp-step__num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.sp-step h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.sp-step p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.sp-steps__note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 28px;
    background: white;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.sp-steps__note svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.sp-steps__note p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.sp-steps__note strong {
    color: var(--text-dark);
}

/* Блок отзывов */
.sp-reviews {
    background: white;
}

.sp-reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.sp-review {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 28px;
}

.sp-review__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.sp-review__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
}

.sp-review__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sp-review__name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.sp-review__problem {
    font-size: 13px;
    color: var(--text-gray);
}

.sp-review__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 16px;
}

.sp-review__stars {
    color: #f59e0b;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Блок филиалов */
.sp-branches {
    background: var(--bg-light);
}

.sp-branches__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.sp-branch {
    background: white;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.3s ease;
}

.sp-branch:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.sp-branch--active {
    border: 2px solid var(--primary-color);
}

.sp-branch__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sp-branch__header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.sp-branch__badge {
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
}

.sp-branch__address {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    line-height: 1.5;
}

.sp-branch__address svg {
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.sp-branch__phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    white-space: nowrap;
    align-self: flex-start;
}

.sp-branch__phone:hover {
    text-decoration: underline;
}


/* Улучшения для hero */
.sp-hero__clinic-address {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
}

.sp-hero__other-branch {
    display: inline-block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.sp-hero__other-branch:hover {
    text-decoration: underline;
}

/* Улучшения для симптомов */
.sp-symptoms__note {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: center;
}

/* Улучшения для блока опасности */
.sp-danger__note {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.sp-danger__subtext {
    display: block;
    margin-top: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

/* Улучшения для результатов */
.sp-results__cta {
    text-align: center;
}

.sp-results__cta p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

/* Улучшения для блока "почему мы" */
.sp-why__cta {
    text-align: center;
    margin-top: 48px;
}

.sp-why__cta p {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Улучшения для докторов */
.sp-doctors__note {
    text-align: center;
    margin-bottom: 24px;
}

.sp-doctors__note p {
    font-size: 15px;
    color: var(--text-gray);
}

.doctor-card__exp {
    font-size: 13px;
    color: var(--text-gray);
    margin-top: 4px;
}

/* Улучшения для SEO блока */
.sp-seo__inline-cta {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.sp-seo__inline-cta p {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 16px;
}

/* Форма - дополнения */
.form-optional {
    font-weight: 400;
    color: var(--text-gray);
    font-size: 13px;
}

.sp-appointment__form textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    transition: all 0.3s ease;
    background: var(--bg-light);
    resize: vertical;
    min-height: 80px;
}

.sp-appointment__form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(76, 165, 167, 0.1);
}

/* Адаптивность новых блоков */
@media (max-width: 992px) {
    .sp-steps__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .sp-reviews__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .sp-empathy__card {
        grid-template-columns: 1fr;
        gap: 40px;
        max-width: 600px;
    }
    
    .sp-empathy__left {
        text-align: center;
    }
    
    .sp-empathy__cta {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sp-empathy {
        padding: 60px 0;
    }
    
    .sp-empathy__title {
        font-size: 28px;
    }
    
    .sp-empathy__text {
        font-size: 16px;
        padding: 16px 20px;
    }

    .sp-empathy__note {
        padding: 16px 18px;
    }

    .sp-empathy__note p {
        font-size: 14px;
    }
    
    .sp-empathy__item {
        padding: 16px 20px;
    }
    
    .sp-empathy__icon {
        width: 40px;
        height: 40px;
    }
    
    .sp-empathy__item-text {
        font-size: 14px;
    }
    
    .sp-steps__grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .sp-branches__grid {
        grid-template-columns: 1fr;
    }
}

/* =====================================================
   КОМПОНЕНТ ОТЗЫВОВ (reviews.block)
   ===================================================== */

.reviews-section {
    background: var(--bg-light);
}

.reviews-source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
}

.reviews-source svg {
    color: #fc3f1d; /* Цвет Яндекса */
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.review-card__avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-card__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-card__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-card__date {
    font-size: 13px;
    color: var(--text-gray);
}

.review-card__rating {
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.review-star {
    font-size: 18px;
    color: #e5e7eb;
}

.review-star--filled {
    color: #fbbf24;
}

.review-card__text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 16px;
}

.review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.review-card__more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 0;
    transition: all 0.2s ease;
}

.review-card__more:hover {
    color: var(--primary-dark);
}

.review-card__more svg {
    transition: transform 0.2s ease;
}

.review-card__more:hover svg {
    transform: translateX(3px);
}

.review-card__source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #fff5f5;
    border-radius: 8px;
    font-size: 12px;
    color: #fc3f1d;
    width: fit-content;
    margin-left: auto;
}

.review-card__source svg {
    opacity: 0.8;
}

/* Модальное окно отзыва */
.review-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0);
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.review-modal--active {
    visibility: visible;
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.review-modal__content {
    position: relative;
    background: white;
    border-radius: 24px;
    padding: 32px;
    max-width: 560px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.review-modal--active .review-modal__content {
    transform: scale(1) translateY(0);
}

.review-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-gray);
    transition: all 0.2s ease;
}

.review-modal__close:hover {
    background: #f3f4f6;
    color: var(--text-dark);
}

.review-modal__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.review-modal__avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-modal__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-modal__name {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.review-modal__date {
    font-size: 14px;
    color: var(--text-gray);
}

.review-modal__rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.review-modal__rating .review-star {
    font-size: 22px;
}

.review-modal__text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 24px;
    white-space: pre-line;
}

.review-modal__source {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: #fff5f5;
    border-radius: 10px;
    font-size: 13px;
    color: #fc3f1d;
}

/* Мобильная адаптация модального окна */
@media (max-width: 640px) {
    .review-modal {
        padding: 16px;
        align-items: flex-end;
    }
    
    .review-modal__content {
        max-height: 85vh;
        padding: 24px;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
    }
    
    .review-modal--active .review-modal__content {
        transform: translateY(0);
    }
    
    .review-modal__avatar {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .review-modal__name {
        font-size: 16px;
    }
    
    .review-modal__text {
        font-size: 15px;
    }
}

/* Пустое состояние */
.reviews-empty {
    text-align: center;
    padding: 60px 40px;
    background: white;
    border-radius: 20px;
}

.reviews-empty svg {
    color: var(--text-gray);
    opacity: 0.3;
    margin-bottom: 20px;
}

.reviews-empty p {
    font-size: 16px;
    color: var(--text-gray);
}

/* Адаптивность отзывов */
@media (max-width: 992px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .review-card {
        padding: 24px;
    }
    
    .review-card__avatar {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* =====================================================
   СЛАЙДЕР ОТЗЫВОВ
   ===================================================== */

.reviews-slider-wrapper {
    position: relative;
    margin-bottom: 32px;
}

.reviews-slider {
    overflow: hidden;
    margin: 0 -12px;
}

.reviews-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.3s ease;
    padding: 0 12px;
}

.review-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
}

/* Карточка CTA "Поделитесь своим отзывом" */
.review-card-cta {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px solid #fc3f1d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-card-cta__content {
    text-align: center;
    padding: 20px;
}

.review-card-cta__icon {
    color: #fc3f1d;
    margin-bottom: 16px;
}

.review-card-cta__title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.review-card-cta__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 20px;
}

.review-card-cta .btn {
    width: 100%;
    justify-content: center;
}

.reviews-slider-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease;
}

.slider-btn:hover:not(:disabled) {
    background: var(--primary-color);
    color: white;
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.reviews-section-footer {
    text-align: center;
    margin-top: 40px;
}

/* Адаптивность слайдера */
@media (max-width: 992px) {
    .review-slide {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (max-width: 768px) {
    .review-slide {
        flex: 0 0 calc(100% - 24px);
    }
    
    .reviews-slider {
        margin: 0 -16px;
    }
    
    .reviews-slider-track {
        padding: 0 16px;
    }
}

/* =====================================================
   СТРАНИЦА ОТЗЫВОВ
   ===================================================== */

.reviews-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.reviews-hero .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.reviews-hero .section-title {
    color: white;
}

.reviews-hero .section-desc {
    color: rgba(255, 255, 255, 0.9);
}

.reviews-list-section {
    padding: 60px 0;
}

.reviews-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.reviews-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.reviews-pagination nav {
    display: flex;
    gap: 8px;
}

.reviews-pagination a,
.reviews-pagination span {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-dark);
    background: white;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.reviews-pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.reviews-pagination span {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Форма заявки на странице отзывов */
.reviews-cta-section {
    background: var(--bg-light);
    padding: 60px 0;
}

.reviews-cta-card {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.reviews-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-align: center;
}

.reviews-cta-text {
    font-size: 16px;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 32px;
}

.reviews-cta-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(76, 165, 167, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .reviews-cta-card {
        padding: 32px 24px;
    }
}

/* Кнопка на Яндекс.Карты */
.reviews-yandex-cta {
    padding: 60px 0;
}

.yandex-cta-card {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-radius: 24px;
    padding: 48px 32px;
    border: 2px solid #fc3f1d;
}

.yandex-cta-icon {
    color: #fc3f1d;
    margin-bottom: 20px;
}

.yandex-cta-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.yandex-cta-text {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .reviews-list-grid {
        grid-template-columns: 1fr;
    }
    
    .yandex-cta-card {
        padding: 32px 24px;
    }
}

/* =====================================================
   БЛОГ
   ===================================================== */

/* Hero секция блога */
.blog-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.blog-hero .section-label {
    color: rgba(255, 255, 255, 0.8);
}

.blog-hero .section-title {
    color: white;
}

.blog-hero .section-desc {
    color: rgba(255, 255, 255, 0.9);
}

/* Список статей */
.blog-list-section {
    padding: 60px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card__image {
    display: block;
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card__body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.blog-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--primary-color);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.blog-card__body .blog-card__header {
    margin-bottom: 16px;
}

.blog-card__date {
    font-size: 14px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card__title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card__title a:hover {
    color: var(--primary-color);
}

.blog-card__excerpt {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}

.blog-card__link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.blog-card__link svg {
    transition: transform 0.2s ease;
}

.blog-card__link:hover svg {
    transform: translateX(4px);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.blog-pagination nav {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blog-pagination a,
.blog-pagination span {
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    background: white;
    border: 2px solid #e5e7eb;
    transition: all 0.2s ease;
    font-size: 14px;
}

.blog-pagination a:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-pagination span {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.blog-empty {
    text-align: center;
    padding: 80px 40px;
    background: white;
    border-radius: 20px;
}

.blog-empty svg {
    color: var(--text-gray);
    opacity: 0.3;
    margin-bottom: 24px;
}

.blog-empty p {
    font-size: 16px;
    color: var(--text-gray);
}

/* Хлебные крошки */
.section.blog-breadcrumbs {
    padding-top: 120px !important; /* Отступ сверху, чтобы не перекрывалось меню */
    padding-bottom: 24px;
    background: var(--bg-light);
    margin-top: 0;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumbs__item {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.breadcrumbs__item:hover {
    color: var(--primary-color);
}

.breadcrumbs__item--current {
    color: var(--text-dark);
    font-weight: 500;
}

.breadcrumbs__separator {
    color: var(--text-gray);
    font-size: 14px;
}

/* Страница статьи */
.section.blog-article {
    padding-top: 40px !important; /* Небольшой отступ после хлебных крошек */
    padding-bottom: 60px;
    margin-top: 0;
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.article-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.article-image {
    width: 100%;
    margin-bottom: 32px;
    border-radius: 16px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.article-header {
    margin-bottom: 32px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: static !important; /* Убираем любое sticky/fixed позиционирование */
}

.article-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
    position: static !important; /* Убираем любое sticky/fixed позиционирование */
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
}

.article-date svg {
    opacity: 0.6;
}

.article-date--updated {
    font-size: 13px;
    color: var(--text-gray);
    opacity: 0.8;
}

.article-intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 32px;
    font-weight: 500;
}

.article-intro p {
    margin: 0;
}

/* Содержание статьи (TOC) */
.article-toc {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 16px;
    padding: 24px 28px;
    margin-bottom: 40px;
}

.article-toc__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.article-toc__header svg {
    color: var(--primary-color);
}

.article-toc__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.article-toc__nav {
    margin: 0;
}

.article-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.article-toc__item {
    margin: 0;
}

.article-toc__link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.2s ease;
    display: block;
    padding: 4px 0;
}

.article-toc__link:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

/* Основной контент статьи */
.article-body {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
    background: white;
    padding: 48px;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    line-height: 1.3;
    scroll-margin-top: 120px; /* Отступ для sticky header */
}

.article-body h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
    line-height: 1.4;
}

.article-body ul,
.article-body ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.article-body ul {
    list-style-type: disc;
}

.article-body ol {
    list-style-type: decimal;
}

.article-body li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.article-body a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.article-body a:hover {
    color: var(--primary-dark);
}

.article-body blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 24px 0;
    font-style: italic;
    color: var(--text-gray);
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 24px 0;
}

.article-body code {
    background: #f3f4f6;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.article-body pre {
    background: #f3f4f6;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 24px 0;
}

.article-body pre code {
    background: none;
    padding: 0;
}

/* CTA в конце статьи */
/* ============================================
   ПРОГРЕСС-БАР ЧТЕНИЯ
   ============================================ */
.reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 0, 0, 0.05);
    z-index: 9999;
}

.reading-progress__bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #8b5cf6);
    width: 0%;
    transition: width 0.1s ease-out;
}

/* ============================================
   HERO ИЗОБРАЖЕНИЕ СТАТЬИ
   ============================================ */
.article-hero {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 48px;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 21 / 9;
}

.article-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.05) 100%
    );
}

/* ============================================
   LAYOUT СТАТЬИ (двухколоночный)
   ============================================ */
.article-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.article-main {
    min-width: 0; /* Предотвращает переполнение */
}

.article-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

/* ============================================
   HEADER СТАТЬИ
   ============================================ */
.article-header {
    margin-bottom: 48px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.article-meta__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.article-meta__item svg {
    opacity: 0.7;
    flex-shrink: 0;
}

.article-meta__item--updated {
    color: #8b5cf6;
}

/* ============================================
   СОЦИАЛЬНЫЕ КНОПКИ
   ============================================ */
.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.article-share__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-gray);
}

.article-share__buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-share__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

.article-share__btn svg {
    width: 22px;
    height: 22px;
}

.article-share__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.article-share__btn--vk {
    background: #0077ff;
    color: white;
}

.article-share__btn--vk:hover {
    background: #005ed6;
    box-shadow: 0 6px 16px rgba(0, 119, 255, 0.3);
}

.article-share__btn--telegram {
    background: #0088cc;
    color: white;
}

.article-share__btn--telegram:hover {
    background: #006ba3;
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.3);
}

.article-share__btn--copy {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

.article-share__btn--copy:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(76, 165, 167, 0.3);
}

/* ============================================
   INTRO (ЛИДИРУЮЩИЙ АБЗАЦ)
   ============================================ */
.article-intro {
    font-size: 20px;
    line-height: 1.8;
    color: #334155;
    font-weight: 500;
    margin-bottom: 32px;
    padding: 32px 40px;
    background: white;
    border-left: 4px solid var(--primary-color);
    border-radius: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.article-intro p {
    margin: 0;
}

/* ============================================
   КАРТОЧКА ЭКСПЕРТА (E-E-A-T)
   ============================================ */
.article-expert {
    margin: 48px 0;
    padding: 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    position: relative;
}

.article-expert__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(76, 165, 167, 0.25);
}

.article-expert__badge svg {
    flex-shrink: 0;
}

.article-expert__card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.article-expert__photo {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-color);
    box-shadow: 0 4px 16px rgba(76, 165, 167, 0.2);
}

.article-expert__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-expert__photo--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #64748b;
}

.article-expert__info {
    flex: 1;
}

.article-expert__name {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 8px 0;
}

.article-expert__specialization {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 12px 0;
}

.article-expert__bio {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0 0 16px 0;
}

.article-expert__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-expert__link:hover {
    color: var(--primary-dark);
    gap: 12px;
}

.article-expert__link svg {
    transition: transform 0.3s ease;
}

.article-expert__link:hover svg {
    transform: translateX(4px);
}

/* ============================================
   SIDEBAR И TOC
   ============================================ */
.article-sidebar {
    position: relative;
}

.article-sidebar__sticky {
    position: sticky;
    top: 120px;
}

.article-toc {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 24px;
    transition: all 0.3s ease;
}

.article-toc:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.1);
}

.article-toc__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid #f1f5f9;
}

.article-toc__header svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.article-toc__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.article-toc__list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: toc-counter;
}

.article-toc__item {
    margin: 0;
}

.article-toc__link {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
    padding-left: 32px;
}

.article-toc__link::before {
    counter-increment: toc-counter;
    content: counter(toc-counter);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #f1f5f9;
    color: var(--text-gray);
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.article-toc__link:hover {
    background: #f8fafc;
    color: var(--primary-color);
    padding-left: 36px;
}

.article-toc__link:hover::before {
    background: var(--primary-color);
    color: white;
}

.article-toc__link.active {
    background: linear-gradient(135deg, #eff6ff 0%, #f0f9ff 100%);
    color: var(--primary-color);
    font-weight: 600;
}

.article-toc__link.active::before {
    background: var(--primary-color);
    color: white;
}

/* ============================================
   НАВИГАЦИЯ МЕЖДУ СТАТЬЯМИ
   ============================================ */
.article-pagination {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid #f1f5f9;
}

.article-pagination__item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.article-pagination__item:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.article-pagination__item--prev {
    justify-content: flex-start;
}

.article-pagination__item--next {
    justify-content: flex-end;
}

.article-pagination__item--disabled {
    visibility: hidden;
}

.article-pagination__item svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.article-pagination__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.article-pagination__item--next .article-pagination__content {
    align-items: flex-end;
    text-align: right;
}

.article-pagination__label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-gray);
}

.article-pagination__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ============================================
   CTA В КОНЦЕ СТАТЬИ
   ============================================ */
.article-cta {
    margin-top: 56px;
    padding: 48px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.article-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.article-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.article-cta__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
    position: relative;
    z-index: 1;
}

.article-cta__title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.article-cta__text {
    font-size: 17px;
    color: #475569;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.article-cta .btn {
    position: relative;
    z-index: 1;
}

/* ============================================
   СВЯЗАННЫЕ СТАТЬИ
   ============================================ */
.related-articles {
    margin-top: 80px;
    padding-top: 56px;
    border-top: 2px solid #f1f5f9;
}

.related-articles__title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 32px;
    text-align: center;
}

.related-articles__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-article {
    display: block;
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.related-article:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.15);
}

.related-article__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: #f1f5f9;
}

.related-article__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-article:hover .related-article__image img {
    transform: scale(1.05);
}

.related-article__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
}

.related-article__content {
    padding: 24px;
}

.related-article__date {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.related-article__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.2s ease;
}

.related-article:hover .related-article__title {
    color: var(--primary-color);
}

.related-article__excerpt {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Адаптивность блога */
@media (max-width: 1200px) {
    .article-layout {
        grid-template-columns: 1fr 280px;
        gap: 32px;
    }

    .article-content {
        padding: 0;
    }

    .article-title {
        font-size: 36px;
    }

    .related-articles__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Делаем layout одноколоночным на планшетах */
    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        order: -1; /* TOC показывается перед контентом */
    }

    .article-sidebar__sticky {
        position: static;
    }

    .article-content {
        padding: 0;
    }

    .article-title {
        font-size: 32px;
    }

    .article-hero {
        aspect-ratio: 16 / 9;
        margin-bottom: 32px;
    }

    .article-pagination {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .article-pagination__item {
        padding: 16px;
    }

    .article-pagination__item--next .article-pagination__content {
        align-items: flex-start;
        text-align: left;
    }

    .related-articles__grid {
        grid-template-columns: 1fr;
    }

    .article-cta {
        padding: 32px 24px;
    }

    .article-cta__title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-hero {
        padding: 60px 0 40px;
    }

    .blog-article {
        padding: 100px 0 40px;
    }

    .blog-card__image {
        height: 180px;
    }

    .blog-card__body {
        padding: 24px;
    }

    .article-content {
        padding: 0;
        border-radius: 0;
    }

    .article-hero {
        border-radius: 16px;
        margin-bottom: 24px;
        aspect-ratio: 4 / 3;
    }

    .article-header {
        padding: 24px;
        border-radius: 16px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-meta {
        gap: 12px;
    }

    .article-body {
        padding: 32px 24px;
        border-radius: 16px;
    }

    .article-meta__item {
        font-size: 13px;
    }

    .article-share {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .article-share__buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .article-intro {
        font-size: 17px;
        padding: 24px;
        border-radius: 12px;
    }

    .article-expert {
        padding: 24px;
        margin: 32px 0;
    }

    .article-expert__card {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .article-expert__photo {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .article-expert__name {
        font-size: 20px;
    }

    .article-expert__bio {
        font-size: 14px;
    }

    .article-body h2 {
        font-size: 24px;
        margin-top: 32px;
    }

    .article-body h3 {
        font-size: 20px;
    }

    .article-toc {
        padding: 20px;
        border-radius: 16px;
    }

    .article-toc__link {
        font-size: 13px;
        padding: 8px 10px;
        padding-left: 28px;
    }

    .article-toc__link::before {
        width: 18px;
        height: 18px;
        font-size: 10px;
        left: 10px;
    }

    .article-pagination__item {
        padding: 16px;
        gap: 12px;
    }

    .article-pagination__label {
        font-size: 11px;
    }

    .article-pagination__title {
        font-size: 14px;
    }

    .article-cta {
        padding: 32px 20px;
        margin-top: 40px;
    }

    .article-cta__icon {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
    }

    .article-cta__icon svg {
        width: 32px;
        height: 32px;
    }

    .article-cta__title {
        font-size: 22px;
    }

    .article-cta__text {
        font-size: 15px;
    }

    .related-articles {
        margin-top: 56px;
        padding-top: 40px;
    }

    .related-articles__title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .related-article__content {
        padding: 20px;
    }

    .related-article__title {
        font-size: 16px;
    }

    .related-article__excerpt {
        font-size: 13px;
    }

    .breadcrumbs {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .article-header {
        padding: 20px;
        border-radius: 12px;
    }

    .article-title {
        font-size: 24px;
    }

    .article-content {
        padding: 0;
    }

    .article-intro {
        font-size: 16px;
        padding: 20px;
        border-radius: 12px;
    }

    .article-body {
        font-size: 15px;
        padding: 24px 20px;
        border-radius: 12px;
    }

    .article-body h2 {
        font-size: 20px;
    }

    .article-body h3 {
        font-size: 18px;
    }

    .article-share__btn {
        width: 36px;
        height: 36px;
    }

    .article-share__btn svg {
        width: 18px;
        height: 18px;
    }

    .article-cta__title {
        font-size: 20px;
    }

    .related-articles__title {
        font-size: 22px;
    }
}

/* Sticky тулбар для RichEditor в Filament */
.blog-rich-editor {
    position: relative;
}

.blog-rich-editor .fi-fo-field-wrp {
    position: relative;
}

.blog-rich-editor .tiptap-editor {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.blog-rich-editor .tiptap-toolbar {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    border-bottom: 2px solid #e5e7eb;
    padding: 12px 16px;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
}

.blog-rich-editor .ProseMirror {
    min-height: 400px;
    max-height: 70vh;
    overflow-y: auto;
    padding: 20px;
    font-size: 15px;
    line-height: 1.7;
}

.blog-rich-editor .ProseMirror:focus {
    outline: none;
}

.blog-rich-editor .tiptap-toolbar button {
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.blog-rich-editor .tiptap-toolbar button:hover {
    background: #f3f4f6;
}

/* =====================================================
   НОВЫЕ БЛОКИ ГЛАВНОЙ СТРАНИЦЫ
   ===================================================== */

/* 1. Усиленный Hero блок */
.hero-enhanced .hero__microtext {
    margin-top: 16px;
    font-size: 14px;
    color: var(--text-gray);
    text-align: center;
}

/* Виджет Яндекс.Карт в Hero (улучшенный) */
.hero__yandex-widget {
    margin-bottom: 32px;
}

.yandex-widget {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 28px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    text-decoration: none;
    color: inherit;
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.yandex-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #FC3F1D 0%, #FF6B4A 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.yandex-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.yandex-widget:hover::before {
    transform: scaleX(1);
}

.yandex-widget__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.yandex-widget__logo {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(252, 63, 29, 0.1) 0%, rgba(252, 63, 29, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.yandex-widget__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
}

.yandex-widget:hover .yandex-widget__logo {
    background: linear-gradient(135deg, rgba(252, 63, 29, 0.2) 0%, rgba(252, 63, 29, 0.1) 100%);
    transform: scale(1.05);
}

.yandex-widget__info {
    flex: 1;
    min-width: 0;
}

.yandex-widget__label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.yandex-widget__trust {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.yandex-widget__trust svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.yandex-widget__rating {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.yandex-widget__stars {
    display: flex;
    gap: 2px;
    color: #FFC107;
    flex-shrink: 0;
}

.yandex-widget__score-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.yandex-widget__score {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    white-space: nowrap;
}

.yandex-widget__count {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.yandex-widget__right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.yandex-widget__arrow {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.yandex-widget:hover .yandex-widget__arrow {
    transform: translateX(4px) scale(1.1);
    box-shadow: 0 4px 16px rgba(76, 165, 167, 0.4);
}

/* 2. Эмпатический блок (улучшенный) */
.empathy-section {
    padding: 80px 0;
    background: white;
}

.empathy-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.empathy-content {
    text-align: center;
    margin-bottom: 48px;
}

.empathy-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.empathy-intro {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.empathy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.empathy-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.empathy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.empathy-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(76, 165, 167, 0.15);
}

.empathy-card:hover::before {
    transform: scaleX(1);
}

.empathy-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.1) 0%, rgba(76, 165, 167, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.empathy-card:hover .empathy-card__icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    transform: scale(1.1);
}

.empathy-card__title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
    margin: 0;
}

.empathy-cta {
    text-align: center;
}

/* 3. Блок "Как проходит приём" */
.process-section {
    padding: 80px 0;
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.process-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(76, 165, 167, 0.1);
}

.process-card__number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.process-card__title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.process-card__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.process-note {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
}

.process-note p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

/* 4. Результаты до/после */
.results-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.result-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.result-card__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.result-card__image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.result-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-card__label {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
}

.result-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    color: var(--text-gray);
    opacity: 0.5;
}

.result-card__title {
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    text-align: center;
}

.results-cta-text {
    text-align: center;
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* 5. Блок о стерильности (улучшенный) */
.sterility-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.sterility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.sterility-content {
    text-align: left;
}

.sterility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.1) 0%, rgba(76, 165, 167, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.sterility-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.sterility-text {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin: 0;
}

.sterility-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sterility-feature {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 16px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.sterility-feature:hover {
    border-color: var(--primary-color);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(76, 165, 167, 0.15);
}

.sterility-feature svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.sterility-feature span {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* 6. WhatsApp фото блок (улучшенный) */
.whatsapp-photo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.whatsapp-photo-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.whatsapp-photo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-photo-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.3);
    position: relative;
    z-index: 2;
}

.whatsapp-photo-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 2px dashed rgba(37, 211, 102, 0.2);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.5;
    }
}

.whatsapp-photo-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #25D366;
    border-radius: 50%;
    animation: float 2s ease-in-out infinite;
}

.whatsapp-photo-dot:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.whatsapp-photo-dot:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 0.7s;
}

.whatsapp-photo-dot:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1.4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.whatsapp-photo-content {
    text-align: left;
}

.whatsapp-photo-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.whatsapp-photo-text {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    border: none;
}

.btn-whatsapp:hover {
    background: #20BA5A;
    color: white;
}

/* Telegram блок */
.telegram-photo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.telegram-photo-wrapper {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.telegram-photo-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.telegram-photo-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0088cc 0%, #229ED9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 12px 40px rgba(0, 136, 204, 0.3);
    position: relative;
    z-index: 2;
}

.telegram-photo-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border: 2px dashed rgba(0, 136, 204, 0.2);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.telegram-photo-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #0088cc;
    border-radius: 50%;
    animation: float 2s ease-in-out infinite;
}

.telegram-photo-dot:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.telegram-photo-dot:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 0.7s;
}

.telegram-photo-dot:nth-child(3) {
    bottom: 20%;
    left: 20%;
    animation-delay: 1.4s;
}

.telegram-photo-content {
    text-align: left;
}

.telegram-photo-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.2;
}

.telegram-photo-text {
    font-size: 17px;
    color: var(--text-gray);
    margin-bottom: 32px;
    line-height: 1.7;
}

.btn-telegram {
    background: #0088cc;
    color: white;
    border: none;
}

.btn-telegram:hover {
    background: #229ED9;
    color: white;
}

/* 7. FAQ аккордеон */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-color);
}

.faq-item--active {
    border-color: var(--primary-color);
}

.faq-item__question {
    width: 100%;
    padding: 24px 28px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.2s ease;
}

.faq-item__question:hover {
    color: var(--primary-color);
}

.faq-item__question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.faq-item--active .faq-item__question svg {
    transform: rotate(180deg);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
}

.faq-item--active .faq-item__answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-item__answer p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
    margin: 0;
}

.faq-item__answer a {
    color: var(--primary-color);
    text-decoration: underline;
}

.faq-item__answer a:hover {
    color: var(--primary-dark);
}

/* 8. Улучшенные акции */
.offer-card__footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.offer-card__validity {
    font-size: 13px;
    color: var(--text-gray);
}

.offer-card__cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.2s ease;
}

.offer-card__cta:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* 9. Улучшенные специалисты */
.doctor-card__experience {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 8px 0;
}

.doctor-card__bio {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 8px 0 12px 0;
}

/* 10. Улучшенные услуги */
.service-card__text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 12px 0 20px 0;
    min-height: 44px;
}

/* 11. Улучшенные отступы и контраст */
.section:not(.blog-article):not(.blog-breadcrumbs) {
    padding: 80px 0;
}

.section-header--center {
    text-align: center;
}

.section-footer--center {
    text-align: center;
    margin-top: 40px;
}

/* Адаптивность для новых блоков */
@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .empathy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .empathy-title {
        font-size: 32px;
    }
    
    .sterility-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sterility-content {
        text-align: center;
    }
    
    .yandex-widget {
        padding: 24px 20px;
        gap: 20px;
        min-height: 100px;
    }
    
    .yandex-widget__logo {
        width: 56px;
        height: 56px;
    }
    
    .yandex-widget__trust {
        font-size: 14px;
        margin-bottom: 12px;
    }
    
    .yandex-widget__score {
        font-size: 28px;
    }
    
    .yandex-widget__stars svg {
        width: 18px;
        height: 18px;
    }
    
    .yandex-widget__arrow {
        width: 48px;
        height: 48px;
    }
}

@media (max-width: 768px) {
    .hero-enhanced .hero__promise {
        font-size: 18px;
    }
    
    .empathy-section {
        padding: 60px 0;
    }
    
    .empathy-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .empathy-title {
        font-size: 28px;
    }
    
    .empathy-intro {
        font-size: 16px;
    }
    
    .sterility-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .sterility-title {
        font-size: 28px;
    }
    
    .whatsapp-photo-wrapper {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .whatsapp-photo-icon {
        width: 100px;
        height: 100px;
    }

    .whatsapp-photo-decoration {
        width: 140px;
        height: 140px;
    }

    .whatsapp-photo-title {
        font-size: 24px;
    }

    .telegram-photo-wrapper {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }

    .telegram-photo-icon {
        width: 100px;
        height: 100px;
    }

    .telegram-photo-decoration {
        width: 140px;
        height: 140px;
    }

    .telegram-photo-title {
        font-size: 24px;
    }
    
    .process-section {
        padding: 60px 0;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-card {
        padding: 24px 20px;
    }
    
    .results-section {
        padding: 60px 0;
    }
    
    .results-grid {
        gap: 24px;
    }
    
    .sterility-section {
        padding: 40px 0;
    }
    
    .sterility-block__title {
        font-size: 24px;
    }
    
    .sterility-block__text {
        font-size: 15px;
    }
    
    .whatsapp-photo-wrapper {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }

    .whatsapp-photo-content {
        text-align: center;
    }

    .whatsapp-photo-title {
        font-size: 24px;
    }

    .telegram-photo-wrapper {
        grid-template-columns: 1fr;
        padding: 32px 24px;
        gap: 32px;
    }

    .telegram-photo-content {
        text-align: center;
    }

    .telegram-photo-title {
        font-size: 24px;
    }
    
    .sterility-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .sterility-content {
        text-align: center;
    }
    
    .empathy-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .empathy-title {
        font-size: 32px;
    }
    
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-item__question {
        padding: 20px 24px;
        font-size: 16px;
    }
    
    .faq-item__answer {
        padding: 0 24px;
    }
    
    .faq-item--active .faq-item__answer {
        padding: 0 24px 20px 24px;
    }
    
    .offer-card__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .section:not(.blog-article):not(.blog-breadcrumbs) {
        padding: 60px 0;
    }
}

/* =====================================================
   CTA MODAL (УНИВЕРСАЛЬНОЕ МОДАЛЬНОЕ ОКНО)
   ===================================================== */
.cta-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    visibility: hidden;
}

.cta-modal.is-open {
    display: flex !important;
    opacity: 1;
    visibility: visible;
}

.cta-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.cta-modal__content {
    position: relative;
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(0, 0, 0, 0.05);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    z-index: 1;
    border: 1px solid rgba(76, 165, 167, 0.1);
}

.cta-modal.is-open .cta-modal__content {
    transform: scale(1);
}

.cta-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 10;
    color: var(--text-gray);
}

.cta-modal__close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.cta-modal__header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.02), rgba(76, 165, 167, 0.01));
}

.cta-modal__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.cta-modal__subtitle {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}

.cta-modal__errors {
    padding: 0 32px 20px;
    flex-shrink: 0;
}

.cta-modal__form {
    padding: 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.cta-modal__form .form-group {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 0 !important;
}

.cta-modal__form .form-label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--text-dark) !important;
    margin-bottom: 8px !important;
    display: block !important;
}

.cta-modal__form .form-label .required {
    color: #e74c3c;
}

.cta-modal__form .form-input,
.cta-modal__form .form-textarea,
.cta-modal__form input[type="text"],
.cta-modal__form input[type="tel"],
.cta-modal__form textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    border: 2px solid var(--border-color) !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-family: inherit !important;
    transition: all 0.3s ease !important;
    background: white !important;
    color: var(--text-dark) !important;
    line-height: 1.5 !important;
    box-sizing: border-box !important;
}

.cta-modal__form .form-input:focus,
.cta-modal__form .form-textarea:focus,
.cta-modal__form input[type="text"]:focus,
.cta-modal__form input[type="tel"]:focus,
.cta-modal__form textarea:focus {
    outline: none !important;
    border-color: var(--primary-color) !important;
    box-shadow: 0 0 0 3px rgba(76, 165, 167, 0.1) !important;
}

.cta-modal__form .form-input--error,
.cta-modal__form .form-textarea--error,
.cta-modal__form input[type="text"].error,
.cta-modal__form input[type="tel"].error,
.cta-modal__form textarea.error {
    border-color: #e74c3c !important;
}

.cta-modal__form .form-textarea,
.cta-modal__form textarea {
    resize: vertical;
    min-height: 100px;
}

.cta-modal__form .form-error {
    font-size: 13px !important;
    color: #e74c3c !important;
    margin-top: 4px !important;
    display: block !important;
}

.cta-modal__submit {
    width: 100% !important;
    margin-top: 4px !important;
    padding: 14px 24px !important;
    font-size: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
}

.cta-modal__privacy {
    font-size: 11px;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.5;
    margin: 0;
}

.cta-modal__privacy a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cta-modal__privacy a:hover {
    text-decoration: none;
}

.cta-modal__messengers {
    padding: 24px 32px 32px !important;
    border-top: 1px solid var(--border-color) !important;
    background: linear-gradient(135deg, rgba(76, 165, 167, 0.03), rgba(76, 165, 167, 0.01)) !important;
    flex-shrink: 0;
    display: block !important;
}

.cta-modal__messengers-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-gray);
    font-size: 13px;
}

.cta-modal__messengers-divider::before,
.cta-modal__messengers-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--border-color);
}

.cta-modal__messengers-divider span {
    padding: 0 12px;
}

.cta-modal__messengers-text {
    font-size: 13px;
    color: var(--text-gray);
    text-align: center;
    margin: 0 0 16px 0;
}

.cta-modal__messengers-buttons {
    display: flex;
    gap: 12px;
}

.cta-modal__messenger-btn {
    flex: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: 2px solid transparent !important;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cta-modal__messenger-btn--telegram {
    background: #0088cc !important;
    color: white !important;
}

.cta-modal__messenger-btn--telegram:hover {
    background: #0077B5 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 136, 204, 0.4) !important;
    color: white !important;
}

.cta-modal__messenger-btn svg {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .cta-modal {
        padding: 0;
    }

    .cta-modal__content {
        max-width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }

    .cta-modal__header {
        padding: 24px 20px 20px;
    }

    .cta-modal__title {
        font-size: 20px;
    }

    .cta-modal__subtitle {
        font-size: 13px;
    }

    .cta-modal__errors {
        padding: 0 20px 16px;
    }

    .cta-modal__form {
        padding: 20px;
        gap: 16px;
    }

    .cta-modal__close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
    }

    .cta-modal__messengers {
        padding: 20px;
    }

    .cta-modal__messengers-buttons {
        flex-direction: column;
    }

    .cta-modal__messenger-btn {
        width: 100%;
    }
}

/* ========================================
   Статические страницы (договор, политика)
   ======================================== */

.static-page {
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    padding: 48px 64px;
    margin: 40px auto;
    max-width: 920px;
}

.static-page h1 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--primary-color);
}

.page-content {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Заголовки в контенте */
.page-content h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.page-content h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.page-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 32px;
    margin-bottom: 16px;
}

.page-content h4 {
    font-size: 17px;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 600;
}

/* Параграфы */
.page-content p {
    margin-bottom: 16px;
    color: var(--text-gray);
}

.page-content p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Списки */
.page-content ul,
.page-content ol {
    margin: 16px 0;
    padding-left: 28px;
}

.page-content ul {
    list-style-type: disc;
}

.page-content ol {
    list-style-type: decimal;
}

.page-content li {
    margin-bottom: 10px;
    color: var(--text-gray);
    line-height: 1.7;
}

.page-content li::marker {
    color: var(--primary-color);
}

/* Горизонтальная линия */
.page-content hr {
    border: none;
    border-top: 2px solid var(--border-color);
    margin: 40px 0;
}

/* Акценты */
.page-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.page-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Адаптивность */
@media (max-width: 768px) {
    .static-page {
        padding: 32px 24px;
        margin: 24px auto;
        border-radius: var(--radius-sm);
    }

    .static-page h1 {
        font-size: 26px;
        margin-bottom: 24px;
        padding-bottom: 16px;
    }

    .page-content {
        font-size: 14px;
    }

    .page-content h2 {
        font-size: 22px;
        margin-top: 32px;
        margin-bottom: 16px;
        padding-top: 20px;
    }

    .page-content h3 {
        font-size: 18px;
        margin-top: 24px;
        margin-bottom: 12px;
    }

    .page-content h4 {
        font-size: 16px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-content ul,
    .page-content ol {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .static-page {
        padding: 24px 16px;
        margin: 16px 8px;
    }

    .static-page h1 {
        font-size: 22px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .page-content {
        font-size: 13px;
    }

    .page-content h2 {
        font-size: 20px;
        margin-top: 28px;
        margin-bottom: 14px;
        padding-top: 16px;
    }

    .page-content h3 {
        font-size: 17px;
        margin-top: 20px;
        margin-bottom: 10px;
    }

    .page-content h4 {
        font-size: 15px;
        margin-top: 16px;
        margin-bottom: 8px;
    }
}

/* ============================================
   СТРАНИЦА СПЕЦИАЛИСТА
   ============================================ */

/* Хлебные крошки */
.doctor-breadcrumbs {
    padding: 24px 0 16px;
    background: var(--bg-white);
}

/* Hero секция */
.doctor-hero {
    padding: 48px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.doctor-hero__content {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.doctor-hero__photo {
    flex-shrink: 0;
}

.doctor-hero__image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(76, 165, 167, 0.25);
}

.doctor-hero__image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    color: #94a3b8;
}

.doctor-hero__info {
    flex: 1;
}

.doctor-hero__name {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 12px 0;
    line-height: 1.2;
}

.doctor-hero__specialization {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 24px 0;
}

.doctor-hero__locations {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f0fdfa 0%, #ecfdf5 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 32px;
    font-size: 16px;
    color: var(--text-gray);
}

.doctor-hero__locations svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.doctor-hero__cta {
    margin-top: 8px;
}

/* Биография */
.doctor-bio-section {
    padding: 60px 0;
}

.doctor-bio {
    background: white;
    padding: 48px;
    border-radius: 24px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid #f1f5f9;
}

.doctor-bio__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.doctor-bio__header svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.doctor-bio__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.doctor-bio__content {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
}

.doctor-bio__content p {
    margin-bottom: 16px;
}

.doctor-bio__content p:last-child {
    margin-bottom: 0;
}

.doctor-bio__content ul,
.doctor-bio__content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.doctor-bio__content li {
    margin-bottom: 8px;
}

.doctor-bio__content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Локации */
.doctor-locations {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.doctor-locations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.location-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 32px rgba(76, 165, 167, 0.15);
    transform: translateY(-4px);
}

.location-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    margin-bottom: 20px;
    color: white;
    box-shadow: 0 4px 16px rgba(76, 165, 167, 0.25);
}

.location-card__city {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 20px 0;
}

.location-card__info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

.location-card__info:last-of-type {
    margin-bottom: 24px;
}

.location-card__info svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary-color);
}

.location-card__link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.location-card__link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.location-card__button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.location-card__button:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 16px rgba(76, 165, 167, 0.25);
}

.location-card__button svg {
    transition: transform 0.3s ease;
}

.location-card__button:hover svg {
    transform: translateX(4px);
}

/* CTA блок */
.doctor-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.doctor-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.doctor-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.doctor-cta__content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.doctor-cta__icon {
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    backdrop-filter: blur(10px);
}

.doctor-cta__title {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin: 0 0 16px 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.doctor-cta__text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 32px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.doctor-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.doctor-cta .btn-primary:hover {
    background: var(--bg-light);
    border-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Адаптивность */
@media (max-width: 992px) {
    .doctor-hero__content {
        flex-direction: column;
        padding: 40px 32px;
        gap: 32px;
        text-align: center;
    }

    .doctor-hero__photo {
        margin: 0 auto;
    }

    .doctor-hero__image {
        width: 220px;
        height: 220px;
    }

    .doctor-hero__name {
        font-size: 36px;
    }

    .doctor-hero__locations {
        justify-content: center;
    }

    .doctor-hero__cta {
        width: 100%;
    }

    .doctor-locations__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .doctor-hero {
        padding: 32px 0;
    }

    .doctor-hero__content {
        padding: 32px 24px;
    }

    .doctor-hero__image {
        width: 180px;
        height: 180px;
        border-width: 4px;
    }

    .doctor-hero__name {
        font-size: 28px;
    }

    .doctor-hero__specialization {
        font-size: 16px;
    }

    .doctor-hero__locations {
        font-size: 14px;
        padding: 12px 16px;
    }

    .doctor-bio-section {
        padding: 40px 0;
    }

    .doctor-bio {
        padding: 32px 24px;
    }

    .doctor-bio__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .doctor-bio__title {
        font-size: 24px;
    }

    .doctor-bio__content {
        font-size: 15px;
    }

    .doctor-locations {
        padding: 40px 0;
    }

    .location-card {
        padding: 24px;
    }

    .location-card__icon {
        width: 56px;
        height: 56px;
    }

    .location-card__city {
        font-size: 20px;
    }

    .doctor-cta {
        padding: 60px 0;
    }

    .doctor-cta__icon {
        width: 80px;
        height: 80px;
    }

    .doctor-cta__icon svg {
        width: 48px;
        height: 48px;
    }

    .doctor-cta__title {
        font-size: 28px;
    }

    .doctor-cta__text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .doctor-hero__content {
        padding: 24px 20px;
    }

    .doctor-hero__image {
        width: 160px;
        height: 160px;
    }

    .doctor-hero__name {
        font-size: 24px;
    }

    .doctor-bio {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .doctor-bio__title {
        font-size: 22px;
    }

    .location-card {
        padding: 20px;
    }

    .location-card__icon {
        width: 48px;
        height: 48px;
    }

    .location-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .doctor-cta__title {
        font-size: 24px;
    }

    .doctor-cta .btn-lg {
        width: 100%;
    }
}

.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.booking-modal.is-open {
    display: flex;
}

.booking-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

.booking-modal__content {
    position: relative;
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 600px;
    height: 90vh;
    max-height: 800px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.3);
    z-index: 1;
    overflow: hidden;
}

.booking-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color, #e5e7eb);
    flex-shrink: 0;
}

.booking-modal__title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark, #1a1a1a);
    margin: 0;
}

.booking-modal__close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-gray, #666);
    flex-shrink: 0;
}

.booking-modal__close:hover {
    background: var(--primary-color, #4a7c59);
    color: white;
}

.booking-modal__iframe-wrapper {
    flex: 1;
    overflow: hidden;
}

.booking-modal__iframe-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.booking-modal__loader {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--text-gray, #666);
    font-size: 15px;
}

.booking-modal__spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color, #e5e7eb);
    border-top-color: var(--primary-color, #4a7c59);
    border-radius: 50%;
    animation: booking-spin 0.8s linear infinite;
}

@keyframes booking-spin {
    to {
        transform: rotate(360deg);
    }
}

.booking-modal__fallback {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px;
    text-align: center;
    color: var(--text-gray, #666);
    font-size: 15px;
}

.booking-modal__fallback .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 768px) {
    .booking-modal {
        padding: 0;
    }

    .booking-modal__content {
        border-radius: 0;
        max-width: 100%;
        height: 100vh;
        max-height: none;
    }
}

.city-chip__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(76, 165, 167, 0.14);
    color: var(--primary-color);
    flex-shrink: 0;
}

.city-chip__text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    line-height: 1.1;
    min-width: 0;
}

.city-chip__label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #7a8a96;
    opacity: 1;
}

.city-chip__value {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
}

.city-chip__icon svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .city-chip__icon {
        width: 24px;
        height: 24px;
    }

    .city-chip__icon svg {
        width: 13px;
        height: 13px;
    }

    .city-chip__label {
        font-size: 7px;
    }

    .city-chip__value {
        font-size: 12px;
    }
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    padding: 16px 20px;
    transform: translateY(calc(100% + 20px));
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
    pointer-events: none;
}

.cookie-consent.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.cookie-consent__card {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 720px;
    margin: 0 auto;
    padding: 18px 24px;
    background: var(--bg-white, #fff);
    border-radius: var(--radius, 12px);
    box-shadow: var(--shadow-lg, 0 8px 24px rgba(0, 0, 0, 0.16));
    border: 1px solid var(--border-color, #e0e0e0);
}

.cookie-consent__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 165, 167, 0.1);
    border-radius: var(--radius-sm, 8px);
    color: var(--primary-color, #4ca5a7);
}

.cookie-consent__text {
    font-size: 14px;
    color: var(--text-gray, #5a6c7d);
    line-height: 1.5;
    margin: 0;
}

.cookie-consent__link {
    color: var(--primary-color, #4ca5a7);
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.cookie-consent__link:hover {
    color: var(--primary-dark, #3a7d7f);
    text-decoration: underline;
}

.cookie-consent__btn {
    flex-shrink: 0;
    padding: 10px 24px;
    background: var(--primary-color, #4ca5a7);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm, 8px);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    font-family: inherit;
}

.cookie-consent__btn:hover {
    background: var(--primary-dark, #3a7d7f);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm, 0 2px 8px rgba(0, 0, 0, 0.08));
}

@media (max-width: 640px) {
    .cookie-consent {
        padding: 12px;
    }

    .cookie-consent__card {
        flex-wrap: wrap;
        gap: 12px;
        padding: 16px;
    }

    .cookie-consent__icon {
        display: none;
    }

    .cookie-consent__text {
        flex: 1 1 100%;
    }

    .cookie-consent__btn {
        width: 100%;
        padding: 12px;
    }
}

.messenger-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9997;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    transition: bottom 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.messenger-fab--raised {
    bottom: 100px;
}

.messenger-fab__trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: var(--primary-color, #4ca5a7);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(76, 165, 167, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.messenger-fab__trigger:hover {
    background: var(--primary-dark, #3a7d7f);
    box-shadow: 0 6px 24px rgba(76, 165, 167, 0.5);
    transform: scale(1.05);
}

.messenger-fab__icon-close {
    display: none;
}

.messenger-fab.is-open .messenger-fab__icon-chat {
    display: none;
}

.messenger-fab.is-open .messenger-fab__icon-close {
    display: block;
}

.messenger-fab__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.messenger-fab.is-open .messenger-fab__options {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.messenger-fab__option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px 10px 12px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark, #1a1a2e);
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.messenger-fab__option:hover {
    transform: translateX(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.messenger-fab__option--telegram {
    border-left: 3px solid #0088cc;
}

.messenger-fab__option--telegram svg {
    color: #0088cc;
    flex-shrink: 0;
}

.messenger-fab__option--max {
    border-left: 3px solid #5533ee;
}

.messenger-fab__option--max img {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .messenger-fab {
        bottom: 16px;
        right: 16px;
    }

    .messenger-fab--raised {
        bottom: 90px;
    }

    .messenger-fab__trigger {
        width: 48px;
        height: 48px;
    }

    .messenger-fab__trigger svg {
        width: 24px;
        height: 24px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .messenger-fab__options {
        transition: none;
    }

    .messenger-fab__trigger {
        transition: none;
    }
}
