* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    line-height: 1.6;
    background-image: url('img/background.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

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

/* ===== ШАПКА ===== */
header {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
    line-height: 0;
    flex-shrink: 0;
}

.logo-img {
    height: 100px;
    width: auto;
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: opacity 0.3s;
}
.logo-img:hover {
    opacity: 0.9;
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
}

.nav-link {
    color: #1e293b;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 15px;
}

.nav-link:hover {
    color: #FF8C00;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-shrink: 0;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

.header-phone {
    font-weight: 600;
    color: #0f3b5e;
    font-size: 16px;
    white-space: nowrap;
}
.header-phone i {
    color: #FF8C00;
    margin-right: 6px;
}

.header-address {
    font-weight: 500;
    color: #0f3b5e;
    font-size: 14px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
}
.header-address i {
    color: #FF8C00;
    font-size: 14px;
}

.burger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #0f3b5e;
    cursor: pointer;
}

/* ===== СТРАНИЦЫ ===== */
.page {
    display: none;
    padding: 30px 0 60px;
    animation: fadeIn 0.4s ease;
}
.page.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 30px;
    text-align: center;
}

/* ===== КНОПКИ ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}
.btn-primary {
    background: linear-gradient(135deg, #FF8C00, #E67E00);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.3);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 140, 0, 0.4);
}
.btn-outline {
    background: transparent;
    color: #0f3b5e;
    border: 2px solid #0f3b5e;
}
.btn-outline:hover {
    background: #0f3b5e;
    color: #fff;
}
.btn-sm {
    padding: 6px 18px;
    font-size: 13px;
}

/* ===== ГЛАВНАЯ ===== */
.hero {
    background: transparent;
    padding: 60px 0 40px;
    border-radius: 0;
    margin: 0 0 30px 0;
    box-shadow: none;
}
.hero-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.hero-text {
    flex: 1;
    min-width: 280px;
}
.hero-text h1 {
    font-size: 38px;
    font-weight: 700;
    color: #0f3b5e;
    margin-bottom: 20px;
    line-height: 1.2;
}
.hero-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}
.hero-info span {
    background: #FFF3E0;
    padding: 6px 16px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
}
.hero-contacts p {
    margin-bottom: 6px;
    font-size: 16px;
}
.hero-contacts i {
    width: 20px;
    color: #FF8C00;
}
.hero-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.advantages {
    padding: 60px 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: none;
}
.section-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f3b5e;
    text-align: center;
    margin-bottom: 40px;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}
.advantage-card {
    background: #FFF8F0;
    padding: 30px 20px;
    border-radius: 16px;
    text-align: center;
}
.advantage-card i {
    font-size: 40px;
    color: #FF8C00;
    margin-bottom: 15px;
}
.advantage-card h3 {
    font-size: 18px;
    color: #0f3b5e;
    margin-bottom: 10px;
}
.advantage-card p {
    font-size: 14px;
    color: #475569;
}

.specialists {
    padding: 60px 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: none;
}
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Было 4, стало 3 */
    gap: 30px;
    margin-bottom: 30px;
    align-items: stretch;
}
.specialist-card {
    background: #FFF8F0;
    padding: 25px;
    border-radius: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ffe0b0;
    min-height: 280px;
}
.specialist-card .btn {
    margin-top: auto;
}
.specialist-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00, #E67E00);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    overflow: hidden;
    flex-shrink: 0;
}
.specialist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.specialist-card h3 {
    font-size: 18px;
    color: #0f3b5e;
    margin-bottom: 6px;
}
.specialist-role {
    color: #64748b;
    margin-bottom: 15px;
    font-size: 14px;
}
.specialists-action {
    text-align: center;
}

#page-specialists .container {
    background: transparent;
    padding: 30px 20px;
    border-radius: 0;
    box-shadow: none;
}

.specialists-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #475569;
    margin: -10px 0 35px;
    text-align: left;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 10px;
    align-items: stretch;
}

