:root {
            --primary: #312749;
            --secondary: #fe9f14;
            --accent: #24572a;
            --light: #f5edea;
            --light-orange: #fddfc5;
            --dark: #000000;
            --text: #312749;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            
            /* Новые современные переменные */
            --gradient-primary: linear-gradient(135deg, var(--secondary) 0%, #e68a00 100%);
            --gradient-secondary: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            --gradient-hero: linear-gradient(135deg, var(--primary) 0%, var(--accent) 70%);
            
            /* Современные тени */
            --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);
            --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
            
            /* Цвета состояний */
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --info: #3b82f6;
            
            /* Радиусы */
            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --radius-xl: 1rem;
            --radius-2xl: 1.5rem;
            --transition: all 0.3s ease;
        }

        /* Современные анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes glow {
            0%, 100% {
                box-shadow: 0 0 20px rgba(254, 159, 20, 0.3);
            }
            50% {
                box-shadow: 0 0 30px rgba(254, 159, 20, 0.6);
            }
        }

        @keyframes slideIn {
            from {
                transform: translateX(-100%);
            }
            to {
                transform: translateX(0);
            }
        }

        /* Классы для анимаций */
        .animate-fadeInUp {
            animation: fadeInUp 0.6s ease-out;
        }

        .animate-fadeInLeft {
            animation: fadeInLeft 0.6s ease-out;
        }

        .animate-fadeInRight {
            animation: fadeInRight 0.6s ease-out;
        }

        .animate-pulse {
            animation: pulse 2s infinite;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        .animate-glow {
            animation: glow 2s ease-in-out infinite;
        }

        /* Анимированные счетчики */
        .counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
            display: block;
            transition: all 0.3s ease;
        }

        .counter.animate {
            animation: countUp 2s ease-out;
        }

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

        /* Прогресс-бары */
        .progress-bar {
            width: 100%;
            height: 8px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
            overflow: hidden;
            margin: 10px 0;
        }

        .progress-fill {
            height: 100%;
            background: var(--gradient-primary);
            border-radius: 4px;
            transition: width 2s ease-in-out;
            position: relative;
        }

        .progress-fill:after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        /* Интерактивные элементы */
        .interactive-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .interactive-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .interactive-card:hover:before {
            left: 100%;
        }

        /* Эффект параллакса */
        .parallax-container {
            overflow: hidden;
            position: relative;
        }

        .parallax-element {
            transform: translateZ(0);
            transition: transform 0.1s ease-out;
        }

        /* Стеклянные эффекты */
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
        }

        /* Неоновые эффекты */
        .neon-effect {
            box-shadow: 
                0 0 5px var(--secondary),
                0 0 10px var(--secondary),
                0 0 15px var(--secondary),
                0 0 20px var(--secondary);
        }

        /* Градиентные тексты */
        .gradient-text {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Современные кнопки */
        .modern-btn {
            display: inline-block;
            padding: 15px 30px;
            background: var(--gradient-primary);
            color: var(--dark);
            text-decoration: none;
            border-radius: var(--radius-xl);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
            border: none;
            cursor: pointer;
        }

        .modern-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .modern-btn:hover:before {
            left: 100%;
        }

        .modern-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-2xl);
        }

        .modern-btn:active {
            transform: translateY(-1px);
        }

        /* Кнопка с неоновым эффектом */
        .neon-btn {
            background: transparent;
            border: 2px solid var(--secondary);
            color: var(--secondary);
            padding: 15px 30px;
            border-radius: var(--radius-xl);
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .neon-btn:hover {
            background: var(--secondary);
            color: var(--dark);
            box-shadow: 0 0 20px var(--secondary);
            transform: translateY(-2px);
        }

        /* Инфографические элементы */
        .info-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-2xl);
            padding: 30px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .info-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: var(--radius-2xl);
            z-index: -1;
        }

        .info-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(254, 159, 20, 0.3);
        }

        .info-icon {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.5rem;
            color: var(--dark);
            box-shadow: var(--shadow-lg);
            transition: all 0.3s ease;
        }

        .info-icon:hover {
            transform: scale(1.1);
            box-shadow: var(--shadow-xl);
        }

        /* Анимированные иконки */
        .animated-icon {
            animation: float 3s ease-in-out infinite;
        }

        .animated-icon:nth-child(2) {
            animation-delay: 0.5s;
        }

        .animated-icon:nth-child(3) {
            animation-delay: 1s;
        }

        .animated-icon:nth-child(4) {
            animation-delay: 1.5s;
        }

        /* Современные формы */
        .modern-form {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-2xl);
            padding: 40px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: var(--radius-lg);
            font-size: 1rem;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            color: var(--dark);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(254, 159, 20, 0.1);
            background: rgba(255, 255, 255, 1);
        }

        .form-input:hover {
            border-color: rgba(254, 159, 20, 0.5);
            background: rgba(255, 255, 255, 0.95);
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--primary);
        }

        /* Плавающие лейблы */
        .floating-label {
            position: relative;
        }

        .floating-label .form-input {
            padding-top: 25px;
            padding-bottom: 5px;
        }

        .floating-label .form-label {
            position: absolute;
            top: 15px;
            left: 20px;
            transition: all 0.3s ease;
            pointer-events: none;
            color: #999;
        }

        .floating-label .form-input:focus + .form-label,
        .floating-label .form-input:not(:placeholder-shown) + .form-label {
            top: 5px;
            font-size: 0.8rem;
            color: var(--secondary);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Улучшенная типографика */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Playfair Display', 'TT Norms', serif;
            font-weight: 600;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }
        
        body {
            font-family: 'TT Norms', sans-serif;
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: var(--light);
        }
        
        h1, h2, h3, h4, h5 {
            font-family: 'TT Norms', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            box-shadow: var(--shadow-lg);
            position: fixed;
            width: 100%;
            z-index: 1000;
            top: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            gap: 30px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo:hover {
            transform: scale(1.05);
        }
        
        .logo img {
                        max-height: 100px;
            margin-right: 10px;

        }
        
        .logo-text {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Playfair Display', 'TT Norms', serif;
        }
        
        .nav-menu {
            display: flex;
            list-style: none;
            align-items: center;
            gap: 20px;
        }
        .nav-menu li{  text-wrap: nowrap;
}
        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            padding: 8px 16px;
            border-radius: var(--radius-md);
        }

        .nav-menu .mobile-only {
            display: none;
        }

        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .mobile-nav-link i {
            font-size: 1rem;
        }

        .nav-callback {
            border: none;
            padding: 12px;
        }

        .menu-toggle {
            display: none;
            background: transparent;
            border: none;
            width: 44px;
            height: 44px;
            position: relative;
            cursor: pointer;
            padding: 0;
            flex-shrink: 0;
        }

        .menu-toggle span {
            position: absolute;
            left: 10px;
            right: 10px;
            height: 2px;
            background: var(--primary);
            transition: all 0.3s ease;
        }

        .menu-toggle span:nth-child(1) {
            top: 13px;
        }

        .menu-toggle span:nth-child(2) {
            top: 21px;
        }

        .menu-toggle span:nth-child(3) {
            top: 29px;
        }

        header.menu-open .menu-toggle span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        header.menu-open .menu-toggle span:nth-child(2) {
            opacity: 0;
        }

        header.menu-open .menu-toggle span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary);
            transition: var(--transition);
        }
        
        .nav-menu a:hover {
            color: var(--primary);
            background: rgba(254, 159, 20, 0.1);
            transform: translateY(-2px);
        }
        
        .nav-menu a:hover:after {
            width: 100%;
        }
        
        .header-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }
        
        .phone {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                        padding: 0px;
            border-radius: var(--radius-md);
            text-wrap: nowrap;

        }

        .phone:hover {
            color: var(--secondary);
            background: rgba(254, 159, 20, 0.1);
            transform: translateY(-2px);
        }
        
        .callback-btn {
            background: var(--gradient-primary);
            color: var(--dark);
            border: none;
            padding: 12px 14px;
            border-radius: var(--radius-lg);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }

        .callback-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.5s;
        }

        .callback-btn:hover:before {
            left: 100%;
        }

        .callback-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-xl);
        }

        .callback-btn:active {
            transform: translateY(0);
        }
        
        .callback-btn:hover {
            background-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(49, 39, 73, 0.4), rgba(49, 39, 73, 0.4)), url('/images/Capellomain.jpg');

            background-size: cover;
            background-position: center;
            color: white;
            padding: 260px 0 160px;
            text-align: center;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            color: white;
            margin-bottom: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(254, 159, 20, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: white;
            color: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
        }

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

        .btn-secondary {
            background-color: transparent;
            border: 2px solid white;
            color: white;
            box-shadow: none;
        }

        .btn-secondary:hover {
            background-color: white;
            color: var(--primary);
        }
        
        /* Section Common */
        .section {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
        }
        
        /* Social Proof */
        .social-proof {
            background-color: white;
            padding: 60px 0;
        }

        .proof-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .proof-item {
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.8);
            border-radius: var(--radius-2xl);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
        }

        .proof-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(254, 159, 20, 0.3);
            background: rgba(255, 255, 255, 0.95);
        }

        .proof-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 10px;
            display: block;
        }

        .proof-text {
            font-weight: 600;
            color: var(--primary);
        }
        
        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-text {
            flex: 1;
        }
        
        .about-image {
            flex: 1;
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-image:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(254, 159, 20, 0.3);
        }
        
        .about-image img {
                        width: auto;
  height: 100%;
  display: block;
  transition: var(--transition);
  max-height: 400px;
  margin: 0 auto;

        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Services Section */
        .services {
            background-color: white;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--radius-2xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: relative;
        }

        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: var(--radius-2xl);
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-2xl);
            border-color: rgba(254, 159, 20, 0.3);
        }
        
        .service-image {
            height: 200px;
            overflow: hidden;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 20px;
        }
        
        .service-content h3 {
            color: var(--primary);
            font-size: 1.5rem;
        }

        /* Doctors Section */
        .doctors {
            background-color: var(--light);
        }

        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .doctor-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .doctor-card:hover {
            transform: translateY(-10px);
        }

        .doctor-image {
            height: 300px;
            overflow: hidden;
        }

        .doctor-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .doctor-card:hover .doctor-image img {
            transform: scale(1.1);
        }

        .doctor-info {
            padding: 25px;
        }

        .doctor-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .doctor-specialty {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
            display: block;
        }

        .doctor-features {
            list-style: none;
            margin: 15px 0;
        }

        .doctor-features li {
            padding: 5px 0;
            display: flex;
            align-items: flex-start;
        }

        .doctor-features li:before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
            margin-right: 10px;
        }
        
        /* Pricing Section */
        .pricing {
            background-color: white;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .pricing-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            box-shadow: var(--shadow);
            border-top: 4px solid var(--secondary);
            transition: var(--transition);
            position: relative;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card.recommended {
            transform: scale(1.05);
            border-top: 4px solid var(--accent);
        }

        .pricing-card.recommended:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .recommended-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: bold;
        }

        .pricing-header {
            margin-bottom: 20px;
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin: 20px 0;
        }

        .price span {
            font-size: 1rem;
            color: #777;
        }

        .pricing-features {
            list-style: none;
            margin: 20px 0;
            text-align: left;
        }

        .pricing-features li {
            padding: 8px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
        }

        .pricing-features li:before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
            margin-right: 10px;
        }

        /* Promo Banner */
        .promo-banner {
            background: linear-gradient(135deg, var(--primary), #42325c);
            color: white;
            padding: 40px;
            border-radius: 10px;
            text-align: center;
            margin-top: 40px;
        }

        .promo-content h3 {
            color: white;
            margin-bottom: 20px;
        }

        .timer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .timer-item {
            background: rgba(255,255,255,0.2);
            padding: 15px;
            border-radius: 5px;
            min-width: 80px;
        }

        .timer-item span {
            font-size: 2rem;
            font-weight: 700;
            display: block;
        }
        
        /* Advantages Section */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .advantage-card {
            text-align: center;
            padding: 30px 20px;
            background-color: white;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            border-bottom: 3px solid var(--secondary);
        }
        
        .advantage-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }
        
        .advantage-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Before-After Slider */
        .before-after {
            background-color: var(--light);
        }

               .slider-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .slider {
            position: relative;
            height: 500px;
        }


        .slider-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .slider-before {
           /* background-image: url('https://images.unsplash.com/photo-1559056199-641a0ac8b55e?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');*/
            width: 50%;
            z-index: 2;
        }

        .slider-after {
           /* background-image: url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?ixlib=rb-4.0.3&auto=format&fit=crop&w=800&q=80');*/
        }

        .slider-handle {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--secondary);
            z-index: 3;
            cursor: ew-resize;
            transform: translateX(-50%);
        }

        .slider-handle:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: var(--secondary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .slider-handle:after {
            content: '⇄';
            position: absolute;
            top: 50%;
            left: 50%;
            color: white;
            font-size: 1.2rem;
            transform: translate(-50%, -50%);
        }

        .slider-labels {
            position: absolute;
            top: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            z-index: 4;
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            font-weight: bold;
        }
                .result-content h3{color: white;}

        /* Results Section */
        .results {
            background: linear-gradient(to right, var(--primary), #42325c);
            color: white;
        }
        
        .results .section-title {
            color: white;
        }
        
        .results-carousel {
            position: relative;
            margin-top: 40px;
        }

        .results-track {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            padding: 20px 80px;
            margin: 0 -80px;
            -webkit-overflow-scrolling: touch;
        }

        .results-track::-webkit-scrollbar {
            display: none;
        }

        .results-track {
            scrollbar-width: none;
        }

        .results-card {
            flex: 0 0 calc(100% - 160px);
            max-width: 820px;
            margin: 0 auto;
            scroll-snap-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
            transition: transform 0.4s ease, opacity 0.4s ease;
            opacity: 0.85;
        }

        .results-card.active {
            transform: scale(1);
            opacity: 1;
        }

        .results-card:not(.active) {
            transform: scale(0.96);
        }

        .results-card .slider-container {
            margin: 0 auto;
        }

        .result-info {
            text-align: center;
            max-width: 640px;
        }

        .result-info h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .result-info p {
            color: rgba(49, 39, 73, 0.75);
            line-height: 1.5;
        }

        .results-arrows {
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
        }

        .results-arrow {
            width: 54px;
            height: 54px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: all;
        }

        .results-arrow:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: scale(1.08);
            box-shadow: var(--shadow-xl);
        }

        .results-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .results-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(254, 159, 20, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0;
        }

        .results-dot:hover {
            background: rgba(254, 159, 20, 0.6);
            transform: scale(1.15);
        }

        .results-dot.active {
            background: var(--secondary);
            transform: scale(1.3);
        }

        .results-dot:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .results-cta {
            text-align: center;
            margin-top: 30px;
        }

        .results-cta p {
            margin-bottom: 20px;
            color: rgba(49, 39, 73, 0.75);
        }
                .results-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .result-card {
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(10px);
            flex: 0 0 auto;
            /*width: 350px;*/
        }
        
        .result-image {
            height: 350px;
            overflow: hidden;
        }
        
        .result-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .result-content {
            padding: 20px;
            text-align: center;
        }
        /* Стили для слайдеров сравнения */
        .comparison-slider {
            position: relative;
            width: 100%;
            height: 300px;
            overflow: hidden;
            border-radius: var(--radius-lg);
        }

        .before-image,
        .after-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: left;
        }

        .after-image {
            width: 50%;
        }

        .comparison-slider .slider-handle {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--secondary);
            cursor: ew-resize;
            transform: translateX(-50%);
        }

        .comparison-slider .slider-handle:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            background: var(--secondary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .comparison-slider .slider-handle:after {
            content: '⇄';
            position: absolute;
            top: 50%;
            left: 50%;
            color: white;
            font-size: 1.2rem;
            transform: translate(-50%, -50%);
        }

        .comparison-slider .slider-labels {
            position: absolute;
            top: 20px;
            width: 100%;
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            color: white;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
            font-weight: bold;
        }

        /* FAQ Section */
        .faq {
            background-color: white;
        }

        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: var(--light);
            margin-bottom: 15px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }

        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            font-weight: 600;
        }

        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-item.active .faq-answer {
            padding: 0 20px 20px;
            max-height: 200px;
        }
        
        /* Testimonials Section */
        .testimonials {
            background: var(--light);
            position: relative;
        }

        .testimonials .section-title {
            margin-bottom: 30px;
        }

        .testimonials .section-subtitle {
            text-align: center;
            max-width: 680px;
            margin: 0 auto 40px;
            color: rgba(49, 39, 73, 0.7);
            font-size: 1.05rem;
        }

        .testimonials-container {
            position: relative;
            overflow: hidden;
        }

        .testimonials-container:before,
        .testimonials-container:after {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 60px;
            z-index: 5;
            pointer-events: none;
        }

        .testimonials-container:before {
            left: 0;
            background: linear-gradient(to right, var(--light), transparent);
        }

        .testimonials-container:after {
            right: 0;
            background: linear-gradient(to left, var(--light), transparent);
        }

        .testimonials-slider {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 20px 60px;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .testimonials-slider::-webkit-scrollbar {
            display: none;
        }

        .scroll-indicators {
            position: absolute;
            top: 50%;
            width: 100%;
            transform: translateY(-50%);
            display: flex;
            justify-content: space-between;
            padding: 0 20px;
            pointer-events: none;
            z-index: 10;
        }

        .scroll-arrow {
            width: 54px;
            height: 54px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            pointer-events: all;
            opacity: 0.9;
            color: var(--primary);
        }

        .scroll-arrow {
            border: none;
        }

        .scroll-arrow:hover {
            background: var(--secondary);
            color: var(--dark);
            transform: scale(1.08);
            box-shadow: var(--shadow-xl);
            opacity: 1;
        }

        .scroll-arrow i {
            font-size: 1.2rem;
            pointer-events: none;
        }

        .scroll-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .scroll-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(254, 159, 20, 0.3);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            border: none;
            padding: 0;
        }

        .scroll-dot:hover {
            background: rgba(254, 159, 20, 0.6);
            transform: scale(1.15);
        }

        .scroll-dot.active {
            background: var(--secondary);
            transform: scale(1.3);
        }

        .scroll-dot:before {
            content: '';
            position: absolute;
            top: -4px;
            left: -4px;
            right: -4px;
            bottom: -4px;
            border-radius: 50%;
            background: rgba(254, 159, 20, 0.12);
            opacity: 0;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scroll-dot:hover:before,
        .scroll-dot.active:before {
            opacity: 1;
        }

        .testimonial-card {
            min-width: 300px;
            max-width: 340px;
            background: rgba(255, 255, 255, 0.95);
            padding: 24px;
            border-radius: 20px;
            box-shadow: var(--shadow-xl);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            scroll-snap-align: start;
            flex-shrink: 0;
            opacity: 0.85;
            transform: scale(0.96);
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .testimonial-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 20px;
            z-index: -1;
        }

        .testimonial-card.active,
        .testimonial-card:hover {
            transform: translateY(-8px) scale(1);
            box-shadow: 0 25px 40px -18px rgba(49, 39, 73, 0.4);
            border-color: rgba(254, 159, 20, 0.35);
            opacity: 1;
        }

        .testimonial-text {
            font-style: italic;
            position: relative;
            color: rgba(0, 0, 0, 0.85);
            line-height: 1.45;
            padding-left: 24px;
        }

        .testimonial-text:before {
            content: '"';
            font-size: 2.8rem;
            color: rgba(254, 159, 20, 0.25);
            position: absolute;
            top: -18px;
            left: -6px;
            font-family: 'Playfair Display', serif;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: auto;
        }

        .author-avatar {
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(254, 159, 20, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary);
            border: 2px solid rgba(254, 159, 20, 0.35);
            flex-shrink: 0;
        }

        .author-info h4 {
            margin: 0;
            font-size: 1rem;
            color: var(--primary);
        }

        .author-info p {
            margin: 4px 0 0;
            font-size: 0.85rem;
            color: rgba(49, 39, 73, 0.6);
        }

        /* Consultation Form */
        .consultation-form {
            background: linear-gradient(135deg, var(--primary), #42325c);
            color: white;
        }

        .consultation-form .section-title {
            color: white;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
            background: rgba(255,255,255,0.1);
            padding: 40px;
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'TT Norms', sans-serif;
        }
        
        /* CTA Section */
        .cta {
            background: linear-gradient(to right, var(--primary), #42325c);
            color: white;
            text-align: center;
            padding: 80px 0;
        }
        
        .cta h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        /* Contact Section */
        .contact {
            background-color: white;
        }
        
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
            text-decoration: none;
        }
        
        .social-link:hover {
            background-color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .map-container {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 400px;
        }
                footer a{ color: white;}

        /* Footer */
        footer {
            background-color: var(--primary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            padding-left: 5px;
        }
        
        .footer-contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .footer-contact-icon {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            text-align: center;
        }
        
        .org-info {
            font-size: 0.8rem;
            margin-top: 10px;
            opacity: 0.8;
        }
        
        .copyright {
            margin-top: 20px;
            font-size: 0.9rem;
            opacity: 0.8;
        }

        /* Floating CTA */
        .floating-cta {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 1000;
            display: none;
            flex-direction: column;
            gap: 10px;
        }

        .floating-btn {
            padding: 15px;
            border-radius: 50px;
            color: white;
            text-decoration: none;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 60px;
            height: 60px;
        }

        .floating-btn.phone {
            background: var(--accent);
        }

        .floating-btn.whatsapp {
            background: #25D366;
        }

        .floating-btn.main {
            background: var(--secondary);
            width: auto;
            padding: 15px 20px;
        }

        /* Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            align-items: center;
            justify-content: center;
        }
        
        .modal-content {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            max-width: 500px;
            width: 100%;
            position: relative;
        }
        
        .close-modal {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 24px;
            cursor: pointer;
            color: var(--dark);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: 'TT Norms', sans-serif;
        }
        
        .submit-btn {
            background-color: var(--primary);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-weight: 500;
            width: 100%;
            transition: var(--transition);
        }
        
        .submit-btn:hover {
            background-color: var(--secondary);
            color: var(--dark);
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content {
                flex-direction: column;
            }
            
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }

            .pricing-card.recommended {
                transform: scale(1);
            }

            .pricing-card.recommended:hover {
                transform: translateY(-5px);
            }

            .testimonials-slider {
                padding: 20px 40px;
                gap: 24px;
            }

            .scroll-arrow {
                width: 48px;
                height: 48px;
            }
        }
        
        @media (max-width: 768px) {
            .header-container {
                flex-direction: row;
                align-items: center;
                gap: 15px;
            }
            
            .menu-toggle {
                display: block;
            }

            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(20px);
                -webkit-backdrop-filter: blur(20px);
                flex-direction: column;
                align-items: stretch;
                gap: 12px;
                padding: 20px;
                box-shadow: var(--shadow-lg);
                border-bottom-left-radius: var(--radius-xl);
                border-bottom-right-radius: var(--radius-xl);
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transform: translateY(-10px);
                pointer-events: none;
                transition: all 0.3s ease;
                margin: 0;
            }

            header.menu-open .nav-menu {
                max-height: 600px;
                opacity: 1;
                transform: translateY(0);
                pointer-events: all;
            }
            
            .nav-menu li {
                margin: 0;
            }
            
            .nav-menu a {
                width: 100%;
                text-align: center;
                padding: 12px;
            }
            
            .header-contact {
                display: none;
            }

            .nav-menu .mobile-only {
                display: block;
            }

            .nav-callback {
                width: 100%;
            }
            
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 60px 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }

            .floating-cta {
                display: flex;
            }

            .slider {
                height: 300px;
            }

            .testimonials-slider {
                padding: 20px 28px;
                gap: 22px;
            }
        }
        
        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .btn {
                padding: 12px 30px;
            }
            
            .modal-content {
                padding: 20px;
                margin: 0 15px;
            }

            .timer {
                flex-wrap: wrap;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .testimonials-slider {
                padding: 20px 24px;
                gap: 18px;
            }

            .testimonial-card {
                min-width: 250px;
                max-width: 250px;
            }

            .scroll-arrow {
                width: 42px;
                height: 42px;
            }
        }

        /* Hero buttons */
        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        
        .mini-widget[data-v-f77c58ce]{right: auto !important; left:10px;}
