/* ===== ЛОКАЛЬНЫЕ ШРИФТЫ ===== */
@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Lora';
    src: url('fonts/Lora-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Playfair Display';
    src: url('fonts/PlayfairDisplay-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== GLOBAL VARIABLES & RESET (LUXURY THEME 2026) ===== */
:root {
    /* Основные цвета */
    --bg-color: #050505;
    --bg-secondary: #0a0a0a;
    
    /* Градиент золота */
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 40%, #B38728 60%, #FBF5B7 100%);
    --gold-text-clip: linear-gradient(to right, #BF953F, #FBF5B7, #B38728, #FBF5B7);
    
    /* Текст */
    --text-main: #F0F0F0;
    --text-muted: #888888;
    --accent-gold: #D4AF37;
    --accent-gold-light: #F5E6A8;
    
    /* Стекло и границы */
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(20, 20, 20, 0.4);
    --glass-blur: blur(20px);
    
    /* Отступы */
    --section-spacing: 120px;
    
    /* Шрифты */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lora', serif;
    
    /* Primary/Secondary для совместимости со старым кодом */
    --primary-color: #050505;
}

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

html {
    /* scroll-behavior управляется через JavaScript для точности */
    scroll-behavior: auto;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
    /* padding-top is managed by header, bottom is handled by footer/fixed btns */
}

a, button {
    -webkit-tap-highlight-color: transparent;
}

/* ===== NOISE TEXTURE ===== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: var(--text-main);
}

.section-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-align: center;
    margin-bottom: 1rem;
    background: var(--gold-text-clip);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 5s linear infinite;
}

.title-decoration {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
    opacity: 0.6;
}

/* ===== HEADER & NAV ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.4s ease;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-frame {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
}

.brand-name {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--text-main);
    background: var(--gold-text-clip);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
}

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

/* Десктопные стили навигации */
@media (min-width: 769px) {
    .nav-menu {
        gap: 3rem;
        background: rgba(20, 20, 20, 0.5);
        padding: 10px 30px;
        border-radius: 50px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.05);
    }
}

.nav-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease, left 0.3s ease;
}

@media (hover: hover) {
    .nav-link:hover::after {
        width: 100%;
        left: 0;
    }
    
    .nav-link:hover {
        color: var(--accent-gold);
    }
}

/* ===== DROPDOWN MENU ===== */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

/* Десктопная версия - hover */
@media (min-width: 769px) {
    .nav-dropdown:hover .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        top: calc(100% + 10px);
    }
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 1rem 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    list-style: none;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent-gold);
    padding-left: 2rem;
}

.dropdown-menu a:hover::before {
    transform: scaleY(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    transition: all 0.3s ease;
    display: block;
    border-radius: 2px;
}

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

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

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

/* ===== HERO ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: contrast(1.1) saturate(1.1);
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, #050505 90%);
    z-index: 1;
}

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

.hero-title {
    font-size: clamp(4rem, 12vw, 9rem);
    line-height: 0.9;
    margin-bottom: 1.5rem;
    background: var(--gold-text-clip);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 8s linear infinite;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-main);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* ===== HERO SERVICES CHIPS ===== */
.services-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    border: none;
    position: relative;
}

.services-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.services-toggle.active .services-arrow {
    transform: rotate(180deg);
}

.hero-services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-services-grid.active {
    margin-top: 2rem;
    max-height: 200px;
    opacity: 1;
}

.hero-service-card {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.9rem 1.8rem;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50px;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

@media (hover: hover) {
    .hero-service-card:hover {
        background: var(--accent-gold);
        color: #000;
        border-color: var(--accent-gold);
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    }
}

.service-card-icon {
    font-size: 1.3rem;
}

.hero-image { display: none; }

/* ===== BUTTONS ===== */
.cta-button, .booking-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
}

.cta-button.primary {
    background: var(--accent-gold);
    color: #000;
    font-weight: 600;
    border: none;
}

@media (hover: hover) {
    .cta-button.primary:hover {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    }

    .cta-button.secondary:hover {
        border-color: var(--accent-gold);
        color: var(--accent-gold);
        background: rgba(255, 255, 255, 0.05);
    }
}

.cta-button.primary:focus,
.cta-button.secondary:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* ===== SECTIONS ===== */
section {
    padding: var(--section-spacing) 0;
    position: relative;
}

