
        /* ===== RESET & BASE ===== */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --bg-cream: #FAF7F2;
            --bg-warm: #F5F0E8;
            --bg-card: #FFFFFF;
            --green-accent: #8FB996;
            --green-light: #B5D4BB;
            --green-dark: #6A9A72;
            --green-muted: #D4E7D8;
            --text-dark: #3A3A3A;
            --text-medium: #6B6B6B;
            --text-light: #9A9A9A;
            --warm-accent: #D4A97A;
            --warm-light: #E8D5BE;
            --border-light: #E8E0D5;
            --shadow-sm: 0 2px 8px rgba(58, 58, 58, 0.06);
            --shadow-md: 0 4px 20px rgba(58, 58, 58, 0.08);
            --shadow-lg: 0 8px 40px rgba(58, 58, 58, 0.1);
            --radius-sm: 12px;
            --radius-md: 20px;
            --radius-lg: 30px;
        }

        html {
            scroll-behavior: smooth;
            font-size: 16px;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--bg-cream);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
        }

        h1, h2, h3, h4 {
            font-family: 'Cormorant Garamond', serif;
            font-weight: 600;
            line-height: 1.3;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== HEADER / NAV ===== */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(250, 247, 242, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(232, 224, 213, 0.5);
            transition: all 0.3s ease;
        }

        .header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--green-accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo-icon::before {
            content: '‍♀️';
            font-size: 22px;
        }

        .logo-text {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--green-accent);
            letter-spacing: 0.02em;
        }

        .nav {
            display: flex;
            align-items: center;
            gap: 36px;
        }

        .nav a.nav-link {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.82rem;
            font-weight: 500;
            color: var(--text-medium);
            letter-spacing: 0.08em;
            text-transform: uppercase;
            position: relative;
            padding: 4px 0;
        }

        .nav a.nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--green-accent);
            border-radius: 2px;
            transition: width 0.3s ease;
        }

        .nav a.nav-link:hover {
            color: var(--green-dark);
        }

        .nav a.nav-link:hover::after {
            width: 100%;
        }

        .btn-login {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 36px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.82rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            cursor: pointer;
            border: none;
            background: var(--green-accent);
            color: #fff;
            transition: all 0.3s ease;
        }

        .btn-login:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(143, 185, 150, 0.4);
        }

        /* ===== MOBILE MENU ===== */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            background: none;
            border: none;
        }

        .mobile-toggle span {
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            padding: 160px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--green-muted) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0.5;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--warm-light) 0%, transparent 70%);
            border-radius: 50%;
            opacity: 0.4;
        }

        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 1s ease;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--green-muted);
            color: var(--green-dark);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        .hero-badge::before {
            content: '';
            width: 8px;
            height: 8px;
            background: var(--green-accent);
            border-radius: 50%;
        }

        .hero h1 {
            font-size: 3.8rem;
            color: var(--text-dark);
            margin-bottom: 20px;
            line-height: 1.15;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--green-accent);
        }

        .hero-description {
            font-size: 1.05rem;
            color: var(--text-medium);
            line-height: 1.8;
            margin-bottom: 36px;
            max-width: 480px;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 14px 32px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            letter-spacing: 0.03em;
            cursor: pointer;
            border: none;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--green-accent);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--green-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(143, 185, 150, 0.4);
        }

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

        .btn-outline:hover {
            background: var(--green-accent);
            color: #fff;
            transform: translateY(-2px);
        }

        .btn-large {
            padding: 16px 40px;
            font-size: 0.95rem;
        }

        .hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 50px;
            padding-top: 40px;
            border-top: 1px solid var(--border-light);
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-family: 'Cormorant Garamond', serif;
            font-size: 2.4rem;
            font-weight: 600;
            color: var(--green-dark);
            line-height: 1;
        }

        .stat-label {
            font-size: 0.75rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-top: 6px;
        }

        .hero-image {
            position: relative;
            animation: fadeIn 1.2s ease 0.3s both;
        }

        .hero-image-wrapper {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 4 / 5;
            background: linear-gradient(135deg, var(--green-muted) 0%, var(--warm-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-image-placeholder {
            font-size: 8rem;
            opacity: 0.6;
            user-select: none;
        }

        .hero-image-float {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: var(--bg-card);
            padding: 20px 28px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .float-icon {
            width: 48px;
            height: 48px;
            background: var(--green-muted);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
        }

        .float-text strong {
            display: block;
            font-size: 0.9rem;
            color: var(--text-dark);
        }

        .float-text span {
            font-size: 0.78rem;
            color: var(--text-light);
        }

        /* ===== SECTION COMMON ===== */
        .section {
            padding: 100px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-label {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--green-accent);
            margin-bottom: 12px;
        }

        .section-title {
            font-size: 2.8rem;
            color: var(--text-dark);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 1rem;
            color: var(--text-medium);
            max-width: 560px;
            margin: 0 auto;
            line-height: 1.8;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            background: var(--bg-warm);
        }

        .about .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            aspect-ratio: 3 / 4;
            background: linear-gradient(160deg, var(--green-muted) 0%, var(--warm-light) 50%, var(--green-light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            opacity: 0.5;
            position: relative;
        }

        .about-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border: 2px solid rgba(255,255,255,0.3);
            border-radius: var(--radius-lg);
        }

        .about-content .section-label {
            text-align: left;
        }

        .about-content .section-title {
            text-align: left;
            font-size: 2.4rem;
        }

        .about-text {
            color: var(--text-medium);
            margin-bottom: 24px;
            line-height: 1.9;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin: 36px 0;
        }

        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .highlight-dot {
            width: 10px;
            height: 10px;
            background: var(--green-accent);
            border-radius: 50%;
            margin-top: 6px;
            flex-shrink: 0;
        }

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

        .highlight-text strong {
            display: block;
            color: var(--text-dark);
            font-weight: 600;
            margin-bottom: 2px;
        }

        /* ===== CATEGORIES ===== */
        .categories {
            background: var(--bg-warm);
        }

        .level-tabs {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-bottom: 50px;
        }

        .level-tab {
            padding: 12px 32px;
            border-radius: 50px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.85rem;
            font-weight: 500;
            cursor: pointer;
            border: 2px solid var(--border-light);
            background: var(--bg-card);
            color: var(--text-medium);
            transition: all 0.3s ease;
        }

        .level-tab.active {
            background: var(--green-accent);
            border-color: var(--green-accent);
            color: #fff;
        }

        .level-tab:hover:not(.active) {
            border-color: var(--green-accent);
            color: var(--green-dark);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .category-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
            cursor: pointer;
            border: 1px solid transparent;
        }

        .category-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--green-muted);
        }

        .category-thumb {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3.5rem;
            position: relative;
            overflow: hidden;
        }

        .cat-splits-front { background: linear-gradient(135deg, #E8F0E4 0%, #D4E7D8 100%); }
        .cat-backbends { background: linear-gradient(135deg, #F0E8D4 0%, #E8D5BE 100%); }
        .cat-splits-side { background: linear-gradient(135deg, #D4E0E7 0%, #C2D5E0 100%); }
        .cat-hands { background: linear-gradient(135deg, #E7D4D4 0%, #E0C2C2 100%); }
        .cat-flexibility { background: linear-gradient(135deg, #D4E7D8 0%, #B5D4BB 100%); }
        .cat-strength { background: linear-gradient(135deg, #E0D5C2 0%, #D4C4A8 100%); }

        .category-body {
            padding: 24px;
        }

        .category-body h4 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .category-body p {
            font-size: 0.85rem;
            color: var(--text-light);
            line-height: 1.6;
            margin-bottom: 16px;
        }

        .category-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .category-level {
            font-size: 0.72rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            padding: 4px 12px;
            border-radius: 50px;
        }

        .level-beginner {
            background: var(--green-muted);
            color: var(--green-dark);
        }

        .category-link {
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--green-accent);
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .category-link::after {
            content: '→';
            transition: transform 0.3s ease;
        }

        .category-card:hover .category-link::after {
            transform: translateX(4px);
        }

        /* ===== VIDEO SECTION ===== */

        /* Валидация полей */
.form-group input {
    transition: border-color 0.3s, box-shadow 0.3s;
}
.form-group input.error {
    border-color: #E07A7A !important;
    background: #fff5f5;
}
.form-group input.success {
    border-color: #8FB996 !important;
}
.error-message {
    color: #E07A7A;
    font-size: 0.85rem;
    margin-top: 6px;
    display: none;
    animation: shake 0.3s ease-in-out;
}
.error-message.visible {
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
}

/* Кнопка при загрузке */
.btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}


        .videos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .video-card {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s ease;
        }

        .video-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
        }

        .video-thumb {
            position: relative;
            aspect-ratio: 16 / 9;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .video-thumb-bg {
            position: absolute;
            inset: 0;
        }

        .vid-bg-1 { background: linear-gradient(135deg, #B5D4BB 0%, #8FB996 100%); }
        .vid-bg-2 { background: linear-gradient(135deg, #D4A97A 0%, #C49A6A 100%); }
        .vid-bg-3 { background: linear-gradient(135deg, #A8C5D0 0%, #8FB0BE 100%); }

        .play-btn {
            width: 64px;
            height: 64px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .play-btn::after {
            content: '';
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 10px 0 10px 18px;
            border-color: transparent transparent transparent var(--green-accent);
            margin-left: 4px;
        }

        .video-card:hover .play-btn {
            transform: scale(1.1);
        }

        .video-duration {
            position: absolute;
            bottom: 12px;
            right: 12px;
            background: rgba(0,0,0,0.7);
            color: #fff;
            font-size: 0.72rem;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: 6px;
            z-index: 2;
        }

        .video-body {
            padding: 24px;
        }

        .video-tag {
            font-size: 0.7rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.08em;
            color: var(--green-accent);
            margin-bottom: 8px;
        }

        .video-body h4 {
            font-size: 1.2rem;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .video-body p {
            font-size: 0.82rem;
            color: var(--text-light);
        }

        /* ===== BOOKING / CTA ===== */
        .booking {
            background: var(--bg-warm);
        }

        .booking-wrapper {
            background: linear-gradient(135deg, var(--green-accent) 0%, var(--green-dark) 100%);
            border-radius: var(--radius-lg);
            padding: 80px 60px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .booking-wrapper::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 50%;
        }

        .booking-wrapper::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
        }

        .booking-content {
            position: relative;
            z-index: 1;
        }

        .booking-content h2 {
            font-size: 2.6rem;
            color: #fff;
            margin-bottom: 16px;
        }

        .booking-content p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .booking-features {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .booking-feature {
            display: flex;
            align-items: center;
            gap: 12px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .booking-feature::before {
            content: '✓';
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.75rem;
            font-weight: 700;
            flex-shrink: 0;
        }

        .booking-form {
            background: var(--bg-card);
            border-radius: var(--radius-md);
            padding: 40px;
            position: relative;
            z-index: 1;
            box-shadow: var(--shadow-lg);
        }

        .booking-form h3 {
            font-size: 1.6rem;
            color: var(--text-dark);
            margin-bottom: 8px;
            text-align: center;
        }

        .booking-form > p {
            font-size: 0.85rem;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 28px;
        }

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

        .form-group label {
            display: block;
            font-size: 0.8rem;
            font-weight: 500;
            color: var(--text-medium);
            margin-bottom: 6px;
            letter-spacing: 0.02em;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid var(--border-light);
            border-radius: var(--radius-sm);
            font-family: 'Montserrat', sans-serif;
            font-size: 0.9rem;
            color: var(--text-dark);
            background: var(--bg-cream);
            transition: all 0.3s ease;
            outline: none;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--green-accent);
            background: #fff;
            box-shadow: 0 0 0 4px rgba(143, 185, 150, 0.15);
        }

        .form-group input::placeholder {
            color: var(--text-light);
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
        }

        .form-submit {
            width: 100%;
            margin-top: 8px;
            padding: 14px;
            font-size: 0.95rem;
        }

        /* ===== FOOTER ===== */
        .footer {
            background: var(--text-dark);
            color: rgba(255, 255, 255, 0.7);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand .logo-text {
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-brand p {
            font-size: 0.85rem;
            line-height: 1.8;
            max-width: 300px;
        }

        .footer-socials {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            border-radius: 30px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--green-accent);
            transform: translateY(-3px);
        }

        .footer h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.1em;
            color: #fff;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--green-light);
            padding-left: 6px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.8rem;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }

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

            .hero-description {
                margin: 0 auto 36px;
            }

            .hero-buttons {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-image {
                max-width: 400px;
                margin: 0 auto;
            }

            .about .container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-image {
                max-height: 400px;
            }

            .about-content .section-label,
            .about-content .section-title {
                text-align: center;
            }

            .about-text {
                text-align: center;
            }

            .styles-grid,
            .categories-grid,
            .videos-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .booking-wrapper {
                grid-template-columns: 1fr;
                padding: 50px 40px;
            }

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

        @media (max-width: 768px) {
            .nav {
                display: none;
            }

            .mobile-toggle {
                display: flex;
            }

            .hero {
                padding: 130px 0 60px;
            }

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

            .hero-stats {
                gap: 24px;
            }

            .section {
                padding: 70px 0;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .styles-grid,
            .categories-grid,
            .videos-grid {
                grid-template-columns: 1fr;
            }

            .level-tabs {
                flex-wrap: wrap;
            }

            .booking-wrapper {
                padding: 40px 24px;
            }

            .booking-form {
                padding: 28px 20px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 12px;
                text-align: center;
            }
        }

        /* ===== VIDEOS PAGE ===== */
.videos-main {
    padding-top: 80px;
}

.videos-hero {
    background: linear-gradient(135deg, var(--green-muted) 0%, var(--warm-light) 100%);
    padding: 80px 0 60px;
    margin-bottom: 40px;
}

.videos-section {
    padding: 40px 0 100px;
}

.level-content {
    display: none;
}

.level-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.category-section {
    margin-bottom: 80px;
}

.category-section:last-child {
    margin-bottom: 0;
}

.category-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
}

.category-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.category-info {
    flex: 1;
}

.category-title {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.category-desc {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.video-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.video-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-thumb-bg {
    position: absolute;
    inset: 0;
}

.vid-bg-1 { background: linear-gradient(135deg, #B5D4BB 0%, #8FB996 100%); }
.vid-bg-2 { background: linear-gradient(135deg, #D4A97A 0%, #C49A6A 100%); }
.vid-bg-3 { background: linear-gradient(135deg, #A8C5D0 0%, #8FB0BE 100%); }

.play-btn {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.play-btn::after {
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 18px;
    border-color: transparent transparent transparent var(--green-accent);
    margin-left: 4px;
}

.video-card:hover .play-btn {
    transform: scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 6px;
    z-index: 2;
}

.video-body {
    padding: 24px;
}

.video-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-accent);
    margin-bottom: 8px;
    padding: 4px 10px;
    background: var(--green-ultralight);
    border-radius: 50px;
}

.video-body h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    line-height: 1.3;
}

.video-body p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Active nav link */
.nav a.nav-link.active {
    color: var(--green-dark);
}

.nav a.nav-link.active::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .videos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .category-header {
        flex-direction: column;
    }
    
    .category-icon {
        font-size: 2.5rem;
    }
    
    .category-title {
        font-size: 1.6rem;
    }
}

/* ===== STUDIO SECTION ===== */
.studio {
    background: var(--bg-cream);
}

.studio-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: start;
}

.studio-description h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.studio-description > p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.studio-features {
    margin-top: 40px;
    display: grid;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 4px;
}

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

.studio-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--green-muted) 0%, var(--warm-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-image.main {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.image-placeholder {
    font-size: 5rem;
    opacity: 0.6;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    padding: 40px 20px 16px;
    font-size: 0.9rem;
}

/* ===== SCHEDULE SECTION ===== */
.schedule-section {
    background: var(--bg-warm);
    padding: 60px;
    border-radius: var(--radius-lg);
    margin-bottom: 80px;
}

.schedule-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.schedule-grid {
    display: grid;
    gap: 24px;
}

.schedule-card {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 30px;
    align-items: center;
    transition: all 0.3s ease;
}

.schedule-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.schedule-day {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.day-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--warm-accent);
}

.day-time {
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: 500;
}

.schedule-class h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.schedule-class p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* ===== SIMPLE PRICING ===== */
.pricing-simple {
    display: flex;
    justify-content: center;
}

.pricing-box {
    background: linear-gradient(135deg, var(--green-accent) 0%, var(--green-dark) 100%);
    border-radius: var(--radius-lg);
    padding: 60px 50px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: var(--shadow-lg);
}

.pricing-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.pricing-box h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 16px;
}

.pricing-amount {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    line-height: 1;
}

.pricing-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 32px;
}

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

.pricing-list li {
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-box .btn {
    background: #fff;
    color: var(--green-dark);
    width: 100%;
}

.pricing-box .btn:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 1024px) {
    .studio-content {
        grid-template-columns: 1fr;
    }
    
    .schedule-card {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-day {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .studio-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-image.main {
        grid-column: span 1;
    }
    
    .schedule-section {
        padding: 40px 24px;
    }
    
    .pricing-box {
        padding: 40px 30px;
    }
}
/* ===== СТИЛИ МОДАЛЬНОГО ОКНА ПОКУПКИ (ФИРМЕННЫЙ СТИЛЬ) ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(58, 58, 58, 0.45); /* Затемнение заднего фона */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Класс активации окна */
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s;
}

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

.modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
    text-align: center;
}

.modal-field {
    margin-bottom: 18px;
    text-align: left;
}

.modal-field label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-medium);
    margin-bottom: 6px;
}

.modal-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-light);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: #fff;
}

.modal-input:focus {
    border-color: var(--green-accent);
}

select.modal-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'></polyline></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
}

.modal-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.modal-submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--green-dark);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 12px;
}

.modal-submit-btn:hover {
    background: var(--green-accent);
    transform: translateY(-1px);
}