:root {
    --rose: #C4956A;
    --rose-light: #E8D5C0;
    --rose-dark: #8B6F55;
    --cream: #FDF8F3;
    --charcoal: #2C2C2C;
    --gold: #B8943E;
    --soft-pink: #E8C4B8;
    --white: #FFFFFF;
    --transition: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --gutter: 24px;
    --container: 1200px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    overflow-x: hidden;
    width: 100%;
}

.font-serif { font-family: 'Cormorant Garamond', serif; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--rose-light); border-radius: 3px; }

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 var(--gutter);
    width: 100%;
}

@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse-glow { 0%, 100% { box-shadow: 0 0 20px rgba(196,149,106,0.3); } 50% { box-shadow: 0 0 40px rgba(196,149,106,0.5); } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

.animate-fadeInUp { animation: fadeInUp 0.8s ease-out forwards; }
.animate-fadeIn { animation: fadeIn 1s ease-out forwards; }
.animate-float { animation: float 3s ease-in-out infinite; }

.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal.active { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-60px); transition: all 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-left.active { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(60px); transition: all 0.8s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-right.active { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 0; transform: scale(0.9); transition: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94); }
.reveal-scale.active { opacity: 1; transform: scale(1); }

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(253,248,243,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 20px rgba(0,0,0,0.05);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 8px; text-decoration: none; }
.nav-logo-img { height: 84px; width: auto; max-width: 280px; }
.logo-mark {
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem; font-weight: 700; line-height: 1;
}
.logo-text { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: var(--charcoal); letter-spacing: 0.05em; }
.logo-dot { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 0.82rem; font-weight: 500; color: var(--charcoal); text-decoration: none; letter-spacing: 0.03em; transition: color 0.3s ease; position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1.5px; background: var(--rose); transition: width 0.3s ease; }
.nav-link:hover { color: var(--rose); }
.nav-link:hover::after { width: 100%; }
.nav-cta { display: inline-flex; align-items: center; gap: 8px; padding: 10px 24px; background: linear-gradient(135deg, var(--rose), var(--rose-dark)); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; border-radius: 50px; cursor: pointer; text-decoration: none; transition: all 0.3s ease; }
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,149,106,0.3); }
.nav-burger { display: none; background: none; border: none; cursor: pointer; color: var(--charcoal); padding: 4px; }