.doctor-card {
    background: #FFF8F0;
    padding: 25px 20px 20px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #ffe0b0;
    min-height: 280px;
}

.doctor-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.doctor-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00, #E67E00);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    overflow: hidden;
    flex-shrink: 0;
}

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

.doctor-card h4 {
    font-size: 17px;
    color: #0f3b5e;
    margin-bottom: 6px;
    font-weight: 700;
}

.doctor-role {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    margin-bottom: 14px;
    flex: 1;
}

.doctor-position {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.doctor-experience {
    font-size: 13px;
    color: #94a3b8;
}

.doctor-card .btn {
    margin-top: auto;
    padding: 8px 24px;
    font-size: 13px;
}

.clinic-list.clinic-approach-list {
    grid-template-columns: 1fr;
    gap: 15px;
}

/* ===== СТРАНИЦА УСЛУГИ (ПРАЙС) ===== */
#page-services .container {
    background: transparent;
    padding: 30px 20px;
    border-radius: 0;
    box-shadow: none;
}

.price-note {
    background: #FFF3E0;
    padding: 16px 20px;
    border-radius: 12px;
    color: #475569;
    font-size: 14px;
    margin-bottom: 25px;
    border-left: 4px solid #FF8C00;
}

.search-box {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}
.search-box input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 16px;
    outline: none;
    background: #FFFDF9;
    transition: border-color 0.3s;
}
.search-box input:focus {
    border-color: #FF8C00;
}
.search-box button {
    background: #FF8C00;
    color: #fff;
    border: none;
    padding: 0 24px;
    border-radius: 50px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
}
.search-box button:hover {
    background: #E67E00;
}

#price-list .price-category {
    margin-bottom: 30px;
}
#price-list .price-category h3 {
    font-size: 22px;
    color: #0f3b5e;
    margin-bottom: 12px;
}
#price-list .price-category ul {
    list-style: none;
    padding: 0;
}
#price-list .price-category li {
    padding: 10px 16px;
    border-bottom: 1px solid #eef3f7;
    color: #334155;
    display: flex;
    justify-content: space-between;
}
#price-list .price-category li:last-child {
    border-bottom: none;
}
#price-list .price-category li.hidden {
    display: none;
}

#page-clinic .container {
    background: transparent;
    padding: 30px 20px;
    border-radius: 0;
    box-shadow: none;
}

#page-clinic .page-title {
    text-align: left;
}

.clinic-text {
    margin-bottom: 30px;
}

.clinic-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #334155;
    text-align: left;
    margin-bottom: 14px;
}

.clinic-subtitle {
    font-size: 24px;
    color: #0f3b5e;
    margin: 35px 0 15px 0;
    text-align: left;
}

.clinic-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.clinic-list li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #334155;
    text-align: left;
}

.clinic-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF8C00;
    font-weight: 700;
}

.clinic-emergency {
    background: #FFF3E0;
    border-left: 6px solid #FF8C00;
    padding: 20px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 35px 0 40px;
    flex-wrap: wrap;
    text-align: left;
}

.clinic-emergency-icon {
    font-size: 36px;
    color: #FF8C00;
    flex-shrink: 0;
}

.clinic-emergency-text strong {
    font-size: 18px;
    color: #8B5A00;
}

.clinic-emergency-text p {
    margin-top: 5px;
    color: #6B4500;
    text-align: left;
}

#page-contacts .container {
    background: transparent;
    padding: 30px 20px;
    border-radius: 0;
    box-shadow: none;
}
.contacts-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}
.contacts-info {
    flex: 1;
    min-width: 240px;
}
.contacts-info p {
    margin-bottom: 12px;
    font-size: 16px;
}
.contacts-info i {
    width: 24px;
    color: #FF8C00;
}
.contacts-map {
    flex: 1;
    min-width: 240px;
}

