/* ============================
   PRODUCTS SECTION
   ============================ */
.products {
    padding: 100px 10% 20px;
    text-align: center;
    background: #ffffff;
}

.product-visual {
    width: min(90%, 1100px);
    aspect-ratio: 16 / 9;
    margin: 0 auto 40px auto;

    background: #ffffff;
    border-radius: 24px;

    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.12);

    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* full bleed */
}

/* TAGLINE */
.product-tagline {
    font-size: 18px;
    color: #222;
    margin-bottom: 40px;
}

/* STATS ROW */
.product-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #2087ff;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: #555;
    line-height: 1.4;
}

/* ============================
   MOBILE VIEW
   ============================ */
@media (max-width: 900px) {

    .products {
        padding: 70px 6%;
    }

    .product-visual {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 5 / 3;   /* maintains same shape */
        border-radius: 18px;
        margin-bottom: 30px;
    }

    .product-stats {
        gap: 30px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 13px;
    }
}
