/* Products Page Styles */
.flagship-product {
    padding: 60px 0;
    background: var(--white);
}

.flagship-badge {
    text-align: center;
    margin-bottom: 2rem;
}

.flagship-badge i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.flagship-badge span {
    display: block;
    color: var(--primary-color);
    font-weight: bold;
    letter-spacing: 2px;
}

.product-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-hero-content h1 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.product-hero-content h2 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.product-hero-content .lead {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.product-stats {
    display: flex;
    gap: 3rem;
    margin: 2rem 0;
}

.product-stats .stat {
    text-align: center;
}

.product-stats .stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.product-stats .stat p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mockup-container {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 80px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 160, 229, 0.3);
    border: 3px solid var(--primary-dark);
}

.mockup-container i {
    font-size: 10rem;
    color: var(--white);
}

.product-features {
    padding: 80px 0;
    background: var(--light-gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card > p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-list-small {
    list-style: none;
    padding-left: 0;
}

.feature-list-small li {
    padding: 0.4rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 25px;
}

.feature-list-small li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.deployment-success {
    padding: 80px 0;
    background: var(--white);
}

.success-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.success-content h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.success-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.success-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.metric i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.metric h3 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.metric p {
    color: var(--text-light);
}

.other-products {
    padding: 80px 0;
    background: var(--light-gray);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.product-card-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.product-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: var(--text-light);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .product-hero {
        grid-template-columns: 1fr;
    }

    .product-hero-content h1 {
        font-size: 2rem;
    }

    .product-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

    .mockup-container {
        padding: 60px 40px;
    }

    .mockup-container i {
        font-size: 6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
