/* === PRODUCTS PAGE === */
.products-showcase-grid {
    padding: 80px 0;
}

.products-showcase-grid + .section {
    padding-top: 20px;
}

/* === GRID === */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
    margin-top: 48px;
}

/* ===== CARD ===== */
.product-card {
    background: var(--panel);
    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: .3s ease;
    box-shadow: var(--shadow);
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: var(--teal);
    box-shadow: var(--shadow), var(--glow-teal);
}

/* ===== LOGO ===== */

.product-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ===== STATUS ===== */

.product-status {
    margin-bottom: 18px;
}

/* ===== TITLE ===== */

.product-card h3 {
    margin-bottom: 12px;
    color: var(--cream);
}

/* ===== DESCRIPTION ===== */

.product-card p {
    color: var(--cream-dim);
    line-height: 1.7;
    margin-bottom: 22px;
}

/* ===== FEATURE ===== */

.product-feature {
    list-style: none;
    margin: 0;
    padding: 0;
    flex: 1;
}

.product-feature li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    color: var(--cream-dim);
}

.product-feature li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

/* ===== BUTTON ===== */

.product-card .btn {
    margin-top: 28px;
    width: 100%;
    justify-content: center;
}

/* =========================================
   CTA
========================================= */

.cta {
    background: linear-gradient(
        180deg,
        var(--panel),
        var(--panel-2)
    );

    border: 1px solid var(--rule);
    border-radius: var(--radius);
    padding: 64px 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.cta-title {
    margin: 20px 0;
}

.cta-desc {
    max-width: 700px;
    margin: 0 auto 36px;
    color: var(--cream-dim);
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* ===== STATS ===== */

.cta-stats {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 48px;
    padding-top: 36px;
    border-top: 1px solid var(--rule);
}

.cta-stat {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cta-stat strong {
    color: var(--yellow);
    font-size: 1.2rem;
}

.cta-stat span {
    color: var(--cream-dim);
    font-size: .92rem;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:768px){

    .products-showcase-grid{
        padding:60px 0;
      
    }

    .product-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .product-card{
        padding:24px;
    }

    .cta{
        padding:48px 24px;
    }

    .cta-actions{
        flex-direction:column;
    }

    .cta-actions .btn{
        width:100%;
    }

    .cta-stats{
        grid-template-columns:1fr;
        gap:24px;
    }
    
       .section-header,
    .section-head{
        max-width:100%;
        margin-bottom:40px;
    }
}

/* ===== INTRO SEO ===== */

.products-intro{
    max-width:900px;
    margin:0 auto 70px;
    padding:0 22px;
}

.products-intro-line{
    width:70px;
    height:4px;
    border-radius:999px;
    background:linear-gradient(
        90deg,
        var(--teal),
        var(--yellow)
    );
    margin-bottom:24px;
}

.products-intro-content h2{
    font-size:2rem;
    line-height:1.25;
    margin-bottom:20px;
    color:var(--cream);
}

.products-intro-content p{
    font-size:1.05rem;
    line-height:1.9;
    color:var(--cream-dim);
    margin-bottom:20px;
}

.products-intro-content strong{
    color:var(--teal);
    font-weight:700;
}

body.light .products-intro-content h2{
    color:var(--cream);
}

body.light .products-intro-content p{
    color:var(--cream-dim);
}

@media(max-width:768px){

.products-intro{
    margin-bottom:50px;
}

.products-intro-content h2{
    font-size:1.6rem;
}

.products-intro-content p{
    font-size:1rem;
}

}