/* ===== HERO ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: linear-gradient(160deg, #FDF8F3 0%, #F5E6D8 30%, #E8D5C0 60%, #D4B896 100%); }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 40%, rgba(196,149,106,0.12) 0%, transparent 60%); }
.hero-glow { position: absolute; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(196,149,106,0.12) 0%, transparent 70%); top: 15%; right: 5%; animation: float 6s ease-in-out infinite; }
.hero-glow-2 { position: absolute; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(184,148,62,0.08) 0%, transparent 70%); bottom: 15%; left: 10%; animation: float 8s ease-in-out infinite reverse; }

.hero-inner {
    position: relative; z-index: 10;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
    align-items: center;
    padding-top: 128px;
    padding-bottom: 160px;
}
.hero-content { grid-column: span 6; }
.hero-image-col { grid-column: span 6; display: block; }

.hero-line { width: 60px; height: 2px; background: linear-gradient(90deg, var(--rose), var(--gold)); margin-bottom: 1.2rem; }
.hero-subtitle { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--rose); margin-bottom: 1.5rem; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; color: var(--charcoal); margin-bottom: 1.5rem; }
.hero-title-accent { background: linear-gradient(135deg, var(--rose), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero-desc { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: #6b7280; line-height: 1.7; max-width: 520px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; }

.hero-image-wrapper { position: relative; border-radius: 28px; overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.1); width: 100%; max-height: 520px; aspect-ratio: 3/4; }
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); border-radius: 16px; padding: 16px 20px; box-shadow: 0 12px 40px rgba(0,0,0,0.08); animation: float 3s ease-in-out infinite; display: flex; align-items: center; gap: 12px; }
.hero-badge-icon { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--rose), var(--gold)); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; color: var(--white); }
.hero-badge-text strong { display: block; font-size: 0.85rem; color: var(--charcoal); }
.hero-badge-text span { font-size: 0.75rem; color: #888; }

/* ===== BUTTONS ===== */
.btn-telegram { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: linear-gradient(135deg, #2AABEE, #1E88C9); color: var(--white); font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; border-radius: 50px; cursor: pointer; transition: all 0.4s ease; text-decoration: none; white-space: nowrap; overflow: hidden; }
.btn-telegram:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(42,171,238,0.35); }
.btn-telegram svg { transition: transform 0.3s ease; }
.btn-telegram:hover svg { transform: translateX(3px); }
.btn-outline { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; background: transparent; color: var(--charcoal); font-family: 'Montserrat', sans-serif; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: 2px solid var(--rose-light); border-radius: 50px; cursor: pointer; transition: all 0.4s ease; text-decoration: none; white-space: nowrap; }
.btn-outline:hover { background: var(--rose); color: var(--white); border-color: var(--rose); transform: translateY(-2px); }

/* ===== SECTION COMMON ===== */
.section-divider { width: 50px; height: 2px; background: linear-gradient(90deg, var(--rose), var(--gold)); }
.section-divider-center { margin: 0 auto 1.5rem; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 1rem; }
.section-subtitle { color: #888; font-weight: 300; max-width: 600px; margin: 0 auto; font-size: 0.95rem; }
.section-padding { padding: 80px 0; }
.section-padding-lg { padding: 100px 0; }
.bg-white { background: var(--white); }

/* ===== ABOUT ===== */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 64px;
    align-items: start;
}
.about-text-col { grid-column: span 1; }
.about-instructor-col { grid-column: span 1; }

.about-text-1 { color: #555; line-height: 1.8; font-size: clamp(0.95rem, 1.5vw, 1.1rem); font-weight: 300; margin-bottom: 1.5rem; }
.about-text-1 strong { color: var(--charcoal); font-weight: 500; }
.about-text-2 { color: #888; line-height: 1.8; margin-bottom: 2.5rem; font-size: 0.95rem; }

.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 2.5rem; }
.stat-card { background: var(--white); border-radius: 18px; padding: 20px; border: 1px solid var(--rose-light); }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; font-weight: 700; background: linear-gradient(135deg, var(--rose), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.82rem; color: #888; margin-top: 4px; }

/* ===== INSTRUCTOR ===== */
.instructor-card { position: relative; border-radius: 28px; overflow: hidden; background: var(--white); box-shadow: 0 24px 64px rgba(0,0,0,0.07); }
.instructor-img-wrapper { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; }
.instructor-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; display: block; }
.instructor-card:hover .instructor-img-wrapper img { transform: scale(1.03); }
.instructor-img-gradient { position: absolute; bottom: 0; left: 0; right: 0; height: 40%; background: linear-gradient(to top, rgba(44,44,44,0.6), transparent); pointer-events: none; }
.instructor-body { padding: 24px 28px 28px; }
.instructor-label { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 8px; }
.instructor-name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 4px; }
.instructor-instagram { color: var(--rose); font-size: 0.85rem; font-weight: 500; text-decoration: none; display: inline-block; margin-bottom: 12px; }
.instructor-instagram:hover { text-decoration: underline; }
.achievement-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.achievement-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: var(--cream); border-radius: 50px; font-size: 0.78rem; font-weight: 500; color: var(--rose-dark); border: 1px solid var(--rose-light); transition: all 0.3s ease; }
.achievement-badge:hover { background: var(--rose); color: var(--white); border-color: var(--rose); transform: translateY(-2px); }

