/* Solutions Page Styles */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

    .solution-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .solution-card:hover::before {
        transform: scaleX(1);
    }

    .solution-card h3 {
        color: var(--text-color);
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .solution-card p {
        color: var(--text-secondary);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .feature-list li {
        display: flex;
        align-items: center;
        margin-bottom: 0.75rem;
        color: var(--text-secondary);
        font-size: 0.95rem;
    }

        .feature-list li::before {
            content: '✓';
            color: var(--primary-color);
            margin-right: 0.5rem;
            font-weight: bold;
        }

/* Pricing Page Styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    gap: 1rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 34px;
}

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

    .toggle-slider:before {
        position: absolute;
        content: "";
        height: 26px;
        width: 26px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .toggle-slider {
    background-color: var(--primary-color);
}

    input:checked + .toggle-slider:before {
        transform: translateX(26px);
    }

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

    .pricing-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        border-color: var(--primary-color);
    }

    .pricing-card.featured {
        border: 2px solid var(--primary-color);
        transform: scale(1.05);
    }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

    .pricing-card h3 {
        color: var(--text-color);
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .pricing-card .price {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--text-color);
        margin: 1rem 0;
    }

        .pricing-card .price span {
            font-size: 1rem;
            color: var(--text-secondary);
        }

    .pricing-card .features {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
    }

        .pricing-card .features li {
            margin-bottom: 0.75rem;
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

            .pricing-card .features li::before {
                content: '✓';
                color: var(--primary-color);
                margin-right: 0.5rem;
                font-weight: bold;
            }

    .pricing-card .cta-button {
        display: inline-block;
        padding: 0.75rem 2rem;
        background: var(--primary-color);
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        font-weight: 500;
        width: 100%;
        text-align: center;
    }

        .pricing-card .cta-button:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .pricing-card .cta-button.secondary {
            background: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }

            .pricing-card .cta-button.secondary:hover {
                background: var(--primary-color);
                color: white;
            }

/* FAQ Styles */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.faq-item {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

    .faq-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        border-color: var(--primary-color);
    }

    .faq-item h4 {
        color: var(--text-color);
        margin-bottom: 0.5rem;
        font-size: 1.1rem;
        font-weight: 600;
    }

    .faq-item p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .solutions-grid,
    .pricing-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

        .pricing-card.featured:hover {
            transform: translateY(-5px);
        }

    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }

    .solution-card,
    .pricing-card,
    .faq-item {
        padding: 1.5rem;
    }
}

/* Additional Features Section */
.additional-features {
    margin: 4rem 0;
    padding: 3rem;
    background: var(--card-bg);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

    .additional-features h2 {
        color: var(--text-color);
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2rem;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

    .feature-item:hover {
        transform: translateY(-5px);
    }

    .feature-item i {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 1rem;
    }

    .feature-item h3 {
        color: var(--text-color);
        margin-bottom: 0.5rem;
        font-size: 1.2rem;
    }

    .feature-item p {
        color: var(--text-secondary);
        font-size: 0.95rem;
        line-height: 1.6;
    }

/* Enterprise Solutions */
.enterprise-solutions {
    margin: 4rem 0;
    padding: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 12px;
    color: white;
}

    .enterprise-solutions h2 {
        margin-bottom: 2rem;
        text-align: center;
        font-size: 2rem;
    }

.enterprise-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.enterprise-feature {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .enterprise-feature:hover {
        transform: translateY(-5px);
        background: rgba(255, 255, 255, 0.15);
    }

    .enterprise-feature h3 {
        margin-bottom: 1rem;
        font-size: 1.3rem;
    }

    .enterprise-feature p {
        opacity: 0.9;
        line-height: 1.6;
    }

/* Contact Section */
.contact-section {
    margin: 4rem 0;
    text-align: center;
}

    .contact-section h2 {
        color: var(--text-color);
        margin-bottom: 1rem;
        font-size: 2rem;
    }

    .contact-section p {
        color: var(--text-secondary);
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.contact-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
}

    .contact-button:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

/* Products Page Styles */
.products-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

    .products-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(135deg, rgba(99, 91, 255, 0.05), rgba(99, 91, 255, 0.02));
        z-index: -1;
    }

    .products-section h2 {
        text-align: center;
        color: var(--text-color);
        margin-bottom: 1rem;
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .products-section > p {
        text-align: center;
        color: var(--text-secondary);
        max-width: 600px;
        margin: 0 auto 4rem;
        font-size: 1.1rem;
        line-height: 1.6;
    }

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 2rem;
}

.product-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .product-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: 0;
    }

    .product-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
        border-color: transparent;
    }

        .product-card:hover::before {
            opacity: 0.02;
        }