#page-blog .container {
    background: transparent;
    padding: 30px 20px;
    border-radius: 0;
    box-shadow: none;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.promo-card {
    background: #FFF8F0;
    border-radius: 20px;
    border: 1px solid #ffe0b0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.promo-card-highlight {
    background: linear-gradient(135deg, #FFF8F0, #FFE8D0);
    border-color: #FF8C00;
    border-width: 2px;
}

.promo-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f5ede5;
}

.promo-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.promo-card:hover .promo-image img {
    transform: scale(1.02);
}

.promo-body {
    padding: 20px 20px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.promo-header {
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffe0b0;
    margin-bottom: 15px;
}

.promo-clinic {
    font-size: 11px;
    font-weight: 700;
    color: #FF8C00;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.promo-title {
    font-size: 22px;
    font-weight: 800;
    color: #0f3b5e;
    line-height: 1.3;
    text-transform: uppercase;
}

.promo-subtitle {
    font-size: 13px;
    font-weight: 600;
    color: #0f3b5e;
    line-height: 1.4;
    margin-top: 6px;
    letter-spacing: 1px;
}

.promo-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
    flex: 1;
}

.promo-list li {
    padding: 5px 0 5px 20px;
    position: relative;
    color: #334155;
    font-size: 13px;
    line-height: 1.5;
    border-bottom: 1px solid #f0e8e0;
}

.promo-list li:last-child {
    border-bottom: none;
}

.promo-list li::before {
    content: "•";
    color: #FF8C00;
    font-weight: 700;
    font-size: 16px;
    position: absolute;
    left: 0;
    top: 5px;
}

.promo-list-highlight li::before {
    content: "★";
    color: #FF8C00;
    font-size: 13px;
}

.promo-prices {
    text-align: center;
    padding: 12px 0;
    background: #FFF3E0;
    border-radius: 12px;
    margin: 5px 0 12px;
}

.promo-price-old {
    font-size: 16px;
    color: #94a3b8;
    text-decoration: line-through;
    margin-right: 12px;
}

.promo-price-new {
    font-size: 24px;
    font-weight: 800;
    color: #FF8C00;
}

.promo-discount {
    display: block;
    font-size: 12px;
    color: #FF8C00;
    font-weight: 600;
    margin-top: 3px;
}

.promo-note {
    font-size: 11px;
    color: #64748b;
    font-style: italic;
    text-align: center;
    line-height: 1.4;
}

.promo-text-block {
    text-align: center;
    padding: 10px 0;
}

.promo-slogan {
    font-size: 14px;
    font-weight: 500;
    color: #0f3b5e;
    font-style: italic;
    margin-bottom: 6px;
}

.promo-working {
    font-size: 16px;
    font-weight: 600;
    color: #0f3b5e;
}

.promo-working strong {
    color: #FF8C00;
    font-weight: 800;
}

.promo-contact {
    text-align: center;
    padding-top: 12px;
    border-top: 1px solid #ffe0b0;
    margin-top: auto;
}

.promo-contact p {
    font-size: 14px;
    font-weight: 600;
    color: #0f3b5e;
    margin-bottom: 3px;
}

.promo-contact i {
    color: #FF8C00;
    margin-right: 8px;
    width: 18px;
}

.contacts-home {
    padding: 60px 0;
    background: transparent;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: none;
}
.contacts-home-grid {
    display: flex;
    justify-content: center !important;
    align-items: center;
}
.contacts-home-info {
    background: rgba(255, 248, 240, 0.9);
    border-radius: 24px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.05);
    padding: 40px 50px;
}

