/* ===== ГЛОБАЛЬНЫЕ СТИЛИ ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --secondary-color: #10b981;
    --accent-color: #f59e0b;
    --danger-color: #ef4444;
    --text-dark: #1f2937;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --bg-white: #ffffff;
    --bg-gray: #f9fafb;
    --bg-light: #f3f4f6;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

/* ===== КОНТЕЙНЕР ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== ТИПОГРАФИКА ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

/* ===== ЛИПКИЙ ХЕДЕР ===== */
.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.25rem;
    color: var(--text-dark);
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-btn {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.cta-btn-small {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.cta-btn-small:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===== ГЕРОЙ-БЛОК ===== */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 60px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    color: white;
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 5px;
}

.feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 15px;
    margin-bottom: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.cta-btn-primary {
    background: var(--secondary-color);
    color: white;
}

.cta-btn-primary:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-btn-secondary {
    background: white;
    color: var(--primary-color);
}

.cta-btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.btn-icon {
    font-size: 1.2rem;
}

.hero-messengers {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
}

.messenger-link {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.messenger-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.hero-phone-secondary {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-phone-secondary a {
    color: white;
    text-decoration: underline;
}

.hero-image {
    position: relative;
}

.doctor-photo {
    width: 100%;
    max-width: 560px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin-bottom: 20px;
}

.doctor-badge {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: var(--shadow-xl);
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.badge-text strong {
    font-size: 1.3rem;
    color: var(--text-dark);
}

.badge-text span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== СЕКЦИИ ===== */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== О ВРАЧЕ ===== */
.about-doctor {
    background: var(--bg-gray);
}

.doctor-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.doctor-info {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.doctor-avatar {
    flex-shrink: 0;
}

.doctor-avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.doctor-details h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
}

.doctor-specialty {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.doctor-experience {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.exp-item {
    font-size: 0.95rem;
}

.exp-item strong {
    color: var(--text-dark);
}

.doctor-description {
    margin-bottom: 30px;
    line-height: 1.8;
}

.doctor-description p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.doctor-competencies h4 {
    margin-bottom: 15px;
    color: var(--text-dark);
}

.competencies-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    list-style: none;
}

.competencies-list li {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* ===== УСЛУГИ ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-description {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-benefits {
    list-style: none;
    margin-bottom: 20px;
}

.service-benefits li {
    color: var(--text-gray);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-btn {
    display: block;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    text-decoration: none;
}

.service-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: white;
}

/* ===== КАК ПРОХОДИТ ПОМОЩЬ ===== */
.process {
    background: var(--bg-gray);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.step {
    display: flex;
    gap: 25px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-gray);
    line-height: 1.7;
}

.important-note {
    background: #fef3c7;
    border-left: 5px solid var(--accent-color);
    padding: 25px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.important-note h4 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.important-note p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== ПРЕИМУЩЕСТВА ===== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.advantage-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.advantage-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.advantage-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ===== ЦЕНЫ ===== */
.pricing {
    background: var(--bg-gray);
}

.pricing-tables {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.pricing-category {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.pricing-category.popular {
    border: 3px solid var(--accent-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--bg-gray);
    border-radius: 10px;
    transition: var(--transition);
}

.price-item:hover {
    background: var(--bg-light);
}

.price-item.highlighted {
    background: #fef3c7;
}

.price-name {
    color: var(--text-dark);
    font-weight: 500;
}

.price-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.price-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-style: italic;
}

.pricing-cta {
    text-align: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.pricing-cta p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

/* ===== ОТЗЫВЫ ===== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.review-rating {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-text {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 15px;
    font-style: italic;
}

.review-author {
    color: var(--text-dark);
    font-weight: 600;
}

.reviews-platforms {
    text-align: center;
    background: var(--bg-gray);
    padding: 30px;
    border-radius: 16px;
}

.reviews-platforms p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.platforms-list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.platform {
    padding: 10px 20px;
    background: white;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
}

.platform-link {
    display: inline-block;
    padding: 12px 25px;
    background: white;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    color: var(--text-dark);
    transition: var(--transition);
}

.platform-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    color: var(--primary-color);
}

/* ===== ГЕОГРАФИЯ ===== */
.geography {
    background: var(--bg-gray);
}

.geography-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.geography-info h3 {
    margin-bottom: 20px;
    color: var(--text-dark);
}

.geography-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.geography-list li {
    padding: 12px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

.geography-note {
    margin-top: 20px;
    padding: 15px;
    background: #fef3c7;
    border-radius: 8px;
    font-size: 0.95rem;
}

.geography-map {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.clinic-photo {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.map-placeholder p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.map-transport {
    font-size: 0.9rem;
    color: var(--text-gray);
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    background: white;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--bg-gray);
}

.faq-question span:first-child {
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ===== ФИНАЛЬНЫЙ CTA ===== */
.final-cta {
    background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
    color: white;
    text-align: center;
}

.final-cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.final-cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.cta-btn-large {
    font-size: 1.3rem;
    padding: 18px 40px;
}

.final-messengers {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.messenger-btn {
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.messenger-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
}

.cta-btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

/* ===== КОНТАКТЫ ===== */
.contacts {
    background: var(--bg-gray);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-block {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.contact-block h3 {
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.contact-block p {
    color: var(--text-gray);
    line-height: 1.7;
}

.contact-block a {
    color: var(--primary-color);
    font-weight: 600;
}

.license-info {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.license-info h3 {
    margin-bottom: 15px;
}

.license-info p {
    color: var(--text-gray);
    margin-bottom: 10px;
}

.license-images {
    display: flex;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.license-img {
    max-width: 300px;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

.license-img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.license-disclaimer {
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 20px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-block h4 {
    color: white;
    margin-bottom: 15px;
}

.footer-block p, .footer-block a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-block ul {
    list-style: none;
}

.footer-block li {
    margin-bottom: 10px;
}

.footer-block a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.footer-disclaimer {
    font-size: 0.85rem;
}

/* ===== МОДАЛЬНОЕ ОКНО ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 10001;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--text-dark);
    transform: rotate(90deg);
}

.modal-content h3 {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.modal-content > p {
    color: var(--text-gray);
    margin-bottom: 25px;
}

.callback-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.form-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.form-privacy {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-align: center;
    line-height: 1.5;
}

/* ===== ПЛАВАЮЩАЯ КНОПКА ЗВОНКА ===== */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-call-btn:hover {
    transform: scale(1.1);
    background: #059669;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

/* ===== АДАПТИВНОСТЬ ДЛЯ ПЛАНШЕТОВ ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .doctor-photo {
        max-width: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advantages-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .geography-content {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===== АДАПТИВНОСТЬ ДЛЯ МОБИЛЬНЫХ ===== */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2, .section-title {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .doctor-photo {
        max-width: 100%;
    }

    .clinic-photo {
        max-width: 100%;
    }

    .license-images {
        flex-direction: column;
        align-items: center;
    }

    .license-img {
        max-width: 100%;
    }

    section {
        padding: 60px 0;
    }

    .header-contacts {
        gap: 10px;
    }

    .phone-btn {
        font-size: 0.95rem;
    }

    .cta-btn-small {
        padding: 8px 15px;
        font-size: 0.85rem;
    }

    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .competencies-list {
        grid-template-columns: 1fr;
    }

    .doctor-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .final-cta-buttons {
        flex-direction: column;
    }

    .cta-btn-large {
        width: 100%;
        font-size: 1.1rem;
    }

    .platforms-list {
        flex-direction: column;
        align-items: center;
    }

    .floating-call-btn {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        bottom: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .feature-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 15px;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .doctor-card,
    .service-card,
    .step {
        padding: 20px;
    }

    .modal-content {
        padding: 30px 20px;
    }

    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .logo {
        font-size: 1rem;
    }

    .phone-btn {
        font-size: 0.85rem;
    }

    .cta-btn-small {
        display: none;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.advantage-card,
.review-card,
.step {
    animation: fadeIn 0.6s ease-out;
}

/* ===== УТИЛИТЫ ===== */
.text-center {
    text-align: center;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
