/* Section wrapper: full-width band, dark background */
.piq-screenshots-section {
    background: #050608;
    padding: 100px 0 96px;
    border-top: 1px solid rgba(255,255,255,0.08);
}

    .piq-screenshots-section::before {
        content: "";
        position: absolute;
        top: -80px;
        left: 0;
        width: 100%;
        height: 120px;
        background: linear-gradient(to bottom, rgba(5,6,8,0) 0%, #050608 100%);
        pointer-events: none;
    }


/* Inner container: constrains width like the old PWA page */
.piq-screenshots-inner {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

/* Heading + subtitle */
.piq-screenshots-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
}

.piq-screenshots-subtitle {
    margin-bottom: 48px;
    font-size: 1.1rem;
    color: #b8b8bc;
}

/* Grid and cards */
.piq-screenshot-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.piq-screenshot-card {
    width: 240px;
    max-width: 100%;
}

    .piq-screenshot-card h3 {
        margin-top: 16px;
        margin-bottom: 4px;
        font-size: 1.05rem;
        font-weight: 700;
        color: #f7931a;
    }

    .piq-screenshot-card p {
        font-size: 0.9rem;
        color: #b8b8bc;
    }

/* Phone-style frame */
.piq-screenshot-frame {
    background: #050608;
    border-radius: 24px;
    border: 1px solid #2a2a2d;
    padding: 14px 10px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
}

    .piq-screenshot-frame img {
        display: block;
        width: 100%;
        height: 420px;
        object-fit: cover;
        border-radius: 18px;
    }

/* Responsive tweaks */
@media (max-width: 991.98px) {
    .piq-screenshot-card {
        width: 46%;
    }
}

@media (max-width: 575.98px) {
    .piq-screenshot-card {
        width: 100%;
    }

    .piq-screenshots-title {
        font-size: 2rem;
    }
}
