﻿ 
/*body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f5f7fb;
    color: #333;
}*/

/* Container */
.container {
    max-width: 1200px;
    margin: auto;
    /*padding: 60px 20px;*/
}

/* Intro */
.solutions-intro {
    text-align: center;
    margin-bottom: 50px;
}

    .solutions-intro h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }

    .solutions-intro p {
        max-width: 800px;
        margin: auto;
        font-size: 17px;
        line-height: 1.7;
        color: #555;
    }

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.15);
    }

    .product-card img {
        /* width: 80px;
        height: 80px;*/
        width: 200px;
        height: 160px;
        object-fit: contain;
        margin: 0 auto 15px;
    }

    .product-card h3 {
        margin-bottom: 10px;
    }

    .product-card ul {
        list-style: none;
        padding: 0;
        margin-bottom: 15px;
    }

        .product-card ul li {
            font-size: 14px;
            margin-bottom: 5px;
            color: #555;
        }

.tag {
    display: inline-block;
    background: #4f46e5;
    color: #fff;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 15px;
    margin-bottom: 10px;
}

.card-buttons a {
    display: inline-block;
    margin: 5px;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
}

.btn-demo {
    background: #4f46e5;
    color: white;
}

.btn-learn {
    background: #e0e0e0;
    color: #333;
}

/* Workflow Section */
.workflow {
    background: #eef2ff;
    padding: 60px 20px;
    text-align: center;
}

    .workflow h2 {
        margin-bottom: 40px;
    }

.workflow-diagram {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.workflow-step {
    background: white;
    padding: 25px;
    border-radius: 12px;
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    position: relative;
}

    .workflow-step:not(:last-child)::after {
        content: "→";
        font-size: 24px;
        color: #4f46e5;
        position: absolute;
        right: -30px;
        top: 50%;
        transform: translateY(-50%);
    }

/* Screenshots Section */
.screenshots {
    padding: 60px 20px;
    text-align: center;
}

    .screenshots img {
        max-width: 300px;
        margin: 15px;
        border-radius: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

/* CTA */
.cta {
    text-align: center;
    padding: 70px 20px;
    background: #4f46e5;
    color: white;
}

    .cta a {
        display: inline-block;
        margin-top: 20px;
        padding: 12px 25px;
        border-radius: 5px;
        background: white;
        color: #4f46e5;
        font-weight: bold;
        text-decoration: none;
    }

/* Footer */
 

/* Responsive */
@media (max-width: 768px) {
    .workflow-step:not(:last-child)::after {
        content: "";
    }
}
 