/* ===== INCLUDES ===== */
.includes-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.include-item { display: flex; align-items: flex-start; gap: 16px; padding: 1.5rem; background: var(--white); border-radius: 16px; border: 1px solid rgba(196,149,106,0.08); transition: all 0.3s ease; }
.include-item:hover { transform: translateX(8px); box-shadow: 0 8px 30px rgba(196,149,106,0.08); border-color: var(--rose-light); }
.include-icon { flex-shrink: 0; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--cream), var(--rose-light)); border-radius: 14px; font-size: 1.3rem; }
.include-item h3, .include-item .include-item-title { font-weight: 600; margin-bottom: 4px; font-size: 0.95rem; }
.include-item p { font-size: 0.85rem; color: #888; line-height: 1.5; }

/* ===== GALLERY ===== */
.gallery-grid { display: grid; gap: 16px; }
.result-card { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 1/1; cursor: pointer; background: linear-gradient(135deg, #F5E6D8, #E8D5C0); }
.result-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; display: block; }
.result-card:hover img { transform: scale(1.08); }
.result-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,44,44,0.7) 0%, transparent 60%); opacity: 0; transition: opacity 0.4s ease; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; padding: 1.5rem; }
.result-card:hover .result-overlay { opacity: 1; }
.result-overlay .result-title { color: var(--white); font-size: 0.9rem; font-weight: 500; }
.result-overlay .result-desc { color: rgba(255,255,255,0.75); font-size: 0.78rem; margin-top: 4px; }