.product-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
}

.product-card:hover .product-icon {
    transform: scale(1.1) rotate(5deg);
}

.product-icon i {
    font-size: 2rem;
    color: white;
}

.product-card h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.product-card p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.product-card .feature-list {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

    .product-card .feature-list li {
        display: flex;
        align-items: center;
        margin-bottom: 1rem;
        color: var(--text-secondary);
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

        .product-card .feature-list li:hover {
            transform: translateX(5px);
            color: var(--primary-color);
        }

        .product-card .feature-list li::before {
            content: '✓';
            color: var(--primary-color);
            margin-right: 0.75rem;
            font-weight: bold;
            font-size: 1.1rem;
        }

.learn-more {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: auto;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

    .learn-more i {
        margin-left: 0.75rem;
        transition: transform 0.3s ease;
    }

    .learn-more:hover {
        color: var(--primary-dark);
    }

        .learn-more:hover i {
            transform: translateX(8px);
        }

/* Integration Section */
.integration-section {
    background: linear-gradient(135deg, var(--card-bg), var(--card-bg-dark));
    padding: 6rem 2rem;
    text-align: center;
    margin: 6rem 0;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

    .integration-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        opacity: 0.5;
    }

    .integration-section h2 {
        color: var(--text-color);
        margin-bottom: 1.5rem;
        font-size: 2.5rem;
        font-weight: 700;
        position: relative;
    }

    .integration-section > p {
        color: var(--text-secondary);
        margin-bottom: 4rem;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
        line-height: 1.7;
        position: relative;
    }

.integration-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
    position: relative;
}

.integration-feature {
    padding: 2.5rem;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .integration-feature:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .integration-feature i {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        transition: transform 0.4s ease;
    }

    .integration-feature:hover i {
        transform: scale(1.1);
    }

    .integration-feature h3 {
        color: var(--text-color);
        margin-bottom: 1rem;
        font-size: 1.5rem;
        font-weight: 600;
    }

    .integration-feature p {
        color: var(--text-secondary);
        font-size: 1.05rem;
        line-height: 1.7;
    }

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 30px;
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FFFFFF' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }

    .cta-section h2 {
        margin-bottom: 1.5rem;
        font-size: 3rem;
        font-weight: 700;
        position: relative;
    }

    .cta-section p {
        margin-bottom: 3rem;
        opacity: 0.9;
        font-size: 1.2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
        position: relative;
    }

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    position: relative;
}

    .cta-buttons .button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 12px;
        transition: all 0.3s ease;
    }

        .cta-buttons .button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .cta-buttons .button.secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.2);
        }

            .cta-buttons .button.secondary:hover {
                background: rgba(255, 255, 255, 0.2);
                border-color: rgba(255, 255, 255, 0.3);
            }

/* Responsive Design */
@media (max-width: 768px) {
    .products-section {
        padding: 4rem 0;
    }

        .products-section h2 {
            font-size: 2rem;
        }

    .products-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
        gap: 2rem;
    }

    .integration-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

        .cta-buttons .button {
            width: 100%;
        }

    .product-card,
    .integration-feature {
        padding: 2rem;
    }

    .cta-section h2 {
        font-size: 2.5rem;
    }
}