.emergency {
    background: transparent;
    padding: 50px 0;
    text-align: center;
    border-radius: 0;
    margin-bottom: 30px;
    box-shadow: none;
}
.emergency-content h2 {
    font-size: 28px;
    color: #0f3b5e;
    margin-bottom: 10px;
}
.emergency-content p {
    font-size: 18px;
    color: #334155;
    margin-bottom: 20px;
}
.emergency-addresses {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.emergency-addresses span {
    background: #FFF3E0;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s;
}
.modal.active {
    display: flex;
}
.modal-content {
    background: #ffffff;
    max-width: 500px;
    width: 90%;
    border-radius: 24px;
    padding: 30px 25px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-close {
    position: absolute;
    top: 12px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
    transition: color 0.3s;
}
.modal-close:hover {
    color: #0f3b5e;
}
.modal-body {
    text-align: center;
}
.modal-avatar {
    width: 96px;
    height: 96px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF8C00, #E67E00);
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    overflow: hidden;
}
.modal-avatar.has-photo {
    background: transparent;
}
.modal-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.modal-body h3 {
    font-size: 22px;
    color: #0f3b5e;
}
.modal-body #modalRole {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 15px;
}
#modalDetails {
    text-align: left;
    font-size: 15px;
    color: #334155;
}
#modalDetails p {
    margin-bottom: 8px;
}
#modalDetails strong {
    color: #0f3b5e;
}