/* ===== ABOUT ===== */
.about {
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.philosophy-quote {
    font-size: 2rem;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 4rem;
    color: var(--text-main);
    border: none;
    padding: 0;
    background: none;
}

.quote-author {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: var(--accent-gold);
    text-transform: uppercase;
    margin-top: 2rem;
}

.about-features {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    gap: 2rem;
}

.feature-item {
    flex: 1;
    text-align: center;
    padding: 3rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 4px;
    transition: transform 0.5s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.03);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
}

/* ===== SERVICES ===== */
.services { background: #0a0a0a; }

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-category {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    backdrop-filter: none;
}

.category-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
    gap: 1rem;
}

.category-header h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.category-note {
    font-size: 1rem;
    color: var(--text-muted);
    font-style: italic;
}

.price-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem 4rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    margin: 0;
    border-radius: 0;
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .price-item:hover {
        border-bottom-color: var(--accent-gold);
        padding-left: 10px;
    }
}

/* Стили для Абонемента */
.subscription-offer {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.05));
    border: 2px solid var(--accent-gold);
    padding: 2rem 1.5rem;
    border-radius: 8px;
    margin-top: 3rem;
    align-items: center;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

@media (hover: hover) {
    .subscription-offer:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
        border-color: var(--accent-gold-light);
        border-bottom-color: var(--accent-gold-light);
    }
}

