.demo-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--mint-green) 50%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.demo-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 176, 80, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(0, 176, 80, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.demo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.demo-header {
    text-align: center;
    margin-bottom: 60px;
}

.demo-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.demo-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.demo-video-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 176, 80, 0.15);
    background: var(--white);
    padding: 12px;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

.video-container iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    position: relative;
    z-index: 0;
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.demo-feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 176, 80, 0.3);
}

.demo-feature-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.demo-feature-content p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Pricing Section Styles */
.pricing-section {
    padding: 10px 0;
    background: linear-gradient(135deg, var(--mint-green) 0%, rgba(255, 255, 255, 0.8) 80%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 176, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(64, 209, 122, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

.pricing-header {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
}

.pricing-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 176, 80, 0.2);
    position: relative;
    color: var(--text-dark);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0, 176, 80, 0.2);
}

.pricing-card.featured {
    border: 2px solid var(--primary-green);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 176, 80, 0.25);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-header-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.pricing-header-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.pricing-badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-badge {
    background: rgba(59, 130, 246, 0.1);
    color: #1E40AF;
}

.pricing-badge.premium {
    background: rgba(0, 176, 80, 0.1);
    color: var(--dark-green);
}

.pricing-badge.enterprise {
    background: rgba(147, 51, 234, 0.1);
    color: #7C2D12;
}

.pricing-price {
    margin-bottom: 16px;
}

.pricing-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.4;
}

.pricing-features i {
    color: var(--primary-green);
    font-size: 16px;
    flex-shrink: 0;
}

.pricing-btn {
    width: 100%;
    padding: 16px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.pricing-btn.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 176, 80, 0.3);
}

.pricing-btn.btn-primary:hover {
    background: var(--dark-green);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 176, 80, 0.4);
}

.pricing-btn.btn-outline {
    background: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.pricing-btn.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
}

.pricing-footer {
    text-align: center;
}

.pricing-footer p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-size: 14px;
}

.pricing-features-guarantee {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.pricing-features-guarantee span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 500;
}

