        /* Глобальные переменные */
        :root {
            --primary-green-light: #e8f3e8;
            --primary-green-soft: #d4e9d4;
            --primary-green-medium: #5fa777;
            --primary-green-dark: #2c5e3a;
            --accent-green: #4caf7f;
            
            --program-stroinost: #4caf7f;
            --program-stroinost-light: #e8f5e9;
            --program-tonus: #ff9800;
            --program-tonus-light: #fff3e0;
            --program-detox: #00bcd4;
            --program-detox-light: #e0f7fa;
            --program-antistress: #9c27b0;
            --program-antistress-light: #f3e5f5;
            --program-discount: #2196f3;
            --program-discount-light: #e3f2fd;
            --program-future: #e0e0e0;
            
            --text-dark: #1a202c;
            --text-medium: #4a5568;
            --text-light: #718096;
            --white: #ffffff;
            --shadow-light: rgba(0, 0, 0, 0.05);
            --shadow-medium: rgba(0, 0, 0, 0.1);
            --shadow-dark: rgba(0, 0, 0, 0.15);
            
            --shape-1: rgba(76, 175, 127, 0.1);
            --shape-2: rgba(255, 152, 0, 0.1);
            --shape-3: rgba(33, 150, 243, 0.1);
            --shape-4: rgba(156, 39, 176, 0.1);
            --shape-5: rgba(0, 188, 212, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--text-dark);
            line-height: 1.5;
            background-color: var(--white);
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
        }

        /* Shape фоны */
        .shape-1 {
            position: relative;
            overflow: hidden;
        }
        
        .shape-1::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--shape-1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .shape-1::after {
            content: '';
            position: absolute;
            bottom: -20%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--shape-2) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .shape-2 {
            position: relative;
            overflow: hidden;
        }
        
        .shape-2::before {
            content: '';
            position: absolute;
            top: 20%;
            right: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--shape-3) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }
        
        .shape-3 {
            position: relative;
            overflow: hidden;
        }
        
        .shape-3::before {
            content: '';
            position: absolute;
            bottom: 10%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, var(--shape-4) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        /* Главный экран разделенный пополам */
        .hero-split {
            display: flex;
            min-height: 100vh;
            background: linear-gradient(145deg, var(--primary-green-light) 0%, var(--primary-green-soft) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero-split::before {
            content: '';
            position: absolute;
            top: -20%;
            right: -5%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(76, 175, 127, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-split::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(44, 94, 58, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-left {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center; /* Изменено на center для горизонтального центрирования */
            padding: 0 60px;
            position: relative;
            z-index: 2;
        }

        .hero-left-content {
            max-width: 600px;
            width: 100%; /* Добавлено для лучшего контроля */
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 50px;
            margin-bottom: 30px;
            border: 1px solid rgba(76, 175, 127, 0.3);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        }

        .hero-badge i {
            color: var(--accent-green);
            font-size: 1.2rem;
        }

        .hero-badge span {
            color: var(--primary-green-dark);
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        .hero-left-content h1 {
            color: var(--primary-green-dark);
            margin-bottom: 20px;
            font-size: 3.5rem;
            line-height: 1.2;
            font-weight: 800;
        }

        .hero-left-content h1 .highlight {
            color: var(--accent-green);
            position: relative;
            display: inline-block;
        }

        .hero-left-content h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 12px;
            background: rgba(76, 175, 127, 0.2);
            z-index: -1;
            border-radius: 6px;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: var(--text-medium);
            line-height: 1.6;
        }

        .hero-stats {
            display: flex;
            gap: 50px;
            margin-bottom: 50px;
        }

        .stat-item {
            text-align: left;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-green-dark);
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-label {
            color: var(--text-light);
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        .hero-cta {
            display: flex;
            gap: 20px;
        }

        .hero-right {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
            z-index: 2;
        }

        /* Мозаика плиток на первом экране */
        .hero-mosaic {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            width: 100%;
            max-width: 720px;
        }

        .hero-tile {
            aspect-ratio: 1 / 1;
            border-radius: 30px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 20px 35px rgba(0, 0, 0, 0.15);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            text-decoration: none;
            color: white;
        }

        .hero-tile:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 30px 45px rgba(0, 0, 0, 0.2);
        }

        .hero-tile:nth-child(1) {
            background: linear-gradient(145deg, var(--program-stroinost), #2e7d5e);
        }
        .hero-tile:nth-child(2) {
            background: linear-gradient(145deg, var(--program-tonus), #f57c00);
        }
        .hero-tile:nth-child(3) {
            background: linear-gradient(145deg, var(--program-detox), #0097a7);
        }
        .hero-tile:nth-child(4) {
            background: linear-gradient(145deg, var(--program-antistress), #7b1fa2);
        }
        .hero-tile:nth-child(5) {
            background: linear-gradient(145deg, #2f8f83, #1e6f6f);
        }
        .hero-tile:nth-child(6) {
            background: linear-gradient(145deg, var(--program-discount), #1976d2);
        }

        .tile-content {
            position: relative;
            width: 100%;
            height: 100%;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            z-index: 2;
        }

        .tile-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.2;
            mix-blend-mode: overlay;
            transition: opacity 0.3s;
        }

        .hero-tile:hover .tile-bg {
            opacity: 0.3;
        }

        .short-tour-tile .tile-bg {
            opacity: 0.55;
            mix-blend-mode: normal;
            filter: brightness(0.72) saturate(0.95);
        }

        .short-tour-tile:hover .tile-bg {
            opacity: 0.68;
        }

        .tile-icon {
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(5px);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 10px;
            font-size: 1.3rem;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .tile-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 5px;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }

        .tile-desc {
            font-size: 0.8rem;
            opacity: 0.9;
            margin-bottom: 10px;
        }

        .tile-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: rgba(255, 215, 0, 0.9);
            color: #1a1a1a;
            font-size: 0.7rem;
            font-weight: 700;
            padding: 4px 10px;
            border-radius: 20px;
            z-index: 5;
            backdrop-filter: blur(5px);
        }

        .tile-price {
            font-size: 1.1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .tile-price small {
            font-size: 0.7rem;
            font-weight: 400;
            opacity: 0.8;
        }

        /* Мозаика программ (основная) */
        .programs-mosaic {
            padding: 100px 0;
            background-color: var(--white);
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .section-header h2 {
            color: var(--primary-green-dark);
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-header p {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .mosaic-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .mosaic-item {
            position: relative;
            border-radius: 30px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 15px 30px var(--shadow-medium);
            aspect-ratio: 1 / 1;
            text-decoration: none;
            color: white;
            display: block;
        }

        .mosaic-item:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 30px 50px var(--shadow-dark);
            z-index: 10;
        }

        .mosaic-card {
            position: relative;
            height: 100%;
            width: 100%;
            padding: 30px 25px;
            display: flex;
            flex-direction: column;
            background-size: cover;
            background-position: center;
        }

        .mosaic-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to top, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.22) 100%);
            z-index: 1;
        }

        .mosaic-item:nth-child(1) .mosaic-card::before {
            background: linear-gradient(145deg, rgba(46,125,94,0.86), rgba(76,175,127,0.46)), linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.18));
        }

        .mosaic-item:nth-child(2) .mosaic-card::before {
            background: linear-gradient(145deg, rgba(245,124,0,0.84), rgba(255,152,0,0.44)), linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.18));
        }

        .mosaic-item:nth-child(3) .mosaic-card::before {
            background: linear-gradient(145deg, rgba(0,151,167,0.86), rgba(0,188,212,0.44)), linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.18));
        }

        .mosaic-item:nth-child(4) .mosaic-card::before {
            background: linear-gradient(145deg, rgba(123,31,162,0.86), rgba(156,39,176,0.44)), linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.18));
        }

        .mosaic-item:nth-child(5) .mosaic-card::before {
            background: linear-gradient(145deg, rgba(30,111,111,0.86), rgba(47,143,131,0.44)), linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.18));
        }

        .mosaic-item:nth-child(6) .mosaic-card::before {
            background: linear-gradient(145deg, rgba(25,118,210,0.86), rgba(33,150,243,0.44)), linear-gradient(to top, rgba(0,0,0,0.72), rgba(0,0,0,0.18));
        }

        .mosaic-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            filter: blur(3px) brightness(0.72) saturate(0.95);
            transform: scale(1.04);
            z-index: 0;
        }

        .mosaic-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .mosaic-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            color: white;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 5px 15px;
            border-radius: 30px;
            z-index: 3;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .mosaic-badge-gold {
            background: rgba(255, 215, 0, 0.9);
            color: #1a1a1a;
        }

        .mosaic-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 2rem;
            color: white;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .mosaic-card h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .mosaic-card p {
            font-size: 0.9rem;
            margin-bottom: 20px;
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.5;
            flex: 1;
        }

        .mosaic-features {
            display: flex;
            gap: 10px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .mosaic-features span {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(5px);
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.8rem;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        .mosaic-price {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 5px;
        }

        .mosaic-price::after {
            content: '₽';
            font-size: 1rem;
            margin-left: 3px;
            opacity: 0.9;
        }

        .mosaic-discount {
            background: rgba(255, 215, 0, 0.9);
            color: #1a1a1a;
            font-size: 1.1rem;
            font-weight: 800;
            padding: 6px 15px;
            border-radius: 40px;
            margin: 10px 0 15px;
            display: inline-block;
            width: fit-content;
        }

        .mosaic-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: white;
            font-weight: 600;
            font-size: 0.9rem;
            margin-top: auto;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
            width: fit-content;
        }

        .mosaic-link i {
            transition: transform 0.3s;
        }

        .mosaic-item:hover .mosaic-link {
            border-bottom-color: white;
        }

        .mosaic-item:hover .mosaic-link i {
            transform: translateX(8px);
        }

        /* Креативный блок преимуществ */
        .advantages-creative {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8faf8 0%, var(--white) 100%);
            position: relative;
        }

        .advantages-grid-creative {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-top: 50px;
            position: relative;
            z-index: 2;
        }

        .advantage-circle-card {
            background: white;
            border-radius: 40px;
            padding: 40px 35px;
            display: flex;
            align-items: center;
            gap: 30px;
            box-shadow: 0 25px 50px -10px rgba(0, 0, 0, 0.1);
            transition: all 0.4s;
            border: 1px solid rgba(76, 175, 127, 0.2);
            position: relative;
            overflow: hidden;
        }

        .advantage-circle-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(76, 175, 127, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .advantage-circle-card:hover {
            transform: translateX(10px) scale(1.02);
            box-shadow: 0 30px 60px -10px rgba(76, 175, 127, 0.2);
            border-color: var(--accent-green);
        }

        .advantage-circle-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(145deg, var(--accent-green), var(--primary-green-dark));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
            flex-shrink: 0;
            box-shadow: 0 20px 30px rgba(76, 175, 127, 0.3);
            position: relative;
            z-index: 2;
            transition: all 0.4s;
        }

        .advantage-circle-card:hover .advantage-circle-icon {
            transform: rotate(360deg);
            box-shadow: 0 25px 40px rgba(76, 175, 127, 0.4);
        }

        .advantage-circle-content {
            position: relative;
            z-index: 2;
        }

        .advantage-circle-content h3 {
            font-size: 1.8rem;
            margin-bottom: 10px;
            color: var(--primary-green-dark);
            font-weight: 700;
        }

        .advantage-circle-content p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 1rem;
        }

        .advantage-number {
            position: absolute;
            bottom: 20px;
            right: 30px;
            font-size: 5rem;
            font-weight: 800;
            color: rgba(76, 175, 127, 0.1);
            line-height: 1;
            z-index: 1;
        }

        /* Кнопки */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 1rem;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .btn-primary {
            background: linear-gradient(145deg, var(--accent-green), var(--primary-green-dark));
            color: var(--white);
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 30px rgba(76, 175, 127, 0.3);
        }

        .btn-secondary {
            background: white;
            color: var(--primary-green-dark);
            border: 2px solid var(--accent-green);
            box-shadow: none;
        }

        .btn-secondary:hover {
            background: var(--accent-green);
            color: white;
            transform: translateY(-5px);
        }

        /* FAQ */
        .faq {
            padding: 80px 0;
            background-color: var(--white);
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            margin-bottom: 15px;
            border-radius: 30px;
            overflow: hidden;
            box-shadow: 0 5px 20px var(--shadow-light);
            border: 1px solid rgba(76, 175, 127, 0.2);
            background: white;
        }

        .faq-question {
            padding: 25px 30px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
            color: var(--primary-green-dark);
            font-size: 1.1rem;
        }

        .faq-question:hover {
            background: var(--primary-green-light);
        }

        .faq-question i {
            transition: transform 0.3s;
            color: var(--accent-green);
            font-size: 1.2rem;
        }

        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s, padding 0.3s;
        }

        .faq-item.active .faq-question {
            background: var(--primary-green-light);
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
            padding: 0 30px 25px;
        }

        .faq-answer p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* Адаптивность */
        @media (max-width: 1200px) {
            .hero-left-content h1 {
                font-size: 3rem;
            }
            
            .mosaic-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .hero-split {
                flex-direction: column;
                min-height: auto;
            }
            
            .hero-left {
                padding: 80px 40px 40px;
                justify-content: center; /* Центрирование для мобильных */
            }
            
            .hero-right {
                padding: 20px 40px 60px;
            }
            
            .hero-mosaic {
                max-width: 100%;
            }
            
            .advantages-grid-creative {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .hero-left {
                padding: 60px 20px 30px;
            }
            
            .hero-left-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-stats {
                gap: 30px;
                flex-wrap: wrap;
            }
            
            .hero-cta {
                flex-direction: column;
            }
            
            .mosaic-grid {
                grid-template-columns: 1fr;
            }
            
            .advantage-circle-card {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
            }
            
            .advantage-number {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .hero-mosaic {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) and (min-width: 481px) {
            .hero-mosaic {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        /* Анимация появления */
        .fade-in-up {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        .mosaic-item, .advantage-circle-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
