
    :root {
        --primary: #e83e8c;
        --primary-dark: #c41a6d;
        --primary-light: #ffd6e7;
        --secondary: #6c63ff;
        --secondary-dark: #554fd8;
        --gold: #d4af37;
        --gold-light: #f8e9c2;
        --light-pink: #fff4f8;
        --dark: #1a1a1a;
        --dark-gray: #2d2d2d;
        --light-bg: #fcf8fa;
    }
    
    body {
        font-family: 'Montserrat', sans-serif;
        color: var(--dark);
        scroll-behavior: smooth;
        background-color: #ffffff;
        line-height: 1.6;
    }
    
    .playfair {
        font-family: 'Playfair Display', serif;
        letter-spacing: -0.02em;
    }
    
    .cormorant {
        font-family: 'Cormorant Garamond', serif;
        font-weight: 500;
    }
    
    .hero-bg {
        background: linear-gradient(135deg, #fff9f9 0%, #fff0f5 100%);
        position: relative;
        overflow: hidden;
    }
    
    .hero-bg::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(232, 62, 140, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
        z-index: 0;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 25px rgba(232, 62, 140, 0.25), 0 5px 10px rgba(232, 62, 140, 0.15);
        border: none;
        border-radius: 50px;
        padding: 16px 32px;
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: all 0.6s ease;
    }
    
    .btn-primary:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 15px 35px rgba(232, 62, 140, 0.35), 0 10px 15px rgba(232, 62, 140, 0.2);
    }
    
    .btn-primary:hover::before {
        left: 100%;
    }
    
    .btn-secondary {
        background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 25px rgba(108, 99, 255, 0.25), 0 5px 10px rgba(108, 99, 255, 0.15);
        border: none;
        border-radius: 50px;
        padding: 16px 32px;
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-secondary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: all 0.6s ease;
    }
    
    .btn-secondary:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 15px 35px rgba(108, 99, 255, 0.35), 0 10px 15px rgba(108, 99, 255, 0.2);
    }
    
    .btn-secondary:hover::before {
        left: 100%;
    }
    
    .btn-gold {
        background: linear-gradient(135deg, #d4af37 0%, #f5d033 100%);
        color: white;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25), 0 5px 10px rgba(212, 175, 55, 0.15);
        border: none;
        border-radius: 50px;
        padding: 16px 32px;
        font-weight: 600;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
    }
    
    .btn-gold::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
        transition: all 0.6s ease;
    }
    
    .btn-gold:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 15px 35px rgba(212, 175, 55, 0.35), 0 10px 15px rgba(212, 175, 55, 0.2);
    }
    
    .btn-gold:hover::before {
        left: 100%;
    }
    
    .testimonial-card, .pricing-card, .blog-card {
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        overflow: hidden;
        border-radius: 16px;
        background: white;
        border: 1px solid rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
    }
    
    .testimonial-card:hover {
        transform: translateY(-12px) scale(1.01);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
    }
    
    .pricing-card {
        border: 1px solid rgba(243, 243, 243, 0.8);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .pricing-card:hover {
        transform: translateY(-12px) scale(1.01);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    }
    
    .popular-card {
        position: relative;
        border: 2px solid var(--primary);
        transform: scale(1.05);
        z-index: 2;
    }
    
    .popular-card::before {
        content: 'ПОПУЛЯРНЫЙ';
        position: absolute;
        top: 0;
        right: 0;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: white;
        font-size: 12px;
        padding: 8px 20px;
        border-bottom-left-radius: 16px;
        border-top-right-radius: 16px;
        font-weight: 700;
        letter-spacing: 0.5px;
        box-shadow: 0 5px 15px rgba(232, 62, 140, 0.3);
    }
    
    .feature-icon {
        width: 100px;
        height: 100px;
        background: linear-gradient(135deg, var(--light-pink) 0%, #ffeaf2 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 25px;
        color: var(--primary);
        font-size: 36px;
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
        position: relative;
        overflow: hidden;
    }
    
    .feature-icon::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: linear-gradient(transparent, rgba(255, 255, 255, 0.5), transparent);
        transform: translateY(-100%);
        transition: all 0.5s ease;
    }
    
    .feature-icon:hover {
        transform: translateY(-8px) rotate(5deg) scale(1.1);
        color: var(--primary-dark);
        box-shadow: 0 20px 40px rgba(232, 62, 140, 0.2);
    }
    
    .feature-icon:hover::after {
        transform: translateY(100%);
    }
    
    .before-after {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }
    
    
    .gradient-bg {
        background: linear-gradient(135deg, #f8f5ff 0%, #fff0f5 100%);
        position: relative;
        overflow: hidden;
    }
    
    .gradient-bg::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(108, 99, 255, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
        z-index: 0;
    }
    
    .gold-accent {
        color: var(--gold);
        text-shadow: 0 2px 4px rgba(212, 175, 55, 0.2);
    }
    
    .section-title {
        position: relative;
        display: inline-block;
        margin-bottom: 3rem;
        font-weight: 700;
    }
    
    .section-title::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: linear-gradient(to right, var(--primary), var(--gold));
        border-radius: 4px;
    }
    
    .nav-link {
        position: relative;
        padding: 8px 0;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(to right, var(--primary), var(--gold));
        transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border-radius: 3px;
    }
    
    .nav-link:hover {
        color: var(--primary);
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .animate-fade-in {
        animation: fadeInUp 1s ease forwards;
        opacity: 0;
    }
    
    @keyframes fadeInUp {
        from { 
            opacity: 0; 
            transform: translateY(40px); 
        }
        to { 
            opacity: 1; 
            transform: translateY(0); 
        }
    }
    
    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }
    .delay-400 { animation-delay: 0.4s; }
    .delay-500 { animation-delay: 0.5s; }
    
    .parallax {
        background-attachment: fixed;
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }
    
    .floating {
        animation: float 6s ease-in-out infinite;
    }
    
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }
    
    .img-hover-zoom {
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .img-hover-zoom:hover {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    }
    
    .img-hover-zoom img {
        transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }
    
    .img-hover-zoom:hover img {
        transform: scale(1.1);
    }
    
    .text-shadow {
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    
    .logo {
        position: relative;
        font-weight: 800;
        letter-spacing: 1px;
        font-size: 28px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        text-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    }
    
    /* Header enhancements */
    header {
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
    }
    
    /* Mobile menu animation */
    .mobile-menu {
        display: none;
        transform: translateY(-20px);
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(10px);
        background: rgba(255, 255, 255, 0.98);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-menu.active {
        display: block;
        transform: translateY(0);
        opacity: 1;
    }
    
    /* Loading animation */
    .loader {
        display: inline-block;
        width: 20px;
        height: 20px;
        border: 3px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: white;
        animation: spin 1s ease-in-out infinite;
    }
    
    @keyframes spin {
        to { transform: rotate(360deg); }
    }
    
    /* Form enhancements */
    input, select {
        transition: all 0.3s ease;
        border: 1px solid #e1e1e1;
    }
    
    input:focus, select:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.15);
    }
    
    /* Pricing card enhancements */
    .pricing-card h3 {
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 15px;
    }
    
    .pricing-card .price {
        font-size: 2.5rem;
        font-weight: 800;
        color: var(--primary);
        margin-bottom: 20px;
        display: block;
    }
    
    /* Testimonial enhancements */
    .testimonial-card .stars {
        color: var(--gold);
        font-size: 14px;
        margin-top: 5px;
    }
    
    /* Floating elements */
    .floating-element {
        animation: float 6s ease-in-out infinite;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    }
    
    /* Decorative elements */
    .decorative-circle {
        position: absolute;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--primary-light) 0%, rgba(255, 255, 255, 0) 70%);
        z-index: -1;
    }
    
    /* Gradient text */
    .gradient-text {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
    }
    
    /* Enhanced shadows */
    .enhanced-shadow {
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    }