.faq-section {
    margin-top: 50px;
}
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: #FFF8F0;
    border-radius: 16px;
    padding: 18px 22px;
    border: 1px solid #ffe0b0;
    transition: transform 0.2s, box-shadow 0.2s;
}
.faq-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(255, 140, 0, 0.1);
}
.faq-item summary {
    cursor: pointer;
    font-weight: 600;
    color: #0f3b5e;
    list-style: none;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::before {
    content: "+";
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    background: linear-gradient(135deg, #FF8C00, #E67E00);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 1.4em;
    font-weight: 700;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0;
}
.faq-item[open] summary::before {
    content: "–";
}
.faq-item p {
    margin-top: 14px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    padding-left: 30px;
}

.faq-services-list {
    list-style: none;
    padding: 10px 0 0 30px;
    margin: 0;
}

.faq-services-list li {
    padding: 8px 0 8px 22px;
    color: #475569;
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    border-bottom: 1px solid #f0e8e0;
}

.faq-services-list li:last-child {
    border-bottom: none;
}

.faq-services-list li::before {
    content: "•";
    color: #FF8C00;
    font-weight: 700;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 8px;
}

.faq-services-list li strong {
    color: #0f3b5e;
}

footer {
    background: #0f3b5e;
    color: #cbd5e1;
    padding: 30px 0;
    text-align: center;
    margin-top: 20px;
    border-radius: 24px 24px 0 0;
}
footer a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 10px;
    font-size: 20px;
}
footer a:hover {
    color: #fff;
}
.footer-links {
    margin-top: 15px;
    font-size: 13px;
}
.footer-links a {
    font-size: 13px;
    margin: 0 8px;
    display: inline-block;
}

@media (max-width: 1200px) {
    .header-inner {
        gap: 15px;
    }
    nav {
        gap: 18px;
    }
    .nav-link {
        font-size: 14px;
    }
    .header-phone {
        font-size: 14px;
    }
    .header-address {
        font-size: 12px;
    }
    .header-right {
        gap: 12px;
    }
    .header-contacts {
        gap: 12px;
    }
}

@media (max-width: 992px) {
    nav {
        gap: 12px;
    }
    .nav-link {
        font-size: 13px;
    }
    .header-address {
        display: none;
    }
    .header-contacts {
        gap: 8px;
    }
    .logo-img {
        height: 75px;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .doctor-card {
        min-height: 260px;
        padding: 20px 16px;
    }
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .promo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
        z-index: 1100;
    }
    
    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 20px 20px;
        gap: 15px;
        border-top: none;
        box-shadow: none;
        white-space: normal;
        flex: none;
        z-index: 1050;
        overflow-y: auto;
    }
    nav.open {
        display: flex;
    }
    .nav-link {
        font-size: 18px;
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid #eef3f7;
    }
    
    .header-right {
        gap: 8px;
    }
    .header-contacts {
        gap: 6px;
    }
    .header-address {
        display: none;
    }
    .header-phone {
        font-size: 12px;
    }
    .logo-img {
        height: 50px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    .page-title {
        font-size: 28px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .services-category {
        min-height: auto;
    }
    .popular-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .popular-item {
        padding: 12px 16px;
        min-height: 48px;
    }
    .popular-item span:first-child {
        font-size: 14px;
    }
    .popular-item .price {
        font-size: 14px;
    }
    
    .doctors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .doctor-card {
        min-height: 240px;
        padding: 18px 14px;
    }
    .doctor-avatar {
        width: 70px;
        height: 70px;
        font-size: 20px;
    }
    .doctor-card h4 {
        font-size: 15px;
    }
    .doctor-position {
        font-size: 13px;
    }
    .doctor-experience {
        font-size: 12px;
    }
    .specialists-intro {
        font-size: 14px;
        line-height: 1.7;
    }
    .specialists-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .specialist-card {
        min-height: 240px;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 420px;
    }
    .promo-body {
        padding: 15px 15px 20px;
    }
    .promo-title {
        font-size: 20px;
    }
    .promo-price-new {
        font-size: 22px;
    }
    .promo-list li {
        font-size: 12px;
        padding: 4px 0 4px 18px;
    }
    .promo-image {
        aspect-ratio: 16 / 10;
    }
    
    .clinic-list {
        grid-template-columns: 1fr;
    }
    .clinic-emergency {
        flex-direction: column;
        text-align: center;
    }
    .contacts-grid {
        flex-direction: column;
    }
    .emergency-addresses {
        flex-direction: column;
        align-items: center;
    }
    .contacts-home-grid {
        flex-direction: column;
    }
    .contacts-home-info {
        padding: 25px 15px;
    }
}

@media (max-width: 480px) {
    .header-right {
        gap: 5px;
    }
    .header-phone {
        font-size: 11px;
    }
    .logo-img {
        height: 40px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    .popular-grid {
        grid-template-columns: 1fr;
    }
    .popular-item {
        padding: 10px 14px;
        min-height: 44px;
    }
    .popular-item span:first-child {
        font-size: 13px;
    }
    .popular-item .price {
        font-size: 13px;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .doctor-card {
        min-height: 220px;
        padding: 16px 12px;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
    .doctor-avatar {
        width: 64px;
        height: 64px;
        font-size: 18px;
    }
    .doctor-card h4 {
        font-size: 14px;
    }
    .doctor-position {
        font-size: 12px;
    }
    .doctor-experience {
        font-size: 11px;
    }
    .specialists-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .specialist-card {
        min-height: 220px;
        max-width: 320px;
        margin: 0 auto;
        width: 100%;
    }
    .specialist-avatar {
        width: 70px;
        height: 70px;
    }
    
    .promo-body {
        padding: 12px 12px 16px;
    }
    .promo-title {
        font-size: 18px;
    }
    .promo-price-old {
        font-size: 14px;
    }
    .promo-price-new {
        font-size: 18px;
    }
    .promo-list li {
        font-size: 11px;
        padding: 3px 0 3px 16px;
    }
    .promo-list li::before {
        font-size: 14px;
        top: 3px;
    }
    .promo-contact p {
        font-size: 12px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .clinic-list {
        grid-template-columns: 1fr;
    }
}

/* ===== СЛАЙДЕР ОТЗЫВОВ ===== */
.reviews-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.reviews-slider-wrapper {
    width: 100%;
    max-width: 700px;
    overflow: hidden;
}

.slider-item {
    display: none;
    width: 100%;
}

.slider-item.active {
    display: block;
}

.slider-btn {
    background: none;
    border: 2px solid #0f3b5e;
    color: #0f3b5e;
    font-size: 20px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.slider-btn:hover {
    background: #0f3b5e;
    color: #fff;
}