.subscription-offer .service-name {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.subscription-offer .service-price {
    color: var(--accent-gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-name {
    font-size: 1.1rem;
    color: var(--text-main);
}

.service-price {
    font-size: 1.1rem;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Duration скрыт для чистоты дизайна */

.price-section h4 {
    grid-column: 1 / -1;
    margin-top: 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: var(--accent-gold);
    text-transform: uppercase;
    border-bottom: none;
}

/* ===== GALLERY & FILTERS ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--text-main);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent-gold);
    color: #000;
    border-color: var(--accent-gold);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 0;
    border: none;
    aspect-ratio: 1;
    transition: filter 0.4s ease;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.zoom-icon { color: #fff; font-size: 2rem; }

.gallery-item.hidden { 
    display: none; 
}

.gallery-item:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 4px;
}

/* ===== VIDEOS ===== */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-item {
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9/16;
    background: #000;
}

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.video-play-overlay:hover {
    background: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.play-button { color: #000; font-size: 1.5rem; margin-left: 4px; }

/* ===== CONTACTS ===== */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
}

.contact-card {
    text-align: left;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-card h3 {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    color: var(--accent-gold);
}

.contact-card p, .contact-card a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-card a:hover { 
    color: var(--text-main); 
}

.contact-card a:focus {
    outline: 2px solid var(--accent-gold);
    outline-offset: 2px;
    border-radius: 2px;
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: block;
}

.booking-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.booking-button {
    background: var(--accent-gold);
    color: #000;
    font-weight: 600;
    border: none;
    padding: 1.2rem 3rem;
    width: 100%;
    max-width: 350px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.booking-button:hover {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.booking-button:active {
    transform: translateY(0);
}

.booking-button.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #333;
    color: #666;
}

.privacy-consent { margin-top: 1rem; max-width: 500px; text-align: center; }

.privacy-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-align: left;
    line-height: 1.5;
}

.privacy-checkbox {
    display: none;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1px solid var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    margin-top: 2px;
    border-radius: 2px;
}

.privacy-checkbox:checked + .checkbox-custom {
    background: var(--accent-gold);
}

.privacy-checkbox:checked + .checkbox-custom::after {
    content: '✓';
    color: #000;
    font-size: 14px;
    font-weight: bold;
}

.privacy-link { color: var(--text-main); text-decoration: underline; }

.map-container {
    margin-top: 6rem;
    width: 100%;
}

.map-frame {
    border-radius: 4px;
    overflow: hidden;
    filter: grayscale(100%) invert(100%) contrast(0.8);
    transition: filter 0.5s ease;
    height: 100%;
    min-height: 450px;
}

.map-frame:hover { filter: grayscale(0%) invert(0%); }

/* Floating Action Button */
.floating-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #000;
    font-size: 1.5rem;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.floating-action-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
}

.floating-action-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.6);
}

.floating-action-btn:active {
    transform: scale(0.95);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
    z-index: 998;
    transition: all 0.3s ease;
}

.scroll-to-top.visible { display: flex; }
.scroll-to-top:hover { background: var(--accent-gold); color: #000; }

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 10001;
    pointer-events: none;
}

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

/* ===== CURSOR TRAIL ===== */
.cursor-trail {
    position: fixed;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    animation: cursorFade 0.8s ease-out forwards;
}

@keyframes cursorFade {
    to {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

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

/* ===== SHAKE ANIMATION ===== */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}


/* ===== FOOTER ===== */
.footer {
    background: #000;
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.footer-logo h3 {
    font-size: 3rem;
    background: var(--gold-text-clip);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-decoration { font-size: 1.5rem; margin-top: 1rem; }

.footer-text p { color: var(--text-muted); margin-bottom: 0.5rem; }

.footer-link {
    color: var(--accent-gold-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-gold);
    text-decoration: underline;
}

.footer-quote {
    margin-top: 1.5rem;
    font-style: italic;
    opacity: 0.8;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--accent-gold);
    padding: 1.5rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show { transform: translateY(0); }

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text p { font-size: 0.9rem; color: var(--text-main); }
.cookie-text a { color: var(--accent-gold); }

.cookie-buttons { display: flex; gap: 1rem; }

.cookie-btn {
    padding: 0.8rem 2rem;
    border: 1px solid var(--accent-gold);
    background: transparent;
    color: var(--accent-gold);
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.cookie-btn.accept { background: var(--accent-gold); color: #000; }
.cookie-btn:hover { opacity: 0.8; }

/* ===== PRIVACY MESSAGE ===== */
.privacy-message {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(50, 0, 0, 0.9);
    border: 1px solid red;
    padding: 1rem 2rem;
    z-index: 10001;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.privacy-message.show { opacity: 1; }
.privacy-message-content { display: flex; align-items: center; gap: 1rem; }
.privacy-message-close { background: none; border: none; color: #fff; cursor: pointer; font-size: 1.5rem; }

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: var(--accent-gold);
    animation: bounceArrow 2s infinite;
}
.scroll-arrow svg { width: 30px; height: 30px; }
.scroll-text { display: none; } /* Hide text, keep icon */

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ===== ANIMATIONS ===== */
@keyframes shine {
    to { background-position: 200% center; }
}

.falling-petals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.petal {
    position: absolute;
    background: radial-gradient(circle, #D4AF37 0%, transparent 70%);
    width: 4px;
    height: 4px;
    border-radius: 50%;
    box-shadow: 0 0 10px #D4AF37;
    opacity: 0.6;
    animation: petalFall linear infinite;
}

/* STATIC PETALS */
.petal:nth-child(1) { left: 10%; animation-duration: 15s; animation-delay: -2s; }
.petal:nth-child(2) { left: 20%; animation-duration: 18s; animation-delay: -8s; }
.petal:nth-child(3) { left: 70%; animation-duration: 20s; animation-delay: -4s; }
.petal:nth-child(4) { left: 40%; animation-duration: 16s; animation-delay: -12s; }
.petal:nth-child(5) { left: 80%; animation-duration: 22s; animation-delay: -6s; }

@keyframes petalFall {
    0% { transform: translate3d(0, -10vh, 0); opacity: 0; }
    10% { opacity: 0.8; }
    100% { transform: translate3d(0, 110vh, 0); opacity: 0; }
}

.floral-decorations {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    overflow: hidden;
}

.floral-decoration {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    filter: blur(60px);
    border-radius: 50%;
    animation: floatAura 20s infinite alternate ease-in-out;
}

.floral-top-left { top: -200px; left: -200px; animation-delay: 0s; }
.floral-top-right { top: 20%; right: -300px; animation-delay: -5s; background: radial-gradient(circle, rgba(200, 100, 100, 0.05) 0%, transparent 70%); }
.floral-bottom-left { bottom: -200px; left: 10%; animation-delay: -10s; }

@keyframes floatAura {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
    100% { transform: translate(-30px, 20px) scale(0.95); }
}

.flower-svg { display: none; }

/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}
.lightbox-content { max-width: 90vw; max-height: 90vh; position: relative; }
.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}
#lightbox-image { max-width: 100%; max-height: 90vh; object-fit: contain; }

/* ===== RESPONSIVE ===== */

/* Планшеты (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --section-spacing: 80px;
    }
    
    .container {
        padding: 0 30px;
        max-width: 900px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .sessions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .contraindications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .price-list {
        max-width: 600px;
        margin: 0 auto;
    }
}

/* Мобильные устройства (до 768px) */
@media (max-width: 768px) {
    :root {
        --section-spacing: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .hero-title { font-size: 3.5rem; }
    
    .nav-menu {
        background: rgba(0,0,0,0.98) !important;
        border-radius: 0 !important;
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 80% !important;
        max-width: 350px !important;
        height: 100vh !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
        transform: translateX(100%) !important;
        transition: transform 0.3s ease !important;
        padding: 5rem 2rem 2rem !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        z-index: 10002 !important;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
        gap: 0 !important;
        border: none !important;
        backdrop-filter: none !important;
        pointer-events: auto !important;
    }
    
    .nav-menu * {
        pointer-events: auto !important;
    }
    
    .nav-menu li {
        margin: 0.8rem 0;
        width: 100%;
        text-align: center;
        pointer-events: auto;
        position: relative;
        z-index: 1;
    }
    
    .nav-menu a {
        pointer-events: auto !important;
        display: block;
        cursor: pointer;
        position: relative;
        z-index: 1;
    }
    
    .nav-menu.active { 
        transform: translateX(0) !important;
    }
    
    /* Блокируем скролл когда меню открыто */
    body.menu-open {
        overflow: hidden;
    }
    
    /* Dropdown на мобильных */
    .nav-dropdown {
        width: 100%;
    }
    
    .dropdown-toggle {
        justify-content: center;
        position: relative;
        width: 100%;
        padding: 0.8rem 1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        -webkit-tap-highlight-color: transparent;
        -webkit-user-select: none;
        user-select: none;
    }
    
    .dropdown-toggle.open {
        background: rgba(212, 175, 55, 0.1);
        color: var(--accent-gold);
    }
    
    .dropdown-toggle .dropdown-arrow {
        transition: transform 0.3s ease;
    }
    
    .dropdown-toggle.open .dropdown-arrow {
        transform: rotate(180deg);
        color: var(--accent-gold);
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(30, 30, 30, 0.95);
        border: none;
        border-radius: 8px;
        margin-top: 0.5rem;
        box-shadow: none;
    }
    
    .nav-dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 0.5rem 0;
    }
    
    .dropdown-menu li {
        margin: 0.3rem 0;
    }
    
    .dropdown-menu a {
        padding: 0.7rem 1.5rem;
        font-size: 0.8rem;
        display: block;
        text-align: center;
    }
    
    .dropdown-menu a:hover {
        padding-left: 1.5rem;
        background: rgba(212, 175, 55, 0.15);
    }
    .about-features { flex-direction: column; }
    .contact-info { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .cookie-banner-content { flex-direction: column; text-align: center; }
    .price-list { grid-template-columns: 1fr; }
    .mobile-menu-toggle { 
        display: flex; 
        z-index: 10003;
        position: relative;
    }
    
    .video-play-overlay { width: 50px; height: 50px; }
    .play-button { font-size: 1rem; }
    
    .floating-action-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        bottom: 20px;
        right: 20px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        left: 20px;
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .category-header h3 {
        font-size: 1.8rem;
    }
    
    .booking-button {
        max-width: 100%;
    }
    
    .map-container {
        margin-top: 3rem;
    }
}

/* ===== ЛАЗЕРНАЯ ЭПИЛЯЦИЯ: ПРЕИМУЩЕСТВА ===== */
.laser-benefits {
    padding: var(--section-spacing) 0;
    background: var(--bg-color);
    position: relative;
}

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

.benefit-card {
    position: relative;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 15px;
    transition: all 0.4s ease;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.benefit-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.benefit-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    padding-right: 60px;
}

.benefit-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.benefit-highlight {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.05);
    border-left: 3px solid var(--accent-gold);
    color: var(--accent-gold-light) !important;
    font-style: italic;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-top: 1.5rem;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* ===== ЛАЗЕРНАЯ ЭПИЛЯЦИЯ: СЕАНСЫ ===== */
.laser-sessions {
    padding: var(--section-spacing) 0;
    background: var(--bg-secondary);
    position: relative;
}

.sessions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.session-card {
    padding: 3rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.session-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.session-card:hover::after {
    opacity: 1;
}

.session-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

.session-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.session-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.session-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.session-count {
    font-family: var(--font-body);
    font-size: 1.3rem;
    color: var(--accent-gold);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ===== ЛАЗЕРНАЯ ЭПИЛЯЦИЯ: ПОСЛЕПРОЦЕДУРНЫЙ УХОД ===== */
.laser-aftercare {
    padding: var(--section-spacing) 0;
    background: var(--bg-color);
    position: relative;
}

.aftercare-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.aftercare-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.aftercare-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.aftercare-item:hover::before {
    transform: scaleY(1);
}

.aftercare-item:hover {
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.aftercare-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.aftercare-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
}

.aftercare-content strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ===== ЛАЗЕРНАЯ ЭПИЛЯЦИЯ: РЕКОМЕНДАЦИИ ===== */
.laser-recommendations {
    padding: var(--section-spacing) 0;
    background: var(--bg-secondary);
    position: relative;
}

.recommendation-box {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 3rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.recommendation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.recommendation-box::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gold-gradient);
    border-radius: 20px;
    opacity: 0.1;
    z-index: -1;
}

.recommendation-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.3));
}

.recommendation-content h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-main);
    margin-bottom: 1.5rem;
    text-align: center;
}

.recommendation-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: justify;
}

/* ===== ЛАЗЕРНАЯ ЭПИЛЯЦИЯ: ПРОТИВОПОКАЗАНИЯ ===== */
.laser-contraindications {
    padding: var(--section-spacing) 0;
    background: var(--bg-color);
    position: relative;
}

.contraindications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.contraindication-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(255, 200, 100, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
}

.contraindication-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 200, 100, 0.6) 0%, rgba(212, 175, 55, 0.3) 100%);
    border-radius: 12px 0 0 12px;
}

.contraindication-item:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 200, 100, 0.3);
    box-shadow: 0 8px 20px rgba(255, 200, 100, 0.1);
}

