@charset "utf-8";

.school-site .brand-copy strong {
    color: var(--brand-navy);
}

.school-hero {
    min-height: calc(100vh - var(--header-offset));
    min-height: calc(100svh - var(--header-offset));
    padding: clamp(1.1rem, 2.2vh, 1.7rem) 0;
    background:
        linear-gradient(to right, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 44%, rgba(255, 255, 255, 0.72) 100%),
        linear-gradient(135deg, rgba(20, 89, 255, 0.16), rgba(54, 197, 255, 0.08)),
        url("../../images/generated/background-saas-environment.png") center / cover no-repeat;
}

.school-hero .hero-grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(410px, 0.98fr);
    gap: clamp(1.6rem, 3vw, 2.5rem);
}

.school-hero .hero-copy {
    max-width: 650px;
}

.school-hero h1 {
    font-size: clamp(3rem, 4.15vw, 3.95rem);
    line-height: 1.02;
    margin-top: 0.8rem;
    max-width: 18ch;
}

.school-hero .hero-lead {
    font-size: 0.98rem;
    margin-top: 0.8rem;
}

.school-hero .hero-lead-supportive {
    display: none;
}

.school-hero .hero-actions {
    margin-top: 1.05rem;
}

.school-dashboard-wrap {
    min-height: clamp(320px, 47vh, 390px);
}

.school-device-frame {
    background: rgba(255, 255, 255, 0.88);
    padding: 0.65rem;
    width: min(590px, 100%);
}

.school-device-frame .hero-visual-photo {
    object-position: top left;
    background: #f7fbff;
}

.school-hero .hero-float-card {
    min-width: 112px;
    padding: 7px 10px;
}

.school-hero .hero-float-card small {
    font-size: 13px;
}

.school-hero .stat-icon {
    width: 32px;
    height: 32px;
}

.school-offer-rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    overflow: hidden;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(20, 89, 255, 0.1);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(18px);
}

.offer-item {
    position: relative;
    min-height: 104px;
    padding: 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.offer-item + .offer-item {
    border-left: 1px solid rgba(7, 21, 39, 0.08);
}

.offer-item::before {
    content: "";
    width: 34px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, #1459ff, #36c5ff);
    margin-bottom: 0.35rem;
}

.offer-item strong {
    color: var(--brand-navy);
    font-size: 1rem;
    line-height: 1.2;
}

.offer-item span {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.35;
}

.promo-strip-section {
    padding-top: 2rem;
}

.feature-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-card-grid .card {
    min-height: 245px;
}

.school-solve-grid {
    align-items: stretch;
}

.school-problem-list {
    margin-top: 1.2rem;
}

.school-signal-stack {
    margin-top: 1.5rem;
}

.school-signal-stack .mini-stat {
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(255, 255, 255, 0.16);
}

.school-signal-stack .mini-stat span {
    color: rgba(243, 251, 255, 0.82);
}

.process-grid .team-card {
    min-height: 230px;
}

.school-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.school-cta .display-title {
    max-width: 13ch;
    margin-top: 0.7rem;
}

.school-cta .button-row {
    flex: 0 0 auto;
    margin-top: 0;
}

.school-lead-strip {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 249, 255, 0.96));
}

.school-lead-strip .section-head h2 {
    max-width: 12ch;
}

.field-label {
    font-weight: 700;
    font-size: 0.95rem;
}

.module-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.module-option {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    min-height: 50px;
    padding: 0.85rem 0.95rem;
    border-radius: 14px;
    border: 1px solid rgba(7, 21, 39, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text);
    font-weight: 700;
    line-height: 1.35;
    cursor: pointer;
    transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.module-option:hover {
    border-color: rgba(20, 89, 255, 0.22);
    background: rgba(230, 243, 255, 0.72);
    box-shadow: var(--shadow-sm);
}

.module-option input {
    width: 18px;
    height: 18px;
    margin-top: 0.1rem;
    accent-color: #1459ff;
    flex: 0 0 auto;
}

@media (max-width: 1080px) {
    .school-hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .feature-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .school-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .school-cta .button-row {
        width: 100%;
    }
}

@media (max-width: 720px) {
    .school-hero {
        min-height: auto;
        padding: 2.2rem 0 2.6rem;
        background:
            linear-gradient(to bottom, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
            url("../../images/generated/background-saas-environment.png") 62% center / cover no-repeat;
    }

    .school-hero h1 {
        max-width: 100%;
    }

    .school-dashboard-wrap {
        min-height: auto;
    }

    .school-offer-rail {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .offer-item {
        min-height: auto;
        padding: 1rem;
    }

    .offer-item + .offer-item {
        border-left: 0;
        border-top: 1px solid rgba(7, 21, 39, 0.08);
    }

    .feature-card-grid {
        grid-template-columns: 1fr;
    }

    .module-options {
        grid-template-columns: 1fr;
    }

    .school-cta .display-title {
        max-width: 100%;
    }
}