.pricing-features-guarantee i {
    color: var(--light-green);
    font-size: 16px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .demo-video-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-container iframe {
        height: 250px;
    }
    
    .demo-features {
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .pricing-features-guarantee {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
    
    .pricing-header h2 {
        font-size: 2rem;
    }
    
    .demo-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .demo-container,
    .pricing-container {
        padding: 0 16px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .video-container iframe {
        height: 200px;
    }
    
    .demo-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .pricing-price .price {
        font-size: 2.5rem;
    }
}

     /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--mint-green) 0%, rgba(255, 255, 255, 0.8) 100%);
            position: relative;
            overflow: hidden;
        }

        .faq-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 176, 80, 0.06) 0%, transparent 70%);
            animation: rotate 40s linear infinite;
        }

        .faq-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(0, 176, 80, 0.04) 1px, transparent 1px),
                linear-gradient(90deg, rgba(0, 176, 80, 0.04) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
            z-index: 1;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .faq-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 32px;
            position: relative;
            z-index: 2;
        }

        .faq-header {
            text-align: center;
            margin-bottom: 10px;
        }

        .faq-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .faq-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .faq-categories {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .category-btn {
            background: var(--white);
            color: var(--text-dark);
            border: 2px solid rgba(0, 176, 80, 0.2);
            padding: 12px 24px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
        }

        .category-btn:hover,
        .category-btn.active {
            background: var(--primary-green);
            color: var(--white);
            border-color: var(--primary-green);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px var(--shadow);
        }

        .faq-search {
            max-width: 500px;
            margin: 0 auto 40px auto;
            position: relative;
        }

        .faq-search input {
            width: 100%;
            padding: 16px 20px 16px 50px;
            border: 2px solid rgba(0, 176, 80, 0.2);
            border-radius: 12px;
            font-size: 16px;
            font-family: 'Poppins', sans-serif;
            background: var(--white);
            transition: all 0.3s ease;
        }

        .faq-search input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 4px rgba(0, 176, 80, 0.1);
        }

        .faq-search .search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            font-size: 18px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: var(--white);
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0, 176, 80, 0.08);
            border: 1px solid rgba(0, 176, 80, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
            opacity: 1;
            transform: translateY(0);
        }

        .faq-item:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 176, 80, 0.12);
        }

        .faq-item.hidden {
            opacity: 0;
            transform: translateY(20px);
            pointer-events: none;
            margin: 0;
            height: 0;
            min-height: 0;
            overflow: hidden;
        }

        .faq-question {
            padding: 24px 28px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: transparent;
            border: none;
            width: 100%;
            font-family: 'Poppins', sans-serif;
            text-align: left;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgba(0, 176, 80, 0.02);
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--text-dark);
            line-height: 1.4;
            margin: 0;
            flex-grow: 1;
            padding-right: 20px;
        }

        .faq-icon {
            font-size: 20px;
            color: var(--primary-green);
            transition: transform 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: rgba(0, 176, 80, 0.02);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 28px 28px 28px;
            color: var(--text-light);
            line-height: 1.7;
        }

        .faq-answer p {
            margin-bottom: 12px;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        .faq-answer ul {
            margin: 12px 0;
            padding-left: 20px;
        }

        .faq-answer li {
            margin-bottom: 8px;
            color: var(--text-light);
        }

        .faq-answer strong {
            color: var(--text-dark);
            font-weight: 600;
        }

        .faq-cta {
            background: var(--white);
            padding: 32px;
            border-radius: 16px;
            box-shadow: 0 8px 30px rgba(0, 176, 80, 0.1);
            border: 1px solid rgba(0, 176, 80, 0.1);
            text-align: center;
            margin-top: 40px;
            position: relative;
            overflow: hidden;
        }

        .faq-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-green), var(--light-green));
        }

        .faq-cta h3 {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 8px;
        }

        .faq-cta p {
            color: var(--text-light);
            margin-bottom: 20px;
            font-size: 16px;
        }

        .faq-cta .btn-primary {
            background: var(--primary-green);
            color: var(--white);
            padding: 14px 32px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            box-shadow: 0 4px 15px var(--shadow);
            margin-right: 12px;
        }

        .faq-cta .btn-primary:hover {
            background: var(--dark-green);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px var(--shadow);
        }

        .faq-cta .btn-secondary {
            background: transparent;
            color: var(--primary-green);
            padding: 14px 32px;
            border: 2px solid var(--primary-green);
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .faq-cta .btn-secondary:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        .no-results {
            text-align: center;
            padding: 60px 20px;
            color: var(--text-light);
            display: none;
        }

        .no-results i {
            font-size: 3rem;
            color: var(--primary-green);
            margin-bottom: 16px;
            opacity: 0.6;
        }

        .no-results h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .faq-section {
                padding: 60px 0;
            }

            .faq-container {
                padding: 0 20px;
            }

            .faq-header h2 {
                font-size: 2rem;
            }

            .faq-header p {
                font-size: 1rem;
            }

            .category-btn {
                font-size: 13px;
                padding: 10px 20px;
            }

            .faq-search input {
                padding: 14px 18px 14px 45px;
                font-size: 15px;
            }

            .faq-question {
                padding: 20px 20px;
            }

            .faq-question h3 {
                font-size: 1rem;
                padding-right: 15px;
            }

            .faq-answer-content {
                padding: 0 20px 24px 20px;
            }

            .faq-cta {
                padding: 24px 20px;
            }

            .faq-cta .btn-primary,
            .faq-cta .btn-secondary {
                display: block;
                margin: 8px 0;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .faq-categories {
                gap: 8px;
            }

            .category-btn {
                font-size: 12px;
                padding: 8px 16px;
            }

            .faq-header h2 {
                font-size: 1.75rem;
            }

            .faq-question {
                padding: 18px 16px;
            }

            .faq-question h3 {
                font-size: 0.95rem;
            }

            .faq-answer-content {
                padding: 0 16px 20px 16px;
                font-size: 14px;
            }
        }