
        :root {
            /* Основные цвета */
            --primary-color: #FF666A;
            --primary-dark: #CC5255;
            --primary-light: #FF8A8D;
            --accent-color: #FFB3B5;
            --light-bg: #FFF5F5;
            
            /* Дополнительные цвета */
            --secondary-blue: #1a4d7a;
            --secondary-light: #2d7fb8;
            --success-color: #28a745;
            --warning-color: #ffc107;
            
            /* Нейтральные */
            --dark-color: #312749;
            --text-dark: #333333;
            --text-medium: #666666;
            --text-light: #999999;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --border-color: #dee2e6;
            
            /* Градиенты */
            --gradient-primary: linear-gradient(135deg, #FF666A 0%, #FF8A8D 100%);
            --gradient-dark: linear-gradient(135deg, #CC5255 0%, #FF666A 100%);
            --gradient-light: linear-gradient(135deg, #FFB3B5 0%, #FF8A8D 100%);
            --gradient-blue: linear-gradient(135deg, #1a4d7a 0%, #2d7fb8 100%);
            
            /* Тени */
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
            --shadow-md: 0 4px 8px rgba(0,0,0,0.1);
            --shadow-lg: 0 8px 16px rgba(0,0,0,0.15);
            --shadow-xl: 0 12px 24px rgba(0,0,0,0.2);
            --shadow-2xl: 0 20px 40px rgba(0,0,0,0.25);
            
            /* Анимации */
            --transition-fast: 0.2s ease;
            --transition-normal: 0.3s ease;
            --transition-slow: 0.5s ease;
        }

        /* Визуально скрытый текст (для SEO и скринридеров, без влияния на верстку) */
        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            border: 0;
            white-space: nowrap;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'TT Norms', 'Inter', 'Montserrat', 'Arial', sans-serif;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
        }

        body {
            color: var(--text-dark);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }

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

        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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

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

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

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

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

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

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

        .animate-fadeInUp {
            animation: fadeInUp 0.8s ease-out;
        }

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

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

        /* Заголовки */
        h1, h2, h3, h4, h5, h6 {
            font-family: 'TT Norms', 'Inter', sans-serif;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .dermadrop-brand {
            font-family: 'Circe', 'TT Norms', sans-serif;
            color: var(--primary-color);
            font-weight: 700;
        }

        /* Кнопки */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            border-radius: 50px;
            border: none;
            cursor: pointer;
            transition: all var(--transition-normal);
            position: relative;
            overflow: hidden;
            white-space: nowrap;
        }

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

        .btn:hover:after {
            left: 100%;
        }

        .btn-primary {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background: var(--gradient-dark);
        }

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

        .btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-3px);
        }

        .btn-large {
            padding: 20px 40px;
            font-size: 1.1rem;
        }

        .btn-block {
            width: 100%;
        }

        /* Header - Улучшенный */
        header {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            border-bottom: 1px solid rgba(255, 102, 106, 0.1);
            transition: all var(--transition-normal);
        }

        header.scrolled {
            box-shadow: var(--shadow-md);
            background: rgba(255, 255, 255, 0.99);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-size: 24px;
            font-weight: 800;
            color: var(--primary-color);
            transition: all var(--transition-normal);
            max-width: 100px;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .logo-icon {
            width: 36px;
            height: 36px;
            background: var(--gradient-primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
        }

        /* Главное меню - ПК версия */
        .main-nav {
            display: flex;
            align-items: center;
            gap: 30px;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .nav-menu li {
            margin: 0;
            padding: 0;
        }

        .nav-menu a {
            display: block;
            padding: 10px 10px;
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: all var(--transition-normal);
            position: relative;
            white-space: nowrap;
        }

        .nav-menu a:after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--gradient-primary);
            transition: width var(--transition-normal);
        }

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

        .nav-menu a:hover:after {
            width: calc(100% - 40px);
        }

        /* Мобильное меню (гамбургер) */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--primary-color);
            border-radius: 3px;
            transition: all var(--transition-normal);
        }

        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

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

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

        /* Скрытие элементов на мобильных */
        .hidden-mobile {
            display: inline-flex;
        }

        /* USP Banner - Новый элемент */
        .usp-banner {
            background: var(--gradient-blue);
            color: var(--white);
            padding: 10px 0;
            font-size: 0.9rem;
        }

        .usp-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .usp-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .usp-icon {
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
        }

        /* Hero Section - Улучшенная */
        .hero {
           background: linear-gradient(135deg, rgba(26, 77, 122, 0.9) 0%, rgba(255, 102, 106, 0.8) 100%); 
                       /* url('https://images.unsplash.com/photo-1570172619644-dfd03ed5d881?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') center/cover;*/
            padding: 130px 0 70px;
            color: var(--white);
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 16px;
            color: var(--white);
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .hero-subtitle {
            font-size: 1.15rem;
            margin-bottom: 24px;
            opacity: 0.95;
            line-height: 1.5;
        }

        .hero-usp {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 12px;
            margin: 22px 0 24px;
        }

        .hero-usp-item {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            padding: 10px 20px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.9rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .hero-cta {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
            margin-top: 28px;
        }

        /* Счетчик записавшихся */
        .counter-widget {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 15px 25px;
            margin: 30px auto;
            max-width: 300px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .counter-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--white);
            text-align: center;
            display: block;
        }

        .counter-text {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }

        /* Social Proof - Улучшенный */
        .social-proof {
            background: var(--light-bg);
            padding: 60px 0;
        }

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

        .proof-card {
            background: var(--white);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-normal);
            border: 2px solid transparent;
        }

        .proof-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--accent-color);
        }

        .proof-card {
            animation: fadeInUp 0.6s ease-out;
        }

        .proof-number {
            font-size: 2.5rem;
            font-weight: 800;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .proof-text {
            color: var(--text-medium);
            font-size: 1rem;
        }

        /* Таймер акции */
        .timer-container {
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 15px;
            padding: 20px;
            margin: 30px 0;
            text-align: center;
            animation: pulse 3s infinite;
            box-shadow: var(--shadow-lg);
        }

        .timer-container:hover {
            animation: none;
            transform: scale(1.02);
        }

        .timer-title {
            font-size: 1.2rem;
            margin-bottom: 15px;
        }

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

        .timer-unit {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .timer-value {
            font-size: 2rem;
            font-weight: 800;
            background: rgba(255, 255, 255, 0.2);
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            margin-bottom: 5px;
        }

        .timer-label {
            font-size: 0.8rem;
            opacity: 0.9;
        }

        /* Секции */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
            color: var(--dark-color);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-medium);
            max-width: 800px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Инфографика процесса */
        .process-timeline {
            display: flex;
            justify-content: space-between;
            position: relative;
            margin: 60px 0;
        }

        .process-timeline:before {
            content: '';
            position: absolute;
            top: 30px;
            left: 10%;
            right: 10%;
            height: 3px;
            background: var(--gradient-primary);
            z-index: 1;
        }

        .process-step {
            flex: 1;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: 800;
            font-size: 1.5rem;
            margin: 0 auto 20px;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
        }

        .process-step:hover .step-number {
            transform: scale(1.1) rotate(5deg);
            box-shadow: var(--shadow-lg);
        }

        .step-content {
            padding: 0 15px;
        }

        .step-title {
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--dark-color);
        }

        .step-description {
            color: var(--text-medium);
            font-size: 0.9rem;
        }

        /* Таблица сравнения */
        .comparison-table {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            margin: 40px 0;
        }

        .comparison-header {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            text-align: center;
        }

        .comparison-body {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
        }

        .comparison-row {
            display: contents;
        }

        .comparison-cell {
            padding: 15px;
            border-bottom: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .comparison-cell:first-child {
            justify-content: flex-start;
            text-align: left;
            font-weight: 600;
        }

        .checkmark {
            color: var(--success-color);
            font-size: 1.2rem;
        }

        .crossmark {
            color: var(--primary-color);
            font-size: 1.2rem;
        }

        /* Benefits Section */
        .benefits {
            background: var(--light-bg);
        }

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

        .benefit-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            text-align: center;
            transition: all var(--transition-normal);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

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

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

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .benefit-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.2rem;
            color: var(--white);
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .benefit-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-weight: 600;
        }

        .benefit-card p {
            color: var(--text-medium);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* Serums Section */
        .serums {
            background: var(--white);
        }

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

        .serum-card {
            background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
            padding: 35px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .serum-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transition: transform var(--transition-normal);
        }

        .serum-card:hover:before {
            transform: scaleX(1);
        }

        .serum-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .serum-card h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--dark-color);
            font-weight: 700;
        }

        .serum-card .serum-type {
            display: inline-block;
            background: var(--gradient-primary);
            color: var(--white);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .serum-card .serum-popular {
            display: inline-block;
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
            color: var(--dark-color);
            padding: 6px 18px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 10px;
            margin-left: 8px;
            box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
            animation: pulse-gold 2s ease-in-out infinite;
        }

        @keyframes pulse-gold {
            0%, 100% {
                box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
            }
            50% {
                box-shadow: 0 4px 16px rgba(255, 215, 0, 0.5);
            }
        }

        .serum-card .serum-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            margin: 15px 0;
        }

        .serum-card p {
            color: var(--text-medium);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .serum-card ul {
            list-style: none;
            margin-top: 15px;
            padding: 0;
        }

        .serum-card ul li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
            font-size: 0.95rem;
            color: var(--text-medium);
            line-height: 1.5;
        }

        .serum-card ul li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1rem;
        }

        /* Specialists Section */
        .specialists {
            background: var(--light-bg);
            position: relative;
            z-index: 1;
        }

        .specialists-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
            align-items: stretch;
        }

        .specialist-card {
            background: var(--white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            border: 2px solid transparent;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .specialist-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .specialist-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }

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

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

        .specialist-info {
            padding: 25px;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .specialist-name {
            font-size: 1.5rem;
            margin-bottom: 10px;
            color: var(--dark-color);
            font-weight: 700;
        }

        .specialist-specialty {
            color: var(--primary-color);
            font-weight: 600;
            font-size: 1rem;
            margin-bottom: 15px;
            display: block;
        }

        .specialist-info p {
            color: var(--text-medium);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .specialist-features {
            margin: 15px 0 0;
            list-style: none;
            padding: 0;
            flex-grow: 1;
        }

        .specialist-features li {
            padding: 8px 0;
            font-size: 0.95rem;
            line-height: 1.5;
            position: relative;
            padding-left: 25px;
            color: var(--text-medium);
        }

        .specialist-features li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: 700;
            font-size: 1rem;
        }

        .specialists-profiles {
            margin-top: 60px;
        }

        .specialists-profiles-title {
            font-size: 1.6rem;
            margin-top: 40px;
            margin-bottom: 25px;
            color: var(--dark-color);
            font-weight: 700;
            text-align: center;
        }

        .trust-statistics {
            margin-top: 60px;
        }

        .specialists-cta {
            margin-top: 80px;
        }

        @media (max-width: 768px) {
            .hero {
                padding: 100px 0 50px;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }

            .specialists-profiles-title {
                font-size: 1.4rem;
                margin-top: 30px;
                margin-bottom: 20px;
            }

            .specialists-cta {
                margin-top: 50px;
            }
        }

        /* FAQ Section */
        .faq-section {
            background: var(--white);
        }

        .faq-grid {
            max-width: 900px;
            margin: 40px auto 0;
        }

        .faq-item {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 15px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all var(--transition-normal);
        }

        .faq-item.active {
            border-color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }

        .faq-question {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: var(--dark-color);
            font-size: 1.1rem;
            transition: all var(--transition-normal);
        }

        .faq-question:hover {
            color: var(--primary-color);
        }

        .faq-question i {
            color: var(--primary-color);
            transition: transform var(--transition-normal);
            font-size: 0.9rem;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            padding: 0 25px;
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 25px 20px;
        }

        .faq-answer p {
            color: var(--text-medium);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
        }

        /* Калькулятор экономии */
        .calculator {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
            transition: all var(--transition-normal);
        }

        .calculator:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        .calculator-controls {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .calculator-input {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .calculator-input label {
            font-weight: 600;
            color: var(--dark-color);
        }

        .calculator-input select,
        .calculator-input input {
            padding: 12px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color var(--transition-normal);
        }

        .calculator-input select:focus,
        .calculator-input input:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .calculator-results {
            background: var(--white);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow-sm);
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }

        .result-total {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-color);
        }

        /* Галерея до/после */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin: 40px 0;
        }

        .gallery-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
            background: var(--white);
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-xl);
        }

        /* Компонент до/после со шторкой */
        .before-after-container {
            position: relative;
            width: 100%;
            height: 400px;
            overflow: hidden;
            cursor: grab;
            user-select: none;
            -webkit-user-select: none;
            touch-action: none;
        }

        .before-after-container:active {
            cursor: grabbing;
        }

        .before-after-container img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            pointer-events: none;
        }

        .before-after-container .image-before {
            z-index: 1;
        }

        .before-after-container .image-after {
            z-index: 2;
            clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
            will-change: clip-path;
            transform: translateZ(0);
        }

        .before-after-slider {
            position: absolute;
            top: 0;
            left: 50%;
            width: 4px;
            height: 100%;
            background: var(--white);
            z-index: 3;
            transform: translateX(-50%) translateZ(0);
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
            cursor: ew-resize;
            will-change: left;
            transition: none;
        }


        .before-after-slider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: var(--white);
            border-radius: 50%;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            border: 3px solid var(--primary-color);
        }

        .before-after-slider::after {
            content: '⟷';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: var(--primary-color);
            font-size: 20px;
            font-weight: bold;
            pointer-events: none;
        }

        .before-after-label {
            position: absolute;
            top: 20px;
            padding: 8px 15px;
            background: rgba(0, 0, 0, 0.7);
            color: var(--white);
            font-size: 0.85rem;
            font-weight: 600;
            border-radius: 20px;
            z-index: 4;
            backdrop-filter: blur(10px);
        }

        .before-after-label.before-label {
            left: 20px;
        }

        .before-after-label.after-label {
            right: 20px;
        }

        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
            color: var(--white);
            padding: 20px;
            font-size: 0.95rem;
            z-index: 5;
        }

        .gallery-caption strong {
            display: block;
            margin-bottom: 5px;
            font-size: 1rem;
        }

        @media (max-width: 992px) {
            .gallery-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .gallery-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .before-after-container {
                height: 350px;
            }
        }

        /* Блок отзывов */
        .testimonials {
            background: var(--white);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 30px 0 50px;
        }

        .testimonials-slider-wrapper {
            position: relative;
            padding: 0 50px;
        }

        .testimonials-slider {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            overflow-y: hidden;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            padding: 15px 0 30px;
            position: relative;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            -ms-overflow-style: none;
        }

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

        .testimonial-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 42px;
            height: 42px;
            background: var(--gradient-primary);
            border: none;
            border-radius: 50%;
            color: var(--white);
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-normal);
            opacity: 0.9;
        }

        .testimonial-nav-btn:hover {
            opacity: 1;
            transform: translateY(-50%) scale(1.1);
            box-shadow: var(--shadow-xl);
        }

        .testimonial-nav-btn.prev {
            left: 0;
        }

        .testimonial-nav-btn.next {
            right: 0;
        }

        .testimonial-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .testimonial-card {
            min-width: 320px;
            max-width: 320px;
            background: var(--white);
            padding: 35px 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            scroll-snap-align: start;
            border: 2px solid transparent;
            transition: all var(--transition-normal);
            position: relative;
            flex-shrink: 0;
            opacity: 0.85;
        }

        .testimonial-card.active {
            opacity: 1;
            transform: scale(1.02);
            box-shadow: var(--shadow-xl);
        }

        .testimonial-card:before {
            content: '"';
            position: absolute;
            top: 15px;
            left: 25px;
            font-size: 4.5rem;
            color: var(--accent-color);
            font-family: 'TT Norms', sans-serif;
            line-height: 1;
            opacity: 0.3;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-2xl);
            border-color: var(--primary-color);
        }

        .testimonial-text {
            font-size: 1rem;
            color: var(--text-dark);
            margin-bottom: 25px;
            font-style: italic;
            line-height: 1.7;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 2px solid var(--accent-color);
        }

        .author-avatar {
            width: 55px;
            height: 55px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--white);
            box-shadow: var(--shadow-sm);
            flex-shrink: 0;
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--dark-color);
            font-size: 1.1rem;
        }

        .author-info p {
            color: var(--text-medium);
            font-size: 0.9rem;
        }

        .testimonials-nav {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 35px;
            flex-wrap: wrap;
        }

        .testimonial-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent-color);
            cursor: pointer;
            transition: all var(--transition-normal);
            position: relative;
        }

        .testimonial-dot::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0);
            width: 20px;
            height: 20px;
            background: var(--primary-light);
            border-radius: 50%;
            opacity: 0.3;
            transition: transform var(--transition-normal);
        }

        .testimonial-dot:hover::before {
            transform: translate(-50%, -50%) scale(1);
        }

        .testimonial-dot.active {
            background: var(--gradient-primary);
            transform: scale(1.4);
            box-shadow: 0 0 0 4px rgba(255, 102, 106, 0.2);
        }

        .testimonial-dot.active::before {
            transform: translate(-50%, -50%) scale(1.5);
        }

        @media (max-width: 768px) {
            .testimonials {
                padding: 50px 0;
            }

            .testimonials-container {
                padding: 20px 0 40px;
            }

            .testimonials-slider-wrapper {
                padding: 0 40px;
            }

            .testimonial-nav-btn {
                width: 36px;
                height: 36px;
                font-size: 1rem;
            }

            .testimonial-card {
                min-width: 280px;
                max-width: 280px;
                padding: 30px 25px;
            }

            .testimonial-text {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .author-avatar {
                width: 50px;
                height: 50px;
                font-size: 1.3rem;
            }

            .author-info h4 {
                font-size: 1rem;
            }

            .author-info p {
                font-size: 0.85rem;
            }
        }

        /* Модальное окно */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.8);
            z-index: 2000;
            justify-content: center;
            align-items: center;
        }

        .modal-content {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            max-width: 500px;
            width: 90%;
            position: relative;
            animation: slideInDown 0.3s ease;
        }

        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--text-medium);
        }

        .modal-close:hover {
            color: var(--primary-color);
        }

        /* Exit Intent Popup */
        .exit-popup {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            max-width: 400px;
            width: 90%;
            z-index: 2001;
            box-shadow: var(--shadow-2xl);
        }

        /* Улучшенная форма */
        .smart-form {
            background: var(--white);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--shadow-lg);
            transition: all var(--transition-normal);
        }

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

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

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

        .form-control {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            transition: all var(--transition-normal);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(255, 102, 106, 0.1);
            transform: translateY(-1px);
        }

        .form-control:hover {
            border-color: var(--primary-light);
        }

        .form-select {
            width: 100%;
            padding: 15px;
            border: 2px solid var(--border-color);
            border-radius: 8px;
            font-size: 1rem;
            background: var(--white);
            cursor: pointer;
        }

        /* Квиз-виджет */
        .quiz-widget {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 40px;
            margin: 40px 0;
        }

        .quiz-step {
            display: none;
            animation: fadeInUp 0.5s ease;
        }

        .quiz-step.active {
            display: block;
        }

        .quiz-question {
            font-size: 1.3rem;
            margin-bottom: 25px;
            color: var(--dark-color);
        }

        .quiz-options {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }

        .quiz-option {
            background: var(--white);
            border: 2px solid var(--border-color);
            border-radius: 8px;
            padding: 15px;
            cursor: pointer;
            transition: all var(--transition-normal);
        }

        .quiz-option:hover {
            border-color: var(--primary-light);
            transform: translateX(5px);
        }

        .quiz-option.selected {
            border-color: var(--primary-color);
            background: var(--light-bg);
        }

        .quiz-navigation {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }

        /* Footer */
        footer {
            background: var(--dark-color);
            color: var(--white);
            padding: 60px 0 30px;
        }

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

        .footer-column h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all var(--transition-normal);
        }

        .footer-links a:hover {
            color: var(--primary-color);
            padding-left: 5px;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Mobile CTA - Улучшенный */
        /* ⚙️ СТАТУС: ОТКЛЮЧЕН - Для активации уберите display: none !important; ниже */
        .mobile-cta-fixed {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1001;
            display: none !important; /* ❌ ОТКЛЮЧЕНО: Для активации уберите !important или закомментируйте эту строку */
            animation: slideInUp 0.3s ease;
        }

        .cta-container {
            background: var(--white);
            border-radius: 50px;
            padding: 10px;
            box-shadow: var(--shadow-xl);
            display: flex;
            gap: 10px;
            align-items: center;
        }

        .cta-button {
            padding: 12px 25px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all var(--transition-normal);
        }

        .cta-button.primary {
            background: var(--gradient-primary);
            color: var(--white);
        }

        .cta-button.secondary {
            background: var(--light-bg);
            color: var(--primary-color);
        }

        /* Notification */
        .notification {
            position: fixed;
            top: 100px;
            right: 20px;
            background: var(--white);
            border-radius: 10px;
            padding: 20px;
            box-shadow: var(--shadow-xl);
            z-index: 2002;
            display: none;
            max-width: 350px;
            animation: slideInRight 0.3s ease;
            border-left: 4px solid var(--primary-color);
        }

        .notification-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .notification-icon {
            width: 40px;
            height: 40px;
            background: var(--gradient-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 1.2rem;
        }

        /* Progress Bar */
        .progress-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: transparent;
            z-index: 1002;
        }

        .progress-bar {
            height: 100%;
            background: var(--gradient-primary);
            width: 0%;
            transition: width 0.3s ease;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .process-timeline {
                flex-direction: column;
                gap: 40px;
            }
            
            .process-timeline:before {
                display: none;
            }

            .nav-menu {
                gap: 5px;
            }

            .nav-menu a {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 150px 0 80px;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-cta {
                flex-direction: column;
                align-items: center;
            }
            
            .btn {
                width: 100%;
                max-width: 300px;
            }
            
            
            .comparison-header {
                display: none;
            }
            
            .comparison-body {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .comparison-row {
                display: flex !important;
                flex-direction: column;
                background: var(--white);
                border: 2px solid var(--border-color);
                border-radius: 12px;
                overflow: hidden;
                box-shadow: var(--shadow-sm);
                margin-bottom: 0;
            }
            
            .comparison-cell {
                padding: 12px 15px;
                border-bottom: 1px solid var(--border-color);
                border-right: none !important;
                display: flex !important;
                align-items: center;
                justify-content: space-between;
                width: 100%;
            }
            
            .comparison-cell:first-child {
                background: var(--gradient-primary);
                color: var(--white);
                font-weight: 700;
                font-size: 1.05rem;
                justify-content: center;
                text-align: center;
                padding: 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }
            
            .comparison-cell:nth-child(2) {
                padding-left: 20px;
            }
            
            .comparison-cell:nth-child(2)::before {
                content: "Инъекционная:";
                font-weight: 600;
                color: var(--text-dark);
                margin-right: 15px;
                min-width: 140px;
                font-size: 0.9rem;
                flex-shrink: 0;
            }
            
            .comparison-cell:nth-child(3) {
                padding-left: 20px;
            }
            
            .comparison-cell:nth-child(3)::before {
                content: "Dermadrop TDA™:";
                font-weight: 600;
                color: var(--text-dark);
                margin-right: 15px;
                min-width: 140px;
                font-size: 0.9rem;
                flex-shrink: 0;
            }
            
            .comparison-cell:last-child {
                border-bottom: none;
            }
            
            .comparison-cell i {
                flex-shrink: 0;
            }

            
            .serums-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .serum-card {
                padding: 25px 20px;
            }
            
            .serum-card h3 {
                font-size: 1.4rem;
            }
            
            .serum-card .serum-price {
                font-size: 1.6rem;
            }
            
            .specialists-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .specialist-image {
                height: 250px;
            }
            
            .faq-question {
                padding: 15px 20px;
                font-size: 1rem;
            }
            
            .serum-card .serum-popular {
                font-size: 0.75rem;
                padding: 5px 12px;
                margin-left: 5px;
            }
            
            .serum-card .serum-popular {
                font-size: 0.75rem;
                padding: 5px 12px;
                margin-left: 5px;
            }
            
            .calculator-controls {
                grid-template-columns: 1fr;
            }

            .calculator {
                padding: 25px 20px;
            }

            .smart-form {
                padding: 25px 20px;
            }
            
            .cta-container {
                flex-direction: column;
                width: 90vw;
            }
            
            .modal-content,
            .exit-popup {
                padding: 20px;
            }

            /* Мобильное меню */
            .main-nav {
                position: relative;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                align-items: stretch;
                padding: 20px;
                box-shadow: var(--shadow-xl);
                max-height: 0;
                overflow: hidden;
                opacity: 0;
                transition: all var(--transition-normal);
                z-index: 999;
                gap: 0;
            }

            .nav-menu.active {
                max-height: 500px;
                opacity: 1;
            }

            .nav-menu li {
                border-bottom: 1px solid var(--border-color);
            }

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

            .nav-menu a {
                padding: 15px 20px;
                display: block;
                width: 100%;
            }

            .nav-menu a:after {
                display: none;
            }

            .hidden-mobile {
                display: none !important;
            }

            .contact-grid {
                grid-template-columns: 1fr;
            }

            .map-container {
                height: 350px;
            }

        }

        @media (max-width: 480px) {
            .serums-grid {
                gap: 15px;
            }
            
            .serum-card {
                padding: 20px 15px;
            }
            
            .serum-card h3 {
                font-size: 1.2rem;
            }
            
            .serum-card .serum-price {
                font-size: 1.4rem;
            }
            
            .serum-card .serum-popular {
                font-size: 0.7rem;
                padding: 4px 10px;
                margin-left: 0;
                display: block;
                margin-top: 5px;
            }
            
            .serum-card ul li {
                font-size: 0.9rem;
            }
            
            .specialist-image {
                height: 200px;
            }
            
            .specialist-info {
                padding: 20px;
            }
            
            .specialist-name {
                font-size: 1.3rem;
            }
            
            .faq-question {
                padding: 12px 15px;
                font-size: 0.95rem;
            }
            
            .faq-answer {
                padding: 0 15px;
            }
            
            .faq-item.active .faq-answer {
                padding: 0 15px 12px;
            }
            
            .faq-answer p {
                font-size: 0.9rem;
            }
            
            .usp-container {
                flex-direction: column;
                gap: 10px;
            }
            
            .proof-grid {
                grid-template-columns: 1fr;
            }
            
            .timer-display {
                gap: 10px;
            }
            
            .timer-value {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }

            .timer-container {
                padding: 15px;
            }

            .timer-title {
                font-size: 1rem;
                margin-bottom: 10px;
            }

            .contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .map-container {
                height: 300px;
            }

            /* Виджеты на мобильных */
            .yclients-widget-wrapper {
                bottom: 100px;
                right: 10px;
            }

            #chatovkrkxjrjjsnaqlrovozomwmtp {
                bottom: 15px !important;
                left: 10px !important;
            }
        }

        /* Виджеты в углах экрана */
        .widget-container {
            position: fixed;
            z-index: 998;
            pointer-events: none;
        }

        /* YClients виджет - нижний правый угол */
        .yclients-widget-wrapper {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 998;
            pointer-events: none;
        }

        .yclients-widget-wrapper > *,
        .yclients-widget-wrapper iframe,
        .yclients-widget-wrapper div {
            pointer-events: all !important;
            border-radius: 15px !important;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
        }

        /* Стили для элементов YClients которые создаются динамически */
        [id*="yclients"],
        [class*="yclients"],
        iframe[src*="yclients"] {
            border-radius: 15px !important;
            box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
        }

        /* Wahelp виджет - нижний левый угол */
        #chatovkrkxjrjjsnaqlrovozomwmtp {
            position: fixed !important;
            bottom: 20px !important;
            left: 20px !important;
            z-index: 998 !important;
        }

        /* Убеждаемся что виджеты не перекрывают друг друга */
        @media (max-width: 768px) {
            .yclients-widget-wrapper {
                bottom: 90px;
            }

            #chatovkrkxjrjjsnaqlrovozomwmtp {
                bottom: 20px !important;
            }
        }

        /* Контактная информация */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .contact-info h3 {
            color: var(--dark-color);
            margin-bottom: 25px;
            font-size: 1.8rem;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-details p {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
            color: var(--text-dark);
            font-size: 1rem;
        }

        .contact-details p a {
            color: var(--text-dark);
            text-decoration: none;
            transition: all var(--transition-normal);
            border-bottom: 1px solid transparent;
        }

        .contact-details p a:hover {
            color: var(--primary-color);
            border-bottom-color: var(--primary-color);
        }

        .contact-details i {
            color: var(--primary-color);
            font-size: 1.2rem;
            width: 20px;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: var(--gradient-primary);
            color: var(--white);
            border-radius: 50%;
            text-decoration: none;
            transition: all var(--transition-normal);
            font-size: 1.2rem;
        }

        .social-link:hover {
            transform: translateY(-3px) scale(1.1);
            box-shadow: var(--shadow-lg);
        }

        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            height: 400px;
        }

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

        /* Видео контейнер */
        .video-container {
            max-width: 1000px;
            margin: 40px auto;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            background: var(--white);
            padding: 20px;
            animation: fadeInUp 0.8s ease-out;
        }

        .video-container::before {
            content: '';
            display: block;
            padding-bottom: 56.25%; /* 16:9 соотношение сторон */
        }

        .video-container iframe {
            position: absolute;
            top: 20px;
            left: 20px;
            width: calc(100% - 40px);
            height: calc(100% - 40px);
            border-radius: 15px;
            border: none;
        }

        @media (max-width: 768px) {
            .video-container {
                padding: 15px;
                margin: 30px auto;
            }

            .video-container::before {
                padding-bottom: 56.25%;
            }

            .video-container iframe {
                top: 15px;
                left: 15px;
                width: calc(100% - 30px);
                height: calc(100% - 30px);
            }
        }

        /* Utility Classes */
        .text-center { text-align: center; }
        .text-primary { color: var(--primary-color); }
        .text-medium { color: var(--text-medium); }
        .text-gradient {
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .mb-1 { margin-bottom: 10px; }
        .mb-2 { margin-bottom: 20px; }
        .mb-3 { margin-bottom: 30px; }
        .mb-4 { margin-bottom: 40px; }
        .mt-1 { margin-top: 10px; }
        .mt-2 { margin-top: 20px; }
        .mt-3 { margin-top: 30px; }
        .mt-4 { margin-top: 40px; }
        .hidden { display: none; }
        .visible { display: block; }
  .yButton.right {
  left: 30px !important;
}
.w-100{width:100%;}