/* ===== LIGHTBOX ===== */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.92); z-index: 3000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-center { display: flex; flex-direction: column; align-items: center; max-width: 90vw; max-height: 85vh; }
.lightbox-center img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 12px; transform: scale(0.9); transition: transform 0.4s ease; }
.lightbox.active .lightbox-center img { transform: scale(1); }
.lightbox-caption { color: var(--white); font-size: 0.9rem; margin-top: 12px; text-align: center; opacity: 0.8; }
.lightbox-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.1); border: none; border-radius: 50%; cursor: pointer; font-size: 1.5rem; color: var(--white); transition: all 0.3s ease; }
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 50%; cursor: pointer; font-size: 1.2rem; color: var(--white); transition: all 0.3s ease; }
.lightbox-nav:hover { background: rgba(255,255,255,0.15); }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ===== PROGRAM ===== */
.module-card { position: relative; background: var(--white); border-radius: 20px; padding: 2rem; border: 1px solid rgba(196,149,106,0.12); transition: all 0.4s ease; }
.module-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--rose), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; border-radius: 20px 20px 0 0; }
.module-card:hover::before { transform: scaleX(1); }
.module-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(196,149,106,0.1); border-color: var(--rose-light); }
.module-card.featured-module { border: 2px solid var(--rose-light); }
.module-header { display: flex; align-items: flex-start; gap: 16px; }
.module-number { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--rose), var(--gold)); color: var(--white); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; border-radius: 12px; flex-shrink: 0; }
.module-number.gold { background: linear-gradient(135deg, var(--gold), var(--rose)); }
.module-content { flex: 1; min-width: 0; }
.module-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; }
.module-list { list-style: none; }
.module-list li { position: relative; padding-left: 18px; margin-bottom: 5px; font-size: 0.88rem; color: #666; line-height: 1.6; }
.module-list li::before { content: ''; position: absolute; left: 0; top: 10px; width: 5px; height: 5px; background: var(--rose-light); border-radius: 50%; }
.practice-tag { display: inline-flex; align-items: center; gap: 6px; padding: 4px 12px; background: rgba(196,149,106,0.1); border-radius: 50px; color: var(--rose); font-size: 0.82rem; font-weight: 500; margin-top: 10px; }
.modules-list { display: flex; flex-direction: column; gap: 16px; }
.timeline-connector { position: absolute; left: 39px; top: 60px; bottom: -20px; width: 2px; background: linear-gradient(to bottom, var(--rose-light), transparent); }
.module-card:last-child .timeline-connector { display: none; }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; max-width: 1000px; margin: 0 auto; }
.pricing-card { position: relative; background: var(--white); border-radius: 24px; padding: 2.5rem 2rem; border: 1px solid rgba(196,149,106,0.12); transition: all 0.5s ease; overflow: hidden; text-align: center; }
.pricing-card.featured { border: 2px solid var(--rose); transform: scale(1.02); }
.pricing-card.featured::after { content: 'ПОПУЛЯРНЫЙ'; position: absolute; top: 25px; right: -35px; background: linear-gradient(135deg, var(--rose), var(--gold)); color: var(--white); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em; padding: 5px 40px; transform: rotate(45deg); }
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 24px 64px rgba(196,149,106,0.12); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-8px); }
.pricing-tier { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 700; color: var(--charcoal); margin-bottom: 0.3rem; }
.pricing-desc { font-size: 0.82rem; color: #999; margin-bottom: 1.2rem; }
.pricing-price { font-family: 'Cormorant Garamond', serif; font-size: 3rem; font-weight: 700; background: linear-gradient(135deg, var(--rose), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 1.5rem; }
.pricing-features { list-style: none; text-align: left; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: 0.85rem; color: #555; line-height: 1.5; }
.check-icon { flex-shrink: 0; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; background: var(--cream); border-radius: 50%; color: var(--rose); font-size: 0.65rem; margin-top: 2px; }
.check-icon.disabled { opacity: 0.3; }
.pricing-features li span.disabled { color: #bbb; }

.pricing-disclaimer { text-align: center; font-size: 0.75rem; color: #999; line-height: 1.6; max-width: 700px; margin: 2.5rem auto 0; }

/* ===== START BANNER ===== */
.start-banner { position: relative; background: linear-gradient(135deg, var(--charcoal), #3D3D3D); border-radius: 28px; overflow: hidden; }
.start-banner::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(196,149,106,0.08), rgba(184,148,62,0.04)); }
.start-banner-inner { position: relative; z-index: 10; text-align: center; padding: 48px 32px; }
.start-banner .start-label { font-size: 0.82rem; color: var(--rose-light); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 1rem; }
.start-banner .start-date { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; }
.start-banner .start-note { color: #888; font-weight: 300; margin-bottom: 2.5rem; font-size: 0.95rem; }

/* ===== FOOTER ===== */
.footer { background: #3d3933; color: var(--white); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: var(--gutter); margin-bottom: 48px; }
.footer-brand { grid-column: span 4; }
.footer-contacts { grid-column: span 4; }
.footer-course { grid-column: span 4; }

.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo-img { height: 84px; width: auto; max-width: 280px; filter: brightness(0) invert(1); }
.footer-logo-mark { width: 40px; height: 40px; border-radius: 12px; background: linear-gradient(135deg, var(--rose), var(--gold)); display: flex; align-items: center; justify-content: center; color: var(--white); font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.2rem; flex-shrink: 0; }
.footer p { color: #888; font-size: 0.85rem; line-height: 1.7; }
.footer h3 { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose-light); margin-bottom: 16px; }
.footer a { color: #888; text-decoration: none; font-size: 0.85rem; transition: color 0.3s ease; display: block; margin-bottom: 8px; }
.footer a:hover { color: var(--rose); }
.footer-bottom { border-top: 1px solid #444; padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { color: #666; font-size: 0.75rem; line-height: 1.6; }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a { width: 40px; height: 40px; border-radius: 50%; background: #444; display: flex; align-items: center; justify-content: center; color: #888; transition: all 0.3s ease; margin-bottom: 0; }
.footer-socials a:hover { background: var(--rose); color: var(--white); }

/* ===== MOBILE MENU ===== */
.mobile-menu { position: fixed; inset: 0; background: rgba(253,248,243,0.98); backdrop-filter: blur(20px); z-index: 1500; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; opacity: 0; pointer-events: none; transition: opacity 0.4s ease; }
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu a { font-size: 1.2rem; font-weight: 500; color: var(--charcoal); text-decoration: none; transition: color 0.3s ease; }
.mobile-menu a:hover { color: var(--rose); }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--charcoal); }
.mobile-menu-logo { margin-bottom: 32px; }
.mobile-logo-img { height: 60px; width: auto; max-width: 180px; }

.floating-shape { position: absolute; border-radius: 50%; opacity: 0.05; background: var(--rose); pointer-events: none; }

/* ===== RESPONSIVE: Tablet (max 1024) ===== */
@media (max-width: 1024px) {
    :root { --gutter: 20px; }
    .hero-inner { grid-template-columns: 1fr; gap: 32px; padding-top: 100px; padding-bottom: 80px; }
    .hero-content { grid-column: span 12; }
    .hero-image-col { display: none; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-text-col { grid-column: span 1; }
    .about-instructor-col { grid-column: span 1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .footer-brand, .footer-contacts, .footer-course { grid-column: span 12; }
}

@media (max-width: 900px) {
    .nav-links { display: none; }
    .nav-burger { display: block; }
    .nav-inner { position: relative; }
    .nav-logo { position: absolute; left: 50%; transform: translateX(-50%); }
    .nav-burger { position: absolute; right: var(--gutter); top: 50%; transform: translateY(-50%); }
    .nav { background: rgba(253,248,243,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 28px 0 32px; }
    .nav.scrolled { padding: 28px 0 32px; }
}

/* ===== RESPONSIVE: Mobile (<768) ===== */
@media (max-width: 768px) {
    :root { --gutter: 16px; }
    .reveal-left { transform: translateY(40px); }
    .reveal-right { transform: translateY(40px); }
    .nav-logo-img { height: 84px; max-width: 200px; }
    .footer-logo-img { height: 84px; max-width: 200px; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }
    .includes-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .stat-card { padding: 16px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand, .footer-contacts, .footer-course { grid-column: span 12; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .section-padding { padding: 56px 0; }
    .section-padding-lg { padding: 72px 0; }
    .hero-inner { padding-top: 90px; padding-bottom: 64px; }
    .hero-desc { font-size: 0.95rem; }
    .btn-telegram, .btn-outline { padding: 12px 22px; font-size: 0.78rem; }
    .instructor-body { padding: 20px; }
    .achievement-badge { padding: 5px 10px; font-size: 0.72rem; }
    .module-card { padding: 1.25rem; }
    .module-content h3 { font-size: 1.05rem; }
    .pricing-card { padding: 1.75rem 1.25rem; }
    .pricing-price { font-size: 2.4rem; }
    .start-banner-inner { padding: 36px 20px; }
    .hero-badge { bottom: -12px; left: -8px; padding: 10px 14px; }
    .hero-badge-icon { width: 34px; height: 34px; font-size: 0.95rem; }
    .hero-badge-text strong { font-size: 0.76rem; }
    .hero-badge-text span { font-size: 0.66rem; }
}

/* ===== RESPONSIVE: Small mobile (<480) ===== */
@media (max-width: 480px) {
    :root { --gutter: 12px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px; }
    .hero-subtitle { font-size: 0.6rem; letter-spacing: 0.2em; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons a { width: 100%; justify-content: center; }
    .include-item { padding: 16px; gap: 12px; }
    .include-icon { width: 40px; height: 40px; font-size: 1.1rem; border-radius: 10px; }
    .result-overlay { padding: 12px; }
    .result-overlay span { font-size: 0.78rem; }
    .lightbox-nav { width: 36px; height: 36px; font-size: 1rem; }
    .lightbox-close { width: 36px; height: 36px; top: 12px; right: 12px; }
}

/* ===== Print ===== */
@media print {
    .nav, .mobile-menu, .hero-glow, .hero-glow-2, .lightbox, .floating-shape { display: none !important; }
    .hero { min-height: auto; }
    body { background: #fff; color: #000; font-size: 12pt; }
}
