
        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
            color: #1a1a1a;
            line-height: 1.6;
            background: #ffffff;
        }

        /* Professional Color Palette */
        :root {
            --primary: #1a3a52;
            --brown: #3d2f2a;
            --black: #0f0f0f;
            --white: #ffffff;
            --light: #f8f8f8;
            --gray: #666;
            --light-blue: #4FC3F7;
            --light-blue-hover: #29B6F6;
        }

        /* Typography */
        h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: 3rem;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: -0.01em;
            margin-bottom: 4rem;
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 600;
            line-height: 1.3;
        }

        /* Container */
        .container {
            max-width: 1400px;
            width: 100%;
            margin: 0 auto;
            padding: 0 3rem;
        }
        
        /* Prevent horizontal overflow */
        body {
            overflow-x: hidden;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 1px 0 rgba(0,0,0,0.05);
            z-index: 1000;
            transition: all 0.3s;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: opacity 0.3s;
        }

        .logo:hover {
            opacity: 0.85;
        }

        .header-logo {
            height: 45px;
            width: auto;
            max-width: 220px;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            color: var(--black);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Mobile Menu Toggle (Hamburger) */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-around;
            width: 28px;
            height: 24px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }

        .mobile-menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: center;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
            transform: translateX(20px);
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        /* Nav Actions Container */
        .nav-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }

        /* Language Switcher */
        #language-switcher {
            display: flex;
            gap: 0.5rem;
            background: var(--light);
            padding: 0.4rem;
            border-radius: 6px;
        }

        .lang-btn {
            padding: 0.4rem 1rem;
            border: none;
            background: transparent;
            color: var(--gray);
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 0.875rem;
        }

        .lang-btn.active {
            background: var(--primary);
            color: white;
        }

        .nav-cta {
            background: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-cta:hover {
            background: var(--light-blue);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
        }

        /* Hero Section */
        .hero {
            margin-top: 80px;
            padding: 0;
            background: var(--white);
            min-height: 90vh;
            display: flex;
            align-items: center;
        }

        .hero-grid {
            display: grid;
            gap: 4rem;
            align-items: center;
        }

        .hero-content h1 {
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--gray);
            margin-bottom: 3rem;
            line-height: 1.7;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 4rem;
        }

        .btn {
            padding: 1rem 2rem;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 6px;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background: var(--light-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(79, 195, 247, 0.3);
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
        }

        .trust-stats {
            display: flex;
            gap: 4rem;
        }

        .stat-item h3 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            color: var(--gray);
            font-size: 0.95rem;
        }

        /* Section Spacing */
        section {
            padding: 8rem 0;
        }

        .section-light {
            background: var(--white);
        }

        .section-gray {
            background: var(--light);
        }

        .section-header {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 5rem;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--gray);
            margin-top: 1rem;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .service-content {
            padding: 2.5rem;
        }

        .service-content h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .service-content p {
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        /* Benefits */
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 4rem 3rem;
        }

        .benefit-item {
            text-align: left;
        }

        .benefit-number {
            font-size: 4rem;
            font-weight: 700;
            color: var(--primary);
            opacity: 0.1;
            line-height: 1;
            margin-bottom: 1rem;
        }

        .benefit-item h3 {
            margin-bottom: 1rem;
            color: var(--black);
        }

        .benefit-item p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Doctors */
        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .doctor-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .doctor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .doctor-photo {
            height: 400px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
        }

        .doctor-info {
            padding: 2.5rem;
        }

        .doctor-name {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--black);
        }

        .doctor-specialty {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .doctor-experience {
            color: var(--gray);
            margin-bottom: 2rem;
        }

        /* Cases */
        .cases-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .case-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .case-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        .case-image {
            height: 200px;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gray);
            font-size: 1.5rem;
            font-weight: 600;
        }

        .case-image:first-child {
            border-right: 1px solid white;
        }

        .case-description {
            padding: 2rem;
        }

        .case-description h3 {
            color: var(--black);
            margin-bottom: 0.5rem;
        }

        .case-description p {
            color: var(--gray);
        }

        /* Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
        }

        .review-card {
            background: white;
            padding: 3rem;
            border-radius: 12px;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .review-stars {
            color: #FFA500;
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
        }

        .review-text {
            color: var(--black);
            line-height: 1.7;
            margin-bottom: 2rem;
        }

        .review-author {
            font-weight: 600;
            color: var(--primary);
        }

        /* Pricing */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
        }

        .price-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 12px;
            text-align: center;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s;
        }

        .price-card:hover {
            border-color: var(--primary);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        }

        .price-card h3 {
            color: var(--black);
            margin-bottom: 2rem;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1rem;
        }

        .price-note {
            font-size: 0.85rem;
            color: var(--gray);
            font-style: italic;
        }

        /* Promotions */
        .promo-banner {
            background: linear-gradient(135deg, var(--primary), var(--brown));
            padding: 6rem 0;
            text-align: center;
            color: white;
        }

        .promo-banner h2 {
            color: white;
            margin-bottom: 2rem;
        }

        .promo-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .promo-content p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        /* Process */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 3rem;
        }

        .process-step {
            text-align: center;
        }

        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 2rem;
        }

        .process-step h3 {
            margin-bottom: 1rem;
            color: var(--black);
        }

        .process-step p {
            color: var(--gray);
            line-height: 1.7;
        }

        /* Final CTA */
        .final-cta {
            background: var(--primary);
            padding: 8rem 0;
            text-align: center;
            color: white;
        }

        .final-cta h2 {
            color: white;
            margin-bottom: 1.5rem;
        }

        .final-cta p {
            font-size: 1.2rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        .cta-form {
            max-width: 600px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .cta-form input {
            padding: 1.2rem 1.5rem;
            border: none;
            border-radius: 6px;
            font-size: 1rem;
            background: white;
        }

        .cta-form .btn {
            grid-column: 1 / -1;
            background: var(--primary);
            color: white;
            transition: all 0.3s ease;
        }

        .cta-form .btn:hover {
            background: var(--light-blue);
            box-shadow: 0 4px 12px rgba(79, 195, 247, 0.3);
        }

        /* Location Map */
        .location-section {
            padding: 8rem 0;
            background: var(--light);
        }

        .location-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 4rem;
            align-items: start;
        }

        .location-info {
            background: white;
            padding: 3rem;
            border-radius: 12px;
        }

        .location-info h3 {
            color: var(--primary);
            margin-bottom: 2.5rem;
            font-size: 1.8rem;
        }

        .info-item {
            display: flex;
            gap: 1.5rem;
            margin-bottom: 2rem;
            align-items: flex-start;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            background: white;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            flex-shrink: 0;
            border: 1px solid #e0e0e0;
        }
        
        .info-icon img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }
        
        .info-icon.social-icon {
            border: none;
        }
        
        .info-icon.social-icon img {
            width: 32px;
            height: 32px;
        }

        .info-content h4 {
            font-size: 1rem;
            font-weight: 600;
            color: var(--black);
            margin-bottom: 0.5rem;
        }

        .info-content p {
            color: var(--gray);
            line-height: 1.6;
        }

        .map-container {
            width: 100%;
            height: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            margin-top: 2rem;
        }
        
        /* Map size variants - easily adjustable */
        .map-container.map-small {
            height: 350px;
        }
        
        .map-container.map-medium {
            height: 500px;
        }
        
        .map-container.map-large {
            height: 650px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
            display: block;
        }

        /* Footer */
        footer {
            background: var(--black);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            text-align: center;
        }

        .footer-content p {
            opacity: 0.7;
            margin-bottom: 0.5rem;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            h1 { font-size: 3rem; }
            h2 { font-size: 2.5rem; }
            
            .header-logo {
                height: 40px;
                max-width: 180px;
            }

            .hero {
                min-height: 85vh;
            }

            .hero-content h1 {
                font-size: 2.2rem !important;
            }
            
            .hero-grid,
            .location-grid {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            /* Map mobile adjustments */
            .map-container,
            .map-container.map-small,
            .map-container.map-medium,
            .map-container.map-large {
                height: 350px;
                margin-top: 1rem;
            }

            .services-grid,
            .doctors-grid,
            .reviews-grid,
            .cases-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .pricing-grid,
            .process-grid,
            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            h2 { font-size: 2rem; }

            .container { 
                padding: 0 1.5rem; 
                width: 100%;
            }
            
            /* Ensure sections don't overflow */
            section {
                overflow-x: hidden;
            }
            
            /* Mobile Navigation */
            nav { 
                padding: 1rem 1.5rem;
                position: relative;
            }
            
            .header-logo {
                height: 35px;
                max-width: 160px;
            }

            /* Show hamburger menu on mobile */
            .mobile-menu-toggle {
                display: flex;
            }

            /* Mobile menu styles */
            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                right: 0;
                flex-direction: column;
                background: white;
                box-shadow: 0 4px 12px rgba(0,0,0,0.15);
                padding: 1.5rem;
                gap: 0;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            }

            .nav-links.active {
                max-height: 400px;
            }

            .nav-links li {
                width: 100%;
                border-bottom: 1px solid var(--light);
            }

            .nav-links li:last-child {
                border-bottom: none;
            }

            .nav-links a {
                display: block;
                padding: 1rem 0;
                font-size: 1.0625rem;
            }

            /* Hide desktop CTA on mobile nav */
            .nav-actions {
                gap: 1rem;
            }

            .nav-cta {
                display: none;
            }

            #language-switcher {
                padding: 0.3rem;
                gap: 0.3rem;
            }

            .lang-btn {
                padding: 0.3rem 0.75rem;
                font-size: 0.8125rem;
            }

            .hero {
                min-height: 100vh;
                background-position: center center;
                background-attachment: scroll;
            }

            .hero-content {
                padding: 2rem 0 !important;
            }

            .hero-content h1 {
                font-size: 1.8rem !important;
            }

            .hero-content > div[style*="font-size: 1.4rem"] span {
                font-size: 1.1rem !important;
            }

            .hero-content > div[style*="font-size: 2.8rem"] span {
                font-size: 2rem !important;
            }

            .trust-stats {
                flex-direction: row !important;
                justify-content: space-around !important;
            }

            .services-grid,
            .doctors-grid,
            .reviews-grid,
            .cases-grid,
            .pricing-grid,
            .process-grid,
            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .hero-buttons,
            .trust-stats {
                flex-direction: column;
                gap: 1rem;
            }

            .cta-form {
                grid-template-columns: 1fr;
            }
            
            /* Main Doctor Section Mobile */
            section[style*="background: linear-gradient(135deg, #1e88e5"] > .container > div:nth-child(2) {
                grid-template-columns: 1fr !important;
            }
            
            section[style*="background: linear-gradient(135deg, #1e88e5"] > .container > div:nth-child(2) > div:nth-child(3) {
                grid-column: 1 !important;
            }
            
            section[style*="background: linear-gradient(135deg, #1e88e5"] > .container > div:nth-child(3) {
                grid-template-columns: 1fr !important;
                gap: 2rem !important;
            }
        }

        /* ============================================
           GALLERY SECTION STYLES
           ============================================ */
        
        /* Анимация появления галереи */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Основной контейнер галереи */
        .implant-gallery {
            padding: 80px 20px;
            background: #ffffff;
            animation: fadeInUp 0.8s ease-out;
        }

        .implant-gallery-wrap {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Заголовок галереи */
        .implant-gallery h2 {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary);
            text-align: center;
            margin: 0 0 15px 0;
        }

        .implant-gallery-subtitle {
            text-align: center;
            font-size: 18px;
            color: #64748b;
            margin: 0 0 60px 0;
        }

        /* Сетка галереи */
        .implant-gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        /* Карточка фото */
        .implant-photo {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 4px 20px rgba(26, 58, 82, 0.08);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #f8f9fa;
            cursor: pointer;
        }

        .implant-photo:hover {
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 20px 40px rgba(26, 58, 82, 0.2);
        }

        .implant-photo img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .implant-photo:hover img {
            transform: scale(1.05);
        }

        /* Первое фото большое */
        .implant-photo:first-child {
            grid-column: span 2;
        }

        .implant-photo:first-child img {
            height: 400px;
        }

        /* Планшет - галерея */
        @media (max-width: 1024px) {
            .implant-gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .implant-photo:first-child {
                grid-column: span 2;
            }
            
            .implant-photo:first-child img {
                height: 350px;
            }
            
            .implant-photo img {
                height: 250px;
            }
            
            .implant-gallery h2 {
                font-size: 36px;
            }
        }

        /* Мобильный - галерея */
        @media (max-width: 768px) {
            .implant-gallery {
                padding: 60px 15px;
            }
            
            .implant-gallery-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .implant-photo:first-child {
                grid-column: span 1;
            }
            
            .implant-photo:first-child img,
            .implant-photo img {
                height: 280px;
            }
            
            .implant-gallery h2 {
                font-size: 32px;
            }
            
            .implant-gallery-subtitle {
                font-size: 16px;
                margin-bottom: 40px;
            }
        }
    