/* ========== NetSim + Generative AI Page Styles ========== */
/* These styles override or complement main.css for this page only. */

.genai-hero {
    background: linear-gradient(135deg, #0a1628 0%, #0d2847 40%, #0f3460 70%, #132e52 100%);
    color: #fff;
    padding: 5rem 2rem 3.5rem;
    margin-top: 79px;
    text-align: center;
}

.genai-hero h1 {
    color: #fff;
    font-size: 2.4rem;
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.genai-hero .hero-sub {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 300;
    margin: 0 auto;
    max-width: 640px;
    text-align: center;
}

@media (min-width: 65.625em) {
    .genai-hero h1 {
        font-size: 2.8rem;
    }
}

.genai-slide-img {
    width: 100%;
    max-width: 1000px;
    height: auto;
    display: block;
    margin: 1.5rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.genai-section {
    margin-bottom: 2.5rem;
}

.mobile-summary {
    display: none;
}

@media (max-width: 768px) {
    .mobile-summary {
        display: block;
        background: #f8f9fa;
        border-radius: 10px;
        padding: 1rem 1.2rem;
        margin: -0.5rem 0 1rem;
        font-size: 0.88rem;
    }

    .mobile-summary h3 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    .mobile-summary ul {
        margin-left: 20px;
        margin-bottom: 0.5rem;
    }

    .mobile-summary li {
        margin-bottom: 0.2rem;
    }

    .mobile-summary .comparison {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        margin-top: 0.5rem;
    }

    .mobile-summary .comp-box {
        border-radius: 8px;
        padding: 0.6rem;
        text-align: center;
        font-size: 0.85rem;
    }

    .mobile-summary .comp-manual {
        background: #fff3f3;
    }

    .mobile-summary .comp-ai {
        background: #f0faf4;
    }

    .mobile-summary .comp-box strong {
        display: block;
        font-size: 1rem;
        margin-bottom: 0.2rem;
    }
}

.genai-cta {
    background: linear-gradient(135deg, #0a1628, #0d2847);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 2.5rem 0 1rem;
}

.genai-cta h2 {
    color: #fff;
    text-align: center;
    margin-top: 0;
}

.genai-cta p {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.genai-cta .cta-btn {
    display: inline-block;
    background: #CE3335;
    color: #fff;
    padding: 0.7rem 2rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 235ms ease-in-out;
}

.genai-cta .cta-btn:hover {
    background: #b52b2d;
    transform: translate3d(0, 2px, 0);
}