    * { scroll-behavior: smooth; }
    .glow-orange {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.15), 0 0 80px rgba(249, 115, 22, 0.05);
    }

    .card-hover {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card-hover:hover {
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .fade-in {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .fade-in.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .pricing-card-featured {
        border: 2px solid #f97316;
        position: relative;
    }
    .pricing-card-featured::before {
        content: 'Популярный';
        position: absolute;
        top: -14px;
        left: 50%;
        transform: translateX(-50%);
        background: linear-gradient(135deg, #f97316, #ea580c);
        color: white;
        font-size: 0.75rem;
        font-weight: 600;
        padding: 4px 16px;
        border-radius: 9999px;
        white-space: nowrap;
    }

    .faq-answer {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
    }
    .faq-answer.open {
        max-height: 300px;
    }

    .faq-icon {
        transition: transform 0.3s ease;
    }
    .faq-item.active .faq-icon {
        transform: rotate(45deg);
    }

    .pulse-dot {
        animation: pulse-dot 2s infinite;
    }
    @keyframes pulse-dot {
        0%, 100% { opacity: 1; }
        50% { opacity: 0.5; }
    }

    .floating {
        animation: floating 3s ease-in-out infinite;
    }
    @keyframes floating {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .stat-number {
        background: linear-gradient(135deg, #f97316, #fb923c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .blob-1 {
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(249,115,22,0.12) 0%, transparent 70%);
        border-radius: 50%;
        top: -100px;
        right: -100px;
        pointer-events: none;
    }

    .blob-2 {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
        border-radius: 50%;
        bottom: -50px;
        left: -50px;
        pointer-events: none;
    }

    .nav-blur {
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }

    input:focus, textarea:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.2);
        border-color: #f97316;
    }

    .step-connector {
        position: absolute;
        top: 28px;
        left: calc(50% + 28px);
        width: calc(100% - 56px);
        height: 2px;
        background: linear-gradient(90deg, #f97316, #fed7aa);
    }

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

    .review-card {
        background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    }
