.scholarship-request-form {
    margin-top: 1.5rem;
    padding: 0 1rem;

    &__hero {
        display: grid;
        grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr);
        gap: 1.5rem;
        padding: 1.75rem;
        margin-bottom: 1.5rem;
        border: 1px solid rgba(12, 71, 120, 0.12);
        border-radius: 24px;
        background:
            linear-gradient(135deg, rgba(0, 85, 147, 0.08), rgba(0, 85, 147, 0.02)),
            #fff;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
    }

    &__eyebrow {
        display: inline-flex;
        align-items: center;
        padding: 0.35rem 0.75rem;
        margin-bottom: 0.9rem;
        border-radius: 999px;
        background: rgba(0, 85, 147, 0.1);
        color: #005593;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    &__title {
        margin-bottom: 0.75rem;
        color: #17324d;
        font-size: 1.8rem;
        font-weight: 800;
        line-height: 1.15;
    }

    &__description {
        max-width: 620px;
        margin: 0;
        color: #526275;
        font-size: 1rem;
        line-height: 1.6;
    }

    &__stats {
        display: grid;
        gap: 0.85rem;
    }

    &__stat {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        padding: 1rem 1.1rem;
        border: 1px solid rgba(0, 85, 147, 0.08);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.88);

        strong {
            color: #17324d;
            font-size: 1rem;
            font-weight: 700;
        }
    }

    &__stat-label {
        color: #64748b;
        font-size: 0.8rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    &__section {
        padding: 1.5rem;
        margin-bottom: 1.25rem;
        border: 1px solid #e5edf5;
        border-radius: 22px;
        background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
        box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
    }

    &__section--compact {
        margin-bottom: 0;
    }

    &__section-header {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.5rem;

        h4 {
            margin: 0 0 0.25rem;
            color: #17324d;
            font-size: 1.15rem;
            font-weight: 800;
        }

        p {
            margin: 0;
            color: #64748b;
            line-height: 1.5;
        }
    }

    &__section-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 2.75rem;
        height: 2.75rem;
        border-radius: 16px;
        background: linear-gradient(135deg, #005593, #0b77c7);
        color: #fff;
        box-shadow: 0 10px 20px rgba(0, 85, 147, 0.22);
        flex-shrink: 0;

        i {
            font-size: 1rem;
        }
    }

    &__submit {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;

        .btn {
            min-width: 220px;
            padding: 0.85rem 1.25rem;
            border-radius: 14px;
            box-shadow: 0 12px 24px rgba(0, 85, 147, 0.18);
            font-weight: 700;
        }
    }

    &__field {
        height: 100%;
        padding: 1rem;
        border: 1px solid #e5edf5;
        border-radius: 18px;
        background: #fff;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.8),
            0 8px 18px rgba(15, 23, 42, 0.04);

        label {
            color: #526275;
        }

        .input-app {
            border-radius: 12px;
            border-color: #d9e5f1;
            min-height: 42px;
        }
    }

    &__field--readonly {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    &__field-label {
        color: #526275;
    }

    &__field-value {
        margin-left: 0 !important;
        color: #17324d;
        font-weight: 600 !important;
        font-size: 0.95rem !important;
        line-height: 1.5;
    }

    @media (max-width: 991.98px) {
        &__hero {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 767.98px) {
        margin-top: 1rem;

        &__hero,
        &__section {
            padding: 1.2rem;
            border-radius: 18px;
        }

        &__title {
            font-size: 1.45rem;
        }

        &__section-header {
            margin-bottom: 1.25rem;
        }

        &__submit {
            justify-content: stretch;

            .btn {
                width: 100%;
                min-width: 0;
            }
        }
    }
}
