        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #ffffff;
            color: #1e2a3e;
            scroll-behavior: smooth;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        :root {
            --primary-blue: #0078bf;
            --primary-teal: #01ada9;
            --blue-dark: #005f9e;
            --teal-dark: #018f8b;
            --gray-bg: #f8fafc;
            --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
        }

    /* Стили для хедера */
    .header {
        background: rgba(255,255,255,0.96);
        box-shadow: 0 4px 20px rgba(0,0,0,0.02), 0 1px 0 #eef2f6;
        position: sticky;
        top: 0;
        z-index: 100;
        backdrop-filter: blur(2px);
    }
    .nav-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        padding: 20px 0;
        gap: 15px;
    }
    .logo {
        line-height: 1;
        cursor: pointer;
        flex-shrink: 0;
    }
    .logo img {
        max-height: 52px;
        width: auto;
        margin-right: 8px;
    }
    .header-contact {
        display: flex;
        align-items: center;
        gap: 12px;
        background: rgba(1,173,169,0.1);
        padding: 8px 16px;
        border-radius: 60px;
        text-decoration: none;
        transition: transform 0.2s;
        flex-shrink: 0;
    }
    .header-contact:hover {
        transform: scale(1.02);
    }
    .header-contact i {
        color: #01ada9;
        font-size: 1.1rem;
    }
    .header-contact span {
        font-weight: 700;
        color: #1E2A3E;
        font-size: 1rem;
    }
    .badge-247 {
        background: #fff;
        padding: 4px 10px;
        border-radius: 40px;
        font-size: 0.7rem;
        font-weight: 600;
        white-space: nowrap;
    }

    /* Адаптивность для планшетов */
    @media (max-width: 768px) {
        .nav-wrapper {
            gap: 10px;
        }
        .logo img {
            max-height: 45px;
        }
        .header-contact {
            padding: 6px 12px;
            gap: 8px;
        }
        .header-contact i {
            font-size: 1rem;
        }
        .header-contact span {
            font-size: 0.9rem;
        }
        .badge-247 {
            padding: 3px 8px;
            font-size: 0.65rem;
        }
    }

    /* Адаптивность для мобильных устройств */
    @media (max-width: 560px) {
        .nav-wrapper {
            flex-direction: row;
            justify-content: space-between;
            gap: 8px;
        }
        .logo img {
            max-height: 40px;
        }
        .header-contact {
            padding: 6px 10px;
            gap: 6px;
        }
        .header-contact i {
            font-size: 0.9rem;
        }
        .header-contact span {
            font-size: 0.8rem;
        }
		#.badge-247 {
        #    display: none; /* Скрываем бейдж на самых маленьких экранах */
        #}
    }

    /* Для экранов менее 400px - убираем текст номера, оставляем только иконку */
    @media (max-width: 440px) {
        .header-contact span {
            display: none;
        }
        .header-contact {
            padding: 8px 12px;
        }
        .header-contact i {
            font-size: 1.1rem;
            margin: 0;
        }
        #.badge-247 {
        #    display: none;
        #}
    }

        /* Hero секция */
        .hero {
            padding: 60px 0 40px;
            background: white;
        }
        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }
        .hero-content {
            flex: 1.2;
            min-width: 280px;
        }
        .hero-badge {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 20px;
            font-size: 1rem;
        }
        .hero-content h2 {
            font-size: 3.2rem;
            line-height: 1.2;
            font-weight: 800;
            background: linear-gradient(145deg, #0a2b3a, var(--primary-blue));
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
            margin-bottom: 24px;
        }
        .features-list {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin: 25px 0 35px;
        }
        .feature-chip {
            background: #eff7fa;
            padding: 8px 20px;
            border-radius: 40px;
            font-weight: 600;
            font-size: 0.9rem;
            color: #005a8c;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .feature-chip i {
            color: var(--primary-teal);
        }
        .btn-more {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 14px 36px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-sm);
        }
        .btn-more:hover {
            background: var(--blue-dark);
            transform: translateY(-2px);
        }
		.hero-image {
			flex: 1;
			min-width: 0;
			text-align: center;
		}
		.hero-image img {
			width: 100%;
			max-width: 100%;
			height: 100%;
			border-radius: 48px;
			box-shadow: 0 25px 40px -12px rgba(0,120,191,0.2);
			object-fit: cover;
		}
		/* Адаптивность для Hero секции (860px и меньше) */
		@media (max-width: 860px) {
			.hero {
				padding: 40px 0 30px;
			}
			.hero-content h2 {
				font-size: 2.3rem;
			}
			.hero-grid {
				display: flex;
				flex-direction: column;
				gap: 30px;
			}
			.hero-content {
				order: 1;
				width: 100%;
			}
			.hero-image {
				order: 2;
				width: 100%;
				min-width: 0;
			}
			.hero-image img {
				max-height: auto;
				width: 100%;
				object-fit: cover;
			}
			.features-list {
				justify-content: flex-start;
			}
			.btn-more {
				margin-top: 10px;
			}
		}

		/* Дополнительно для экранов 560px и меньше */
		@media (max-width: 560px) {
			.hero {
				padding: 30px 0 20px;
			}
			.hero-content h2 {
				font-size: 1.8rem;
			}
			.hero-image img {
				max-height: 280px;
				border-radius: 32px;
			}
			.feature-chip {
				font-size: 0.8rem;
				padding: 6px 14px;
			}
			.btn-more {
				padding: 12px 28px;
				font-size: 0.9rem;
				width: 100%;
				justify-content: center;
			}
		}

        /* Горячая линия */
        .hotline-block {
            background: linear-gradient(115deg, #eef7fe, white);
            border-radius: 48px;
            padding: 30px;
            border: 1px solid #cdeef5;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 24px;
            margin-bottom: 20px;
        }
        .hotline-title {
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        .phone-btn {
            background: linear-gradient(105deg, #0078bf, #01ada9);
            border-radius: 60px;
            padding: 16px 42px;
            font-size: 1.6rem;
            font-weight: 800;
            color: white;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 14px;
            box-shadow: 0 12px 18px -8px rgba(0,120,191,0.3);
            transition: 0.2s;
        }
        .phone-btn:hover {
            transform: scale(1.02);
        }

        /* Секция о клинике */
        .about {
            background: #f8fafc;
            border-radius: 64px;
            margin: 40px 0;
            padding: 60px 0;
        }
        .about-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            align-items: center;
        }
		.video-col {
			flex: 1;
			min-width: 0; /* Важно для корректного сжатия на узких экранах */
			width: 100%;
		}
		.video-placeholder {
			position: relative;
			border-radius: 40px;
			overflow: hidden;
			box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
			aspect-ratio: 16 / 9;
			display: flex;
			align-items: center;
			justify-content: center;
			width: 100%;
		}
		.video-bg-img {
			position: absolute;
			width: 100%;
			height: 100%;
			object-fit: cover;
			top: 0;
			left: 0;
			z-index: 0;
		}
		.play-link {
			display: inline-flex;
			align-items: center;
			justify-content: center;
			text-decoration: none;
			z-index: 2;
			transition: transform 0.2s ease;
		}
		.play-link:hover {
			transform: scale(1.08);
		}
		.play-link i {
			font-size: 4rem;
			color: #0078bf;
			background: rgba(255,255,255,0.9);
			padding: 18px 22px;
			border-radius: 100px;
			box-shadow: 0 10px 20px rgba(0,0,0,0.15);
			backdrop-filter: blur(2px);
		}
		.video-placeholder span {
			position: absolute;
			font-weight: 500;
			background: rgba(0,0,0,0.55);
			color: white;
			bottom: 20px;
			left: 50%;
			transform: translateX(-50%);
			padding: 6px 16px;
			border-radius: 40px;
			font-size: 0.85rem;
			z-index: 2;
			white-space: nowrap;
		}
        .about-text-col {
            flex: 1;
            min-width: 280px;
        }
        .about-features {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .about-feature {
            display: flex;
            align-items: flex-start;
            gap: 16px;
        }
        .feature-icon {
            background: linear-gradient(135deg, #e6f4fa, #d9f0f0);
            width: 54px;
            height: 54px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .feature-icon i {
            font-size: 1.8rem;
            color: #0078bf;
        }
        .feature-content h4 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #1f445b;
            margin-bottom: 6px;
        }
        .feature-content p {
            color: #3b5c72;
            line-height: 1.4;
        }

        /* Направления */
        .directions {
            padding: 60px 0 40px;
        }
        .section-title {
            font-size: 2.3rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 16px;
            color: #1f3b4c;
        }
        .section-sub {
            text-align: center;
            color: #4b6f86;
            max-width: 700px;
            margin: 0 auto 48px;
            font-size: 1.1rem;
        }
        .grid-3x3 {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 28px;
        }
        .service-card {
            background: white;
            border-radius: 28px;
            padding: 28px 20px;
            transition: 0.25s;
            border: 1px solid #eef2f8;
        }
        .service-card:hover {
            transform: translateY(-6px);
            border-color: var(--primary-teal);
        }
        .service-icon {
            background: linear-gradient(135deg, #e6f4fa, #d9f0f0);
            width: 55px;
            height: 55px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }
        .service-icon i {
            font-size: 1.8rem;
            color: var(--primary-blue);
        }
        .service-card h4 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            font-weight: 700;
            color: #1f445b;
        }
        .service-card p {
            color: #3b5c72;
            line-height: 1.45;
        }

        /* Форма обратной связи */
        .callback-section {
            background: #F8FAFC;
            padding: 70px 20px;
            margin: 40px 0;
            border-radius: 64px;
        }
        .callback-card {
            max-width: 680px;
            margin: 0 auto;
            text-align: center;
        }
        .callback-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #1f3b4c;
            margin-bottom: 16px;
        }
        .callback-subtitle {
            font-size: 1.15rem;
            color: #2c5a74;
            margin-bottom: 40px;
            font-weight: 500;
        }
        .callback-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .form-group input {
            width: 100%;
            padding: 16px 24px;
            font-size: 1rem;
            border: 1px solid #dce5ec;
            border-radius: 60px;
            background: white;
            outline: none;
        }
        .form-group input:focus {
            border-color: #0078bf;
            box-shadow: 0 0 0 3px rgba(0,120,191,0.1);
        }
        .submit-btn {
            background: linear-gradient(105deg, #0078bf, #01ada9);
            color: white;
            border: none;
            padding: 16px 24px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 60px;
            cursor: pointer;
            transition: 0.2s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px -5px rgba(0,120,191,0.3);
        }
        .checkbox-group {
            margin-top: 10px;
            text-align: left;
        }
        .checkbox-label {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            cursor: pointer;
            font-size: 0.85rem;
            color: #4a6f88;
        }
        .checkbox-label input {
            width: 18px;
            height: 18px;
            margin-top: 2px;
            accent-color: #0078bf;
        }
        .policy-link {
            color: #0078bf;
            text-decoration: none;
            font-weight: 500;
        }
        .policy-link:hover {
            text-decoration: underline;
        }
        .form-status {
            margin-top: 16px;
            padding: 12px;
            border-radius: 12px;
            font-size: 0.9rem;
            display: none;
        }
        .form-status.success {
            background: #d4edda;
            color: #155724;
            display: block;
        }
        .form-status.error {
            background: #f8d7da;
            color: #721c24;
            display: block;
        }

        /* Услуги */
        .services-section {
            background: #ffffff;
            padding: 70px 20px;
            margin: 40px 0;
            border-radius: 64px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .service-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1f445b;
            margin: 14px 0;
        }

        /* Возможности лечения */
        .treatment-options-section {
            background: #F8FAFC;
            padding: 70px 20px;
            border-radius: 64px;
            margin: 40px 0;
        }
        .treatment-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            justify-content: center;
        }
        .treatment-card {
            background: white;
            border-radius: 32px;
            padding: 36px 28px;
            flex: 1;
            min-width: 260px;
            max-width: 350px;
            text-align: center;
            transition: 0.25s;
            border: 1px solid #eef2f8;
        }
        .treatment-card:hover {
            transform: translateY(-6px);
            border-color: #01ada9;
        }
        .treatment-icon {
            background: linear-gradient(135deg, #e6f4fa, #d9f0f0);
            width: 80px;
            height: 80px;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
        }
        .treatment-icon i {
            font-size: 2.4rem;
            color: #0078bf;
        }
        .treatment-card h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #1f445b;
            margin-bottom: 16px;
        }

        /* Этапы помощи */
        .stages-section {
            background: #ffffff;
            padding: 70px 20px;
            margin: 40px 0;
            border-radius: 48px;
        }
        .stages-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
        }
        .stage-card {
            background: #ffffff;
            text-align: center;
            padding: 32px 20px;
            border-radius: 28px;
            transition: 0.25s;
            border: 1px solid #eef2f8;
            position: relative;
        }
        .stage-card:hover {
            transform: translateY(-6px);
            border-color: #01ada9;
        }
        .stage-number {
            position: absolute;
            top: 16px;
            left: 20px;
            font-size: 2rem;
            font-weight: 800;
            color: rgba(0,120,191,0.08);
        }
        .stage-icon {
            background: linear-gradient(135deg, #e6f4fa, #d9f0f0);
            width: 70px;
            height: 70px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .stage-icon i {
            font-size: 2rem;
            color: #0078bf;
        }
        .stage-card h3 {
            font-size: 1.4rem;
            font-weight: 700;
            color: #1f445b;
            margin-bottom: 12px;
        }

        /* Контакты */
        .contact-simple-section {
            background: #ffffff;
            padding: 70px 20px;
            margin: 40px 0;
            border-radius: 48px;
        }
        .contact-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-bottom: 48px;
        }
        .contact-card {
            text-align: center;
            padding: 36px 24px;
            border-radius: 28px;
            transition: 0.25s;
            border: 1px solid #eef2f8;
        }
        .contact-card:hover {
            transform: translateY(-6px);
            border-color: #01ada9;
        }
        .contact-card-icon {
            background: linear-gradient(135deg, #e6f4fa, #d9f0f0);
            width: 70px;
            height: 70px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }
        .contact-card-icon i {
            font-size: 2rem;
            color: #0078bf;
        }
        .contact-card h3 {
            font-size: 1.4rem;
            color: #1f445b;
            margin-bottom: 12px;
        }
        .contact-link {
            font-size: 1.2rem;
            font-weight: 600;
            color: #0078bf;
            text-decoration: none;
            display: inline-block;
        }
        .contact-link:hover {
            text-decoration: underline;
        }

        /* Футер */
        .footer {
            background: linear-gradient(115deg, #eef7fe, #ffffff);
            border-radius: 48px 48px 0 0;
            padding: 50px 20px 30px;
            margin-top: 60px;
            border-top: 1px solid rgba(0,120,191,0.15);
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(0,120,191,0.1);
        }
        .footer-col {
            flex: 1;
            min-width: 180px;
        }
        .footer-logo h3 {
            font-size: 1.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #0078bf, #01ada9);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }
        .footer-tagline {
            display: flex;
            align-items: center;
            gap: 10px;
            background: rgba(1,173,169,0.1);
            padding: 8px 16px;
            border-radius: 40px;
            margin-top: 20px;
            width: fit-content;
        }
		.footer-tagline i {
        color: #01ada9;
        font-size: 0.9rem;
		}
        .footer-col h4 {
            font-size: 1.1rem;
            font-weight: 700;
            color: #1f445b;
            margin-bottom: 18px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #3b5c72;
        }
        .footer-links li i {
            width: 20px;
            color: #01ada9;
        }
        .footer-links a {
            color: #3b5c72;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #0078bf;
            text-decoration: underline;
        }
        .footer-bottom {
            text-align: center;
			font-size: 0.8rem;
            padding-top: 30px;
        }

        /* Адаптивность */
        @media (max-width: 1000px) {
            .stages-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 900px) {
            .services-grid, .contact-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 860px) {
            .hero-content h2 { font-size: 2.3rem; }
            .section-title { font-size: 1.9rem; }
            .about-inner { flex-direction: column; }
            .video-col { min-width: auto; }
            .footer-content { flex-direction: column; text-align: center; }
            .footer-tagline { margin: 20px auto 0; }
            .footer-links li { justify-content: center; }
        }
        @media (max-width: 560px) {
            .services-grid, .contact-cards, .stages-grid {
                grid-template-columns: 1fr;
            }
			.hero-content h2 { font-size: 2.0rem; }
            .callback-title { font-size: 1.7rem; }
            .phone-btn { font-size: 1.2rem; padding: 12px 24px; }
            .hotline-title { font-size: 1.4rem; }
        }