.contraindication-icon {
    flex-shrink: 0;
    font-size: 1.5rem;
    filter: drop-shadow(0 2px 5px rgba(255, 200, 100, 0.3));
}

.contraindication-item p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
}

.contraindications-note {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: rgba(255, 200, 100, 0.05);
    border: 1px solid rgba(255, 200, 100, 0.2);
    border-radius: 15px;
    text-align: center;
}

.contraindications-note p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--accent-gold-light);
    font-style: italic;
    margin: 0;
}

/* ===== ЛАЗЕРНАЯ ЭПИЛЯЦИЯ: ПОДГОТОВКА К ПРОЦЕДУРЕ ===== */
.laser-preparation {
    padding: var(--section-spacing) 0;
    background: var(--bg-secondary);
    position: relative;
}

.preparation-list {
    max-width: 900px;
    margin: 3rem auto 0;
}

.preparation-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 1.5rem;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.preparation-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--gold-gradient);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.preparation-item:hover::before {
    transform: scaleY(1);
}

.preparation-item:hover {
    transform: translateX(10px);
    border-color: rgba(212, 175, 55, 0.3);
}

.preparation-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    border: 2px solid var(--accent-gold);
}

.preparation-content p {
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
    margin: 0;
}

.preparation-content strong {
    color: var(--accent-gold);
    font-weight: 600;
}

