/* ==========================================
   SCHOOLS HERO SHELL
========================================== */

.sch-hero-shell {
    display: flex;
    justify-content: center;
    padding: 24px var(--page-padding) 90px;
}


/* ==========================================
   SCHOOLS HERO CARD
========================================== */

.sch-hero-card {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 28px;

    background: linear-gradient(
        160deg,
        #3D1E78 0%,
        #6B39BD 45%,
        #8A5BDB 75%,
        #A872FF 100%
    );

    box-shadow:
        0 30px 70px -24px rgba(107, 57, 189, 0.45);
}


/* ==========================================
   TWO-COLUMN GRID
========================================== */

.sch-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
}

.sch-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 32px;

    padding: 56px 48px 56px 52px;
}

.sch-hero-right {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================
   HERO TEXT
========================================== */

.sch-hero-text {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sch-eyebrow {
    display: inline-block;

    color: rgba(255, 255, 255, 0.65);

    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.sch-hero-text h1 {
    color: var(--white);

    font-family: var(--font-display);
    font-size: clamp(1.9rem, 3.2vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;

    margin: 0;
}

.sch-hero-text p {
    max-width: 380px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 1rem;
    line-height: 1.7;

    margin: 0;
}


/* ==========================================
   PRODUCT MENTIONS — tinted panels, not CTAs
========================================== */

.sch-product-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sch-product {
    border-radius: 16px;
    padding: 18px 20px;
}

.sch-product.app {
    background: rgba(61, 30, 120, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.sch-product.gms {
    background: rgba(138, 91, 219, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.sch-product-label {
    display: block;
    margin-bottom: 4px;

    color: var(--white);

    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.98rem;
}

.sch-product-desc {
    display: block;

    color: rgba(255, 255, 255, 0.75);

    font-size: 0.9rem;
    line-height: 1.55;
}


/* ==========================================
   HERO CTA — attached to bottom of hero card
========================================== */

.sch-hero-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    padding: 32px 52px 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.sch-hero-cta-text {
    flex-shrink: 0;
    max-width: 420px;
}

.sch-hero-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2vw, 1.6rem);
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.02em;
    margin: 0 0 6px;
}

.sch-hero-cta-subtitle {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.sch-hero-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;

    padding: 14px 26px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--white);

    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;

    border-radius: 12px;
    text-decoration: none;
    white-space: nowrap;

    transition: opacity 0.18s ease, transform 0.18s ease;
}

.sch-hero-cta-button:hover {
    opacity: 0.88;
    transform: translateY(-2px);
}