.nova-ee {
    --nova-green: var(--brand-green, #3c9532);
    --nova-green-dark: #267326;
    --nova-soft: #f6f8f6;
    --nova-text: #162016;
    --nova-muted: #647064;
    --nova-border: #dfe7df;
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--nova-text);
}

.nova-ee * {
    box-sizing: border-box;
}

.nova-ee-alert {
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
    font-weight: 700;
}

.nova-ee-alert-success {
    background: #ecfdf3;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.nova-ee-alert-error {
    background: #fff1f2;
    color: #9f1239;
    border: 1px solid #fecdd3;
}

.nova-ee-hero {
    background: radial-gradient(circle at top right, rgba(255,255,255,.20), transparent 36%), linear-gradient(135deg, var(--nova-green), #72b35f);
    color: #fff;
    border-radius: 34px;
    padding: 70px 30px;
    text-align: center;
    box-shadow: 0 24px 60px rgba(60, 149, 50, .22);
    margin-bottom: 24px;
}

.nova-ee-hero span {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255,255,255,.17);
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    font-weight: 800;
    margin-bottom: 16px;
}

.nova-ee-hero h1 {
    margin: 0 0 16px;
    font-size: clamp(2rem, 5vw, 4.4rem);
    line-height: 1;
    font-weight: 900;
    letter-spacing: -1px;
}

.nova-ee-hero p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.12rem;
    line-height: 1.7;
    opacity: .95;
}

.nova-ee-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.nova-ee-benefits div,
.nova-ee-profile-btn,
.nova-ee-form {
    background: #fff;
    border: 1px solid var(--nova-border);
    box-shadow: 0 12px 35px rgba(16, 24, 40, .05);
}

.nova-ee-benefits div {
    border-radius: 22px;
    padding: 22px;
}

.nova-ee-benefits strong {
    display: block;
    margin-bottom: 6px;
}

.nova-ee-benefits small {
    color: var(--nova-muted);
    line-height: 1.5;
}

.nova-ee-profile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-bottom: 22px;
}

.nova-ee-profile-btn {
    border-radius: 24px;
    padding: 24px;
    text-align: left;
    cursor: pointer;
    transition: .25s ease;
}

.nova-ee-profile-btn strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 900;
}

.nova-ee-profile-btn small {
    display: block;
    color: var(--nova-muted);
    margin-top: 8px;
    line-height: 1.5;
}

.nova-ee-profile-btn.is-active {
    border-color: var(--nova-green);
    background: #f0fdf4;
    transform: translateY(-2px);
}

.nova-ee-form {
    border-radius: 34px;
    padding: 28px;
}

.nova-ee-section {
    border: 1px solid var(--nova-border);
    background: #fbfdfb;
    border-radius: 28px;
    padding: 26px;
    margin-bottom: 22px;
}

.nova-ee-section-title {
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.nova-ee-section-title > span {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--nova-green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex: 0 0 auto;
}

.nova-ee-section-title h2 {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 900;
}

.nova-ee-section-title p {
    margin: 5px 0 0;
    color: var(--nova-muted);
    line-height: 1.5;
}

.nova-ee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.nova-ee label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-weight: 800;
}

.nova-ee label span {
    color: var(--nova-text);
}

.nova-ee-full {
    grid-column: 1 / -1;
}

.nova-ee input,
.nova-ee select,
.nova-ee textarea {
    width: 100%;
    border: 1px solid #cfdacf;
    background: #fff;
    border-radius: 16px;
    padding: 14px 15px;
    color: var(--nova-text);
    font-size: 1rem;
}

.nova-ee textarea {
    resize: vertical;
}

.nova-ee input:focus,
.nova-ee select:focus,
.nova-ee textarea:focus {
    outline: none;
    border-color: var(--nova-green);
    box-shadow: 0 0 0 4px rgba(60, 149, 50, .14);
}

.nova-ee small {
    color: var(--nova-muted);
    line-height: 1.4;
}

.nova-ee-search-wrap {
    position: relative;
    margin-bottom: 18px;
}

.nova-ee-results {
    position: absolute;
    z-index: 20;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--nova-border);
    box-shadow: 0 18px 45px rgba(16, 24, 40, .14);
    overflow: hidden;
    display: none;
    max-height: 360px;
    overflow-y: auto;
}

.nova-ee-result {
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid #edf2ed;
}

.nova-ee-result:hover {
    background: #f0fdf4;
}

.nova-ee-result strong,
.nova-ee-result small {
    display: block;
}

.nova-ee-result small {
    margin-top: 4px;
}

.nova-ee-school-card {
    margin-top: 18px;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 20px;
    padding: 18px;
}

.nova-ee-school-card strong {
    display: block;
    color: #166534;
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.nova-ee-school-card p {
    margin: 0;
    color: #315c36;
    line-height: 1.55;
}

.nova-ee-check {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 10px !important;
    margin-top: 18px;
    font-weight: 700;
    line-height: 1.45;
}

.nova-ee-check input {
    width: auto;
    margin-top: 4px;
}

.nova-ee-manual-school {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px dashed #b6c8b6;
}

.nova-ee-submit {
    text-align: center;
    padding: 26px 10px 8px;
}

.nova-ee-consent {
    justify-content: center;
    max-width: 760px;
    margin: 0 auto 16px;
    color: var(--nova-muted);
    font-weight: 600;
}

.nova-ee-submit p {
    color: var(--nova-muted);
    margin: 0 0 20px;
}

.nova-ee-submit button {
    border: none;
    background: var(--nova-green);
    color: #fff;
    border-radius: 999px;
    padding: 17px 38px;
    font-size: 1.05rem;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 16px 36px rgba(60, 149, 50, .28);
    transition: .25s ease;
}

.nova-ee-submit button:hover {
    background: var(--nova-green-dark);
    transform: translateY(-1px);
}

@media (max-width: 900px) {
    .nova-ee-benefits,
    .nova-ee-profile,
    .nova-ee-grid {
        grid-template-columns: 1fr;
    }

    .nova-ee-form {
        padding: 18px;
        border-radius: 26px;
    }

    .nova-ee-section {
        padding: 20px;
        border-radius: 22px;
    }

    .nova-ee-hero {
        padding: 55px 22px;
        border-radius: 28px;
    }
}
