@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Kurale&display=swap');
:root {
	--primary: #6B8E23;
	--secondary: #8FBC8F;
	--accent: #2F4F4F;
	--light: #F5F5DC;
	--dark: #1a2b1a;
	--gradient: linear-gradient(135deg, #6B8E23 0%, #8FBC8F 100%);
	--shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	--transition: all 0.3s ease;
}

/* ===== Базовые стили ===== */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	outline: 0;
}
body {
	font-size: 16px;
	font-family: 'Kurale', serif;
	color: #fff;
	line-height: 1.6;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}
a {
	color: #72a4d9;
	text-decoration: none;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
a:hover {
	color: #2b2b2b;
}
strong { font-weight: 600; }
p {
	margin: 0 0 10px;
	line-height: 1.6;
}
ul { list-style: disc; margin-bottom: 10px; }
ul li { padding-bottom: 10px; }
ul li:last-child { padding-bottom: 0; }

/* ===== Headings ===== */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Kurale', serif;
	font-weight: 400;
	line-height: 1.35;
	color: #2b2b2b;
}
.logo{
  background: url(../images/logo_w.png) center no-repeat;
    background-size: auto;
  background-size: auto 100%;
  width: 150px;
  height: 80px;
  text-indent: -9999px;
  display: inline-block;
}
/* ===== Backgrounds ===== */
.backgrounds {
	position: fixed;
	top: 0; left: 0;
	width: 100vw; height: 100vh;
	z-index: -1;
}
.background {
	position: absolute;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background-size: cover;
	background-position: center;
	opacity: 0;
	transition: opacity 1.5s ease-in-out;
}
.background.active { opacity: 1; }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        /* Шапка */
        header {
            background: var(--gradient);
            padding: 20px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }
header ul, header li {
	margin-bottom: 0px;
}
        header.scrolled {
            background: rgba(107, 142, 35, 0.95);
            padding: 10px 0;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo i {
            margin-right: 10px;
            font-size: 32px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
			font-size: 1.2em;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:hover {
            color: var(--light);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--light);
            transition: var(--transition);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }

        /* Герой секция */
        .hero {
            min-height: 100vh;

            display: flex;
            align-items: center;
            position: relative;
            background-attachment: fixed; /* Эффект параллакса */
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(107, 142, 35, 0.085);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: white;
            max-width: 700px;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
			color:#fff;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInDown 1s ease forwards;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease forwards 0.3s;
        }

        /* О специалисте */
        .about {
            padding: 100px 0;
            background: rgba(255, 255, 255, 0.9);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(143, 188, 143, 0.1) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .about::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(107, 142, 35, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 30px;
            position: relative;
            opacity: 0;
            transform: translateX(-30px);
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--primary);
        }

        .about-text p {
            margin-bottom: 20px;
            font-size: 1.1rem;
			 color: var(--dark);
            opacity: 0;
            transform: translateX(-20px);
        }

        .about-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow);
            opacity: 0;
            transform: translateX(50px);
        }

        .about-image img {
            width: 100%;
            height: auto;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Подход */
        .approach {
            padding: 100px 0;
            background: var(--light);
            position: relative;
        }

        .approach h2 {
            text-align: center;
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 50px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
        }

        .approach h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary);
        }

        .approach-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .approach-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            text-align: center;
            opacity: 0;
            transform: translateY(50px);
        }

        .approach-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        }

        .approach-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
            opacity: 0;
            transform: scale(0.5);
        }

        .approach-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent);
            opacity: 0;
            transform: translateY(10px);
        }

        .approach-card p {
            opacity: 0;
            transform: translateY(10px);
			color: var(--dark);
        }

        /* Услуги */
        .services {
            padding: 100px 0;
            position: relative;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            transition: var(--transition);
            border-left: 5px solid var(--primary);
            opacity: 0;
            transform: translateX(-30px);
        }

        .service-card:hover {
            background: white;
            box-shadow: var(--shadow);
            transform: translateX(0);
        }

        .service-card h3 {
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            opacity: 0;
            transform: translateX(-20px);
        }

        .service-card ul {
            list-style: none;
            padding-left: 0;
            opacity: 1;
            transform: translateX(-10px);
        }

        .service-card ul li {
            padding: 2px 0 2px 40px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .service-card ul li:last-child {
            border-bottom: none;
        }

        /* Проблемы */
        .problems {
            padding: 100px 0;
            background: var(--light);
            position: relative;
        }

        .problems-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .problem-card {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            opacity: 0;
            transform: scale(0.9);
        }

        .problem-card:hover {
            transform: scale(1.02);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
        }

        .problem-card i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
            display: inline-block;
            opacity: 0;
            transform: scale(0.5);
        }

        .problem-card h3 {
            opacity: 0;
            transform: translateY(10px);
        }

        .problem-card p {
            opacity: 0;
            transform: translateY(10px);
			color: var(--dark);
        }

        /* Принципы */
        .principles {
            padding: 100px 0;
            background: white;
            position: relative;
        }

        .principles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .principle-card {
            text-align: center;
            padding: 30px;
            border-radius: 15px;
            transition: var(--transition);
            opacity: 0;
            transform: translateY(50px);
        }

        .principle-card:nth-child(1) { background: #e8f5e9; }
        .principle-card:nth-child(2) { background: #e3f2fd; }
        .principle-card:nth-child(3) { background: #fff3e0; }
        .principle-card:nth-child(4) { background: #fce4ec; }

        .principle-card:hover {
            transform: scale(1.05);
        }

        .principle-card i {
            font-size: 3rem;
            margin-bottom: 20px;
            display: inline-block;
            opacity: 0;
            transform: scale(0.5);
			color: var(--primary);
        }

        .principle-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent);
            opacity: 0;
            transform: translateY(10px);
        }

        .principle-card p{
            opacity: 0;
            transform: translateY(10px);
			color: var(--dark);
        }

        /* Футер */
        footer {
            background: var(--dark);
            color: white;
            padding: 40px 0;
            position: relative;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
        }

        .footer-links {
            display: flex;
            list-style: none;
            gap: 20px;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .social-links {
            display: flex;
            gap: 15px;
            opacity: 0;
            transform: translateY(20px);
        }

        .social-links a {
            color: white;
            font-size: 1.5rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            color: var(--primary);
            transform: translateY(-3px);
        }

        .copyright {
            opacity: 0;
            transform: translateY(20px);
			
        }
.made{
	font-size: 1rem;
	 color: var(--primary);
	            text-align: center;
}
/* ===== Услуги — улучшенные стили ===== */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.service-card {
    background: var(--light);
    padding: 30px;
    border-radius: 15px;
    transition: var(--transition);
    border-left: 4px solid var(--primary);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.service-card:hover {
    background: white;
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border-left-color: var(--accent);
}
.service-card.popular {
    border-left-color: var(--accent);
    background: linear-gradient(135deg, var(--light) 0%, rgba(143, 188, 143, 0.15) 100%);
}

.popular-label {
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: white;
    padding: 5px 35px;
    font-size: 0.75rem;
    font-weight: 600;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.service-icon {
    font-size: 1.8rem;
    color: var(--primary);
    display: block;
    margin-bottom: 12px;
}
.service-title {
    font-size: 1.4rem;
    color: var(--accent);
    margin: 0 0 8px 0;
    line-height: 1.3;
}
.service-subtitle {
    font-size: 0.9rem;
    color: var(--dark);
    opacity: 0.85;
    display: block;
    font-weight: 400;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    flex-grow: 1;
}
.service-list li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 0.95rem;
    color: var(--dark);
    line-height: 1.5;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.service-list li:last-child {
    border-bottom: none;
}
.service-list li::before {
    content: none !important; /* отключаем стандартные маркеры */
}
.service-bullet {
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 0.65em;
    color: var(--secondary);
    opacity: 0.9;
}
.service-bullet.fa-chevron-right {
    top: 11px;
}
.service-bullet.fa-circle {
    top: 13px;
}

.service-footer {
    padding-top: 15px;
    border-top: 2px dashed rgba(107, 142, 35, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.service-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.3rem;
}
.service-price small {
    font-size: 0.85em;
    font-weight: 400;
    opacity: 0.8;
}
.service-badge {
    font-size: 0.8rem;
    color: var(--accent);
    background: rgba(143, 188, 143, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 500;
}

.services-note {
    text-align: center;
    margin-top: 40px;
    font-style: italic;
    color: var(--accent);
    font-size: 1rem;
    padding: 15px 20px;
    background: rgba(143, 188, 143, 0.1);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.services-note .note-icon {
    color: var(--primary);
    font-size: 1.1rem;
}

/* Адаптив для услуг */
@media (max-width: 768px) {
    .service-card {
        padding: 25px 20px;
    }
    .service-title {
        font-size: 1.25rem;
    }
    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .service-price {
        font-size: 1.2rem;
    }
    .popular-label {
        padding: 4px 30px;
        font-size: 0.7rem;
    }
}
.approach-card ul li{
      list-style: none;
			color: var(--dark);
        }
        /* Анимации */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        /* Анимация при прокрутке - продвинутая версия */
        .animate-on-scroll {
            opacity: 0;
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .animate-on-scroll.appear {
            opacity: 1;
        }

        .slide-left.appear {
            animation: slideInLeft 0.8s ease forwards;
        }

        .slide-right.appear {
            animation: slideInRight 0.8s ease forwards;
        }

        .slide-up.appear {
            animation: fadeInUp 0.8s ease forwards;
        }

        .scale-in.appear {
            animation: scaleIn 0.8s ease forwards;
        }

        .fade-in-text p.appear,
        .fade-in-text h2.appear,
        .fade-in-text h3.appear {
            animation: fadeInUp 0.6s ease forwards;
        }

        /* Задержки для последовательной анимации */
        .stagger-animation > * {
            opacity: 0;
        }

        .stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
        .stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
        .stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
        .stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }
        .stagger-animation > *:nth-child(5) { animation-delay: 0.5s; }
        .stagger-animation > *:nth-child(6) { animation-delay: 0.6s; }
        .stagger-animation > *:nth-child(7) { animation-delay: 0.7s; }
        .stagger-animation > *:nth-child(8) { animation-delay: 0.8s; }

        /* Адаптивность */
        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                right: -100%;
                flex-direction: column;
                background: var(--gradient);
                width: 100%;
                padding: 30px;
                transition: var(--transition);
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .footer-content {
                flex-direction: column;
                gap: 20px;
            }

            .shape {
                display: none;
            }
        }


/* Блок Алхимия здоровья */
        .alchemy {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
			color: var(--dark);
        }

        .alchemy::before {
            content: '';
            position: absolute;
            top: -30%;
            left: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(107, 142, 35, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .alchemy::after {
            content: '';
            position: absolute;
            bottom: -30%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(143, 188, 143, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 0;
        }

        .alchemy-content {
            max-width: 900px;
            margin: 0 auto;
            background: white;
            padding: 60px;
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
            border: 3px solid var(--primary);
        }

        .alchemy-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .alchemy-title {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .alchemy-title::before,
        .alchemy-title::after {
            content: '🌿';
            margin: 0 10px;
        }

        .alchemy-subtitle {
            font-size: 1.3rem;
            color: var(--accent);
            margin-top: 10px;
            font-style: italic;
        }

        .alchemy-description {
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .alchemy-description p {
            margin-bottom: 15px;
            font-size: 1.1rem;
        }

        .highlight {
            background: linear-gradient(120deg, rgba(107, 142, 35, 0.1) 0%, rgba(143, 188, 143, 0.1) 100%);
            padding: 3px 8px;
            border-radius: 5px;
            font-weight: 600;
        }

        .alchemy-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .alchemy-item {
            background: var(--light);
            padding: 25px;
            border-radius: 15px;
            border-left: 4px solid var(--primary);
            transition: var(--transition);
        }

        .alchemy-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background: white;
        }

        .alchemy-item i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 15px;
            display: block;
        }

        .alchemy-item h3 {
            font-size: 1.3rem;
            color: var(--accent);
            margin-bottom: 10px;
        }

        .benefits-list {
            background: var(--light);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 40px;
        }

        .benefits-list h3 {
            font-size: 1.6rem;
            color: var(--primary);
            margin-bottom: 20px;
            text-align: center;
        }

        .benefits-list ul {
            list-style: none;
            padding-left: 0;
        }

        .benefits-list li {
            padding: 12px 0;
            padding-left: 30px;
            position: relative;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .benefits-list li:last-child {
            border-bottom: none;
        }

        .benefits-list li::before {
            content: '🌿';
            position: absolute;
            left: 0;
            top: 12px;
        }

        .cta-section {
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            padding: 40px;
            border-radius: 20px;
            color: white;
            margin-top: 30px;
        }

        .cta-section h3 {
            font-size: 2rem;
            margin-bottom: 20px;
			 color: var(--light);
        }

        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 25px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-button {
            display: inline-block;
            background: white;
            color: var(--primary);
            padding: 15px 50px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            background: var(--light);
        }

        .heart-icon {
            color: #ff6b6b;
            margin: 0 5px;
            font-size: 1.2rem;
        }

        .sparkle-icon {
            color: #ffd700;
            margin: 0 3px;
        }

        /* Анимации */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-text p.appear,
        .fade-in-text h2.appear,
        .fade-in-text h3.appear,
        .fade-in-text ul.appear,
        .fade-in-text li.appear {
            animation: fadeInUp 0.6s ease forwards;
        }

        .slide-up.appear {
            animation: fadeInUp 0.8s ease forwards;
        }

        /* Задержки для последовательной анимации */
        .stagger-animation > * {
            opacity: 0;
        }

        .stagger-animation > *:nth-child(1) { animation-delay: 0.1s; }
        .stagger-animation > *:nth-child(2) { animation-delay: 0.2s; }
        .stagger-animation > *:nth-child(3) { animation-delay: 0.3s; }
        .stagger-animation > *:nth-child(4) { animation-delay: 0.4s; }

        /* Адаптивность */
        @media (max-width: 768px) {
            body {
                padding: 20px 0;
            }

            .alchemy-content {
                padding: 30px 20px;
            }

            .alchemy-title {
                font-size: 2rem;
            }

            .alchemy-grid {
                grid-template-columns: 1fr;
            }

            .alchemy-item {
                padding: 20px;
            }
        }