/* ===== АДАПТИВ ДЛЯ НОВЫХ РАЗДЕЛОВ ===== */
@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 2rem;
    }
    
    .benefit-content h3 {
        font-size: 1.3rem;
        padding-right: 50px;
    }
    
    .benefit-number {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .sessions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .session-card {
        padding: 2.5rem 1.5rem;
    }
    
    .session-card h3 {
        font-size: 1.5rem;
    }
    
    .aftercare-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .aftercare-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .aftercare-content p {
        font-size: 1rem;
    }
    
    .recommendation-box {
        padding: 2rem;
    }
    
    .recommendation-content h3 {
        font-size: 1.5rem;
    }
    
    .recommendation-content p {
        font-size: 1rem;
        text-align: left;
    }
    
    .contraindications-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contraindication-item {
        padding: 1.2rem;
    }
    
    .contraindication-item p {
        font-size: 0.95rem;
    }
    
    .contraindications-note {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .contraindications-note p {
        font-size: 1rem;
    }
    
    .preparation-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .preparation-number {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .preparation-content p {
        font-size: 1rem;
    }
}

/* ===== МАЛЕНЬКИЕ МОБИЛЬНЫЕ УСТРОЙСТВА (до 480px) ===== */
@media (max-width: 480px) {
    :root {
        --section-spacing: 40px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    /* Hero секция */
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 3.5rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(1rem, 4vw, 1.3rem);
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    /* Hero services chips на мобильных */
    .services-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .hero-services-grid {
        gap: 0.7rem;
    }
    
    .hero-services-grid.active {
        max-height: 300px;
    }
    
    .hero-service-card {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .service-card-icon {
        font-size: 1.2rem;
    }
    
    .cta-button {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 0.85rem;
    }
    
    /* Навигация */
    .logo {
        transform: scale(0.85);
    }
    
    .brand-name {
        font-size: 1.3rem;
    }
    
    .brand-tagline {
        font-size: 0.5rem;
    }
    
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1.5rem;
        font-size: 0.75rem;
    }
    
    /* Секции */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.5rem;
    }
    
    .about-features {
        gap: 2rem;
    }
    
    .feature-item h3 {
        font-size: 1.2rem;
    }
    
    .feature-item p {
        font-size: 0.9rem;
    }
    
    /* Услуги */
    .category-header h3 {
        font-size: 1.5rem;
    }
    
    .category-note {
        font-size: 0.85rem;
    }
    
    .price-item {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .service-name {
        font-size: 0.9rem;
    }
    
    .service-price {
        font-size: 1rem;
    }
    
    .price-section h4 {
        font-size: 1rem;
    }
    
    /* Преимущества лазерной эпиляции */
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-number {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
        top: 1rem;
        right: 1rem;
    }
    
    .benefit-content h3 {
        font-size: 1.1rem;
        padding-right: 45px;
    }
    
    .benefit-content p {
        font-size: 0.9rem;
    }
    
    .benefit-highlight {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    
    .benefit-icon {
        font-size: 2rem;
    }
    
    /* Сеансы */
    .session-card {
        padding: 2rem 1rem;
    }
    
    .session-icon {
        width: 60px;
        height: 60px;
    }
    
    .session-card h3 {
        font-size: 1.3rem;
        letter-spacing: 1px;
    }
    
    .session-count {
        font-size: 1.1rem;
    }
    
    /* Послепроцедурный уход */
    .aftercare-item {
        padding: 1rem;
    }
    
    .aftercare-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .aftercare-content p {
        font-size: 0.9rem;
    }
    
    /* Рекомендации */
    .recommendation-box {
        padding: 1.5rem;
    }
    
    .recommendation-icon {
        font-size: 2.5rem;
    }
    
    .recommendation-content h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .recommendation-content p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Противопоказания */
    .contraindication-item {
        padding: 1rem;
        gap: 0.8rem;
    }
    
    .contraindication-icon {
        font-size: 1.3rem;
    }
    
    .contraindication-item p {
        font-size: 0.85rem;
    }
    
    .contraindications-note {
        padding: 1.2rem;
    }
    
    .contraindications-note p {
        font-size: 0.9rem;
    }
    
    /* Подготовка */
    .preparation-item {
        padding: 1rem;
    }
    
    .preparation-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .preparation-content p {
        font-size: 0.9rem;
    }
    
    /* Галерея */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-filters {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    /* Видео */
    .video-grid {
        gap: 1.5rem;
    }
    
    /* Контакты */
    .contact-card {
        padding: 1.5rem;
    }
    
    .contact-card h3 {
        font-size: 1.1rem;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .booking-button {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .privacy-checkbox-wrapper {
        font-size: 0.8rem;
    }
    
    /* Футер */
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-text p {
        font-size: 0.85rem;
    }
    
    .footer-quote small {
        font-size: 0.75rem;
    }
    
    /* Floating кнопки */
    .floating-action-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
        bottom: 15px;
        right: 15px;
    }
    
    .scroll-to-top {
        width: 35px;
        height: 35px;
        bottom: 15px;
        left: 15px;
        font-size: 1.1rem;
    }
    
    /* Cookie баннер */
    .cookie-banner {
        padding: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
    }
    
    .cookie-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }
}

/* ===== ОПТИМИЗАЦИЯ ДЛЯ LANDSCAPE НА МОБИЛЬНЫХ ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
    
    .hero-content {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .nav-menu {
        height: 100vh;
        overflow-y: auto;
        padding: 4rem 2rem 2rem;
        justify-content: flex-start;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .dropdown-menu a {
        padding: 0.5rem 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* ===== ОПТИМИЗАЦИЯ ПРОИЗВОДИТЕЛЬНОСТИ ДЛЯ МОБИЛЬНЫХ ===== */
@media (max-width: 1024px) {
    /* Отключаем тяжелые backdrop-filter на мобильных и планшетах */
    .nav-menu,
    .benefit-card,
    .session-card,
    .aftercare-item,
    .recommendation-box,
    .contraindication-item,
    .preparation-item,
    .dropdown-menu,
    .cookie-banner {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    /* Убираем лепестки на мобильных */
    .falling-petals-container,
    .floral-decorations {
        display: none !important;
    }
    
    /* Убираем шум на мобильных */
    .noise-overlay {
        opacity: 0.02 !important;
    }
    
    /* Упрощаем анимации */
    .benefit-card,
    .session-card,
    .aftercare-item,
    .preparation-item,
    .contraindication-item {
        transition: transform 0.2s ease !important;
    }
    
    .benefit-card:hover,
    .session-card:hover,
    .aftercare-item:hover,
    .preparation-item:hover,
    .contraindication-item:hover {
        transform: none !important;
    }
    
    /* Оптимизация для GPU */
    .floating-action-btn,
    .scroll-to-top,
    .nav-menu,
    .mobile-menu-toggle {
        will-change: transform;
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    /* Убираем сложные тени на мобильных */
    .benefit-card:hover,
    .session-card:hover,
    .contraindication-item:hover {
        box-shadow: none !important;
    }
    
    /* Отключаем hover эффекты на touch устройствах */
    @media (hover: none) {
        .benefit-card::before,
        .aftercare-item::before,
        .preparation-item::before {
            display: none !important;
        }
    }
}

/* ===== ДОПОЛНИТЕЛЬНАЯ ОПТИМИЗАЦИЯ ДЛЯ МАЛЕНЬКИХ МОБИЛЬНЫХ ===== */
@media (max-width: 480px) {
    /* Полностью убираем все анимации hover */
    * {
        transition-duration: 0.2s !important;
    }
    
    /* Убираем все before/after псевдоэлементы с анимацией */
    .benefit-card::before,
    .benefit-card::after,
    .session-card::after,
    .aftercare-item::before,
    .preparation-item::before,
    .recommendation-box::before,
    .recommendation-box::after {
        display: none !important;
    }
    
    /* Упрощаем transitions */
    .nav-link::after {
        display: none !important;
    }
}

/* ===== ДОПОЛНИТЕЛЬНЫЕ УЛУЧШЕНИЯ ДЛЯ МОБИЛЬНОГО МЕНЮ ===== */
@media (max-width: 768px) {
    /* Плавная прокрутка в меню */
    .nav-menu {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: rgba(212, 175, 55, 0.5) transparent;
    }
    
    .nav-menu::-webkit-scrollbar {
        width: 4px;
    }
    
    .nav-menu::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .nav-menu::-webkit-scrollbar-thumb {
        background: rgba(212, 175, 55, 0.5);
        border-radius: 2px;
    }
    
    /* Убираем hover эффекты на мобильных */
    .nav-link:hover::after {
        width: 0;
    }
    
    .nav-link:active {
        color: var(--accent-gold);
    }
    
    /* Улучшение тач-зон (Apple/Google guidelines) */
    .nav-link, .filter-btn, .hero-service-card {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* ===== СОВМЕСТИМОСТЬ ПРЕДДВЕРИЯ ДЛЯ NOTCH (iPhone Safe Area) ===== */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
    .header {
        padding-top: max(1.5rem, env(safe-area-inset-top));
    }
    .nav-menu {
        padding-bottom: env(safe-area-inset-bottom) !important;
    }
    .floating-action-btn {
        bottom: max(15px, env(safe-area-inset-bottom, 15px));
    }
    .scroll-to-top {
        bottom: max(15px, env(safe-area-inset-bottom, 15px));
    }
}
