@font-face {
    font-family: "Inter";
    src: url("../fonts/inter-latin-variable.woff2") format("woff2");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    --pae-navy: #0b2d5b;
    --pae-blue: #1456a0;
    --pae-teal: #0d7f78;
    --pae-ink: #17324d;
    --pae-muted: #64758a;
    --pae-line: #d8e1e8;
    --pae-soft: #f3f8fa;
    --pae-white: #ffffff;
    --pae-success: #0a7a52;
    --pae-danger: #a12d2d;
    --pae-shadow: 0 20px 50px rgba(24, 52, 82, 0.12);
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    background: #f7fafb;
    color: var(--pae-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
}

a {
    color: inherit;
}

.pae-shell {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.pae-header {
    background: var(--pae-white);
    border-bottom: 1px solid var(--pae-line);
}

.pae-header-inner {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pae-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.pae-brand img {
    width: 58px;
    height: 58px;
    object-fit: contain;
}

.pae-brand span {
    display: grid;
}

.pae-brand strong {
    color: var(--pae-navy);
    font-size: 1.12rem;
}

.pae-brand small {
    color: var(--pae-muted);
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: .68rem;
}

.pae-contact {
    color: var(--pae-teal);
    font-weight: 800;
}

.pae-hero {
    background:
        radial-gradient(circle at 85% 30%, rgba(43, 168, 158, .18), transparent 30%),
        linear-gradient(135deg, #0a244a 0%, #113e72 100%);
    color: var(--pae-white);
    padding: 58px 0;
}

.pae-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 40px;
}

.pae-eyebrow {
    margin: 0 0 8px;
    color: var(--pae-teal);
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.pae-hero .pae-eyebrow {
    color: #81ddd4;
}

.pae-hero h1,
.pae-card-heading h2,
.pae-side-card h2,
.pae-success h2 {
    margin: 0;
    letter-spacing: -.035em;
    line-height: 1.1;
}

.pae-hero h1 {
    font-size: clamp(2.25rem, 6vw, 4.4rem);
}

.pae-lead {
    max-width: 720px;
    margin: 20px 0 0;
    color: rgba(255,255,255,.82);
    font-size: 1.08rem;
}

.pae-campus-note {
    min-width: 255px;
    padding: 20px 22px;
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 18px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(10px);
    display: grid;
    gap: 4px;
}

.pae-campus-note span {
    color: rgba(255,255,255,.78);
}

.pae-section {
    padding: 54px 0 72px;
}

.pae-content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 28px;
    align-items: start;
}

.pae-form-card,
.pae-side-card {
    border: 1px solid var(--pae-line);
    border-radius: 24px;
    background: var(--pae-white);
    box-shadow: var(--pae-shadow);
}

.pae-form-card {
    padding: clamp(24px, 4vw, 44px);
}

.pae-card-heading {
    margin-bottom: 28px;
}

.pae-card-heading h2,
.pae-success h2 {
    font-size: clamp(1.75rem, 4vw, 2.45rem);
}

.pae-card-heading p:last-child {
    color: var(--pae-muted);
    margin-bottom: 0;
}

.pae-card-heading span,
.pae-field label span {
    color: #b42318;
}

.pae-form {
    display: grid;
    gap: 20px;
}

.pae-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.pae-field {
    display: grid;
    gap: 8px;
}

.pae-field label {
    font-weight: 800;
}

.pae-field input,
.pae-field select {
    width: 100%;
    min-height: 52px;
    border: 1px solid #bccbd5;
    border-radius: 12px;
    background: var(--pae-white);
    color: var(--pae-ink);
    padding: 12px 14px;
    font: inherit;
    outline: none;
}

.pae-field input:focus,
.pae-field select:focus {
    border-color: var(--pae-teal);
    box-shadow: 0 0 0 4px rgba(13,127,120,.12);
}

.pae-field small,
.pae-help {
    color: var(--pae-muted);
}

.pae-consent {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border: 1px solid var(--pae-line);
    border-radius: 14px;
    background: var(--pae-soft);
    cursor: pointer;
}

.pae-consent input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--pae-teal);
}

.pae-button {
    min-height: 52px;
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.pae-button-primary {
    background: var(--pae-teal);
    color: var(--pae-white);
    box-shadow: 0 12px 24px rgba(13,127,120,.2);
}

.pae-button-primary:hover {
    background: #096c66;
}

.pae-button-secondary {
    border: 1px solid var(--pae-line);
    background: var(--pae-white);
    color: var(--pae-navy);
}

.pae-alert {
    margin-bottom: 24px;
    padding: 16px 18px;
    border: 1px solid #efc5c5;
    border-radius: 14px;
    background: #fff3f3;
    color: var(--pae-danger);
}

.pae-alert ul {
    margin: 8px 0 0;
    padding-left: 20px;
}

.pae-side-card {
    padding: 28px;
    position: sticky;
    top: 24px;
}

.pae-side-card h2 {
    font-size: 1.65rem;
}

.pae-side-card ul {
    margin: 22px 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 13px;
}

.pae-side-card li {
    position: relative;
    padding-left: 28px;
}

.pae-side-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pae-success);
    font-weight: 900;
}

.pae-address {
    border-top: 1px solid var(--pae-line);
    padding-top: 20px;
    display: grid;
    color: var(--pae-muted);
}

.pae-address strong {
    color: var(--pae-ink);
    margin-bottom: 4px;
}

.pae-success {
    text-align: center;
    padding: 12px 0;
}

.pae-success-icon {
    width: 66px;
    height: 66px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #e5f7f0;
    color: var(--pae-success);
    font-size: 2rem;
    font-weight: 900;
}

.pae-success > p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.pae-reference {
    max-width: 420px;
    margin: 26px auto;
    padding: 18px;
    border: 1px solid #b9e4d3;
    border-radius: 16px;
    background: #effaf6;
    display: grid;
    gap: 4px;
}

.pae-reference span {
    color: var(--pae-muted);
    font-size: .82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.pae-reference strong {
    color: var(--pae-success);
    font-size: 1.35rem;
}

.pae-footer {
    border-top: 1px solid var(--pae-line);
    background: var(--pae-white);
    color: var(--pae-muted);
}

.pae-footer .pae-shell {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.pae-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

@media (max-width: 860px) {
    .pae-hero-grid,
    .pae-content-grid {
        grid-template-columns: 1fr;
    }

    .pae-campus-note {
        min-width: 0;
    }

    .pae-side-card {
        position: static;
    }
}

@media (max-width: 600px) {
    .pae-shell {
        width: min(100% - 24px, 1120px);
    }

    .pae-header-inner {
        min-height: 72px;
    }

    .pae-brand img {
        width: 48px;
        height: 48px;
    }

    .pae-brand strong {
        font-size: 1rem;
    }

    .pae-brand small,
    .pae-contact {
        display: none;
    }

    .pae-hero {
        padding: 40px 0;
    }

    .pae-section {
        padding: 24px 0 44px;
    }

    .pae-form-card,
    .pae-side-card {
        border-radius: 18px;
    }

    .pae-form-card {
        padding: 22px 18px;
    }

    .pae-two-column {
        grid-template-columns: 1fr;
    }

    .pae-footer .pae-shell {
        min-height: 88px;
        flex-direction: column;
        justify-content: center;
    }
}

/* Step 3: Email and parent WhatsApp confirmation */
.pae-whatsapp-step {
    max-width: 560px;
    margin: 28px auto 22px;
    padding: 22px;
    border: 1px solid #bde7cc;
    border-radius: 18px;
    background: #f1fbf5;
    display: grid;
    justify-items: center;
    gap: 12px;
}

.pae-whatsapp-step h3 {
    margin: 0;
    color: var(--pae-ink);
    font-size: 1.18rem;
}

.pae-whatsapp-step p,
.pae-whatsapp-step small {
    margin: 0;
    color: var(--pae-muted);
}

.pae-button-whatsapp {
    width: min(100%, 360px);
    background: #128c4a;
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(18, 140, 74, .20);
}

.pae-button-whatsapp:hover {
    background: #0d753d;
}

.pae-email-note {
    color: var(--pae-muted);
    font-size: .94rem;
}

/* Step 4: Instant PGI class curriculum and fee information */
.pae-information {
    margin: 36px 0 30px;
    padding-top: 34px;
    border-top: 1px solid var(--pae-line);
    text-align: left;
}

.pae-information-heading {
    margin-bottom: 22px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.pae-information-heading h2 {
    margin: 0;
    color: var(--pae-navy);
    font-size: clamp(1.65rem, 4vw, 2.2rem);
    line-height: 1.15;
}

.pae-information-heading p:last-child {
    margin: 7px 0 0;
    color: var(--pae-muted);
}

.pae-affiliation {
    min-width: 205px;
    padding: 13px 16px;
    border: 1px solid #c8dce9;
    border-radius: 14px;
    background: #f1f8fc;
    display: grid;
    gap: 3px;
    text-align: center;
}

.pae-affiliation span {
    color: var(--pae-muted);
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pae-affiliation strong {
    color: var(--pae-navy);
    font-size: 1.15rem;
}

.pae-information-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
    gap: 20px;
}

.pae-info-panel,
.pae-why-sangford {
    border: 1px solid var(--pae-line);
    border-radius: 20px;
    background: #ffffff;
}

.pae-info-panel {
    padding: 24px;
}

.pae-info-panel h3,
.pae-why-sangford h3 {
    margin: 0 0 12px;
    color: var(--pae-navy);
    font-size: 1.3rem;
    line-height: 1.25;
}

.pae-info-panel h4 {
    margin: 22px 0 10px;
    color: var(--pae-ink);
    font-size: 1rem;
}

.pae-info-panel > p {
    color: var(--pae-muted);
}

.pae-info-kicker {
    margin: 0 0 7px !important;
    color: var(--pae-teal) !important;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pae-curriculum-panel ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 10px;
}

.pae-curriculum-panel li {
    position: relative;
    padding-left: 25px;
}

.pae-curriculum-panel li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pae-success);
    font-weight: 900;
}

.pae-experience {
    margin-top: 22px;
    padding: 15px 16px;
    border-radius: 14px;
    background: var(--pae-soft);
    display: grid;
    gap: 4px;
}

.pae-experience span {
    color: var(--pae-muted);
}

.pae-fee-panel {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbfc 100%);
}

.pae-fee-list {
    margin: 18px 0;
    display: grid;
    gap: 0;
}

.pae-fee-list > div {
    padding: 12px 0;
    border-bottom: 1px dashed #c9d5dd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.pae-fee-list dt {
    color: var(--pae-muted);
}

.pae-fee-list dd {
    margin: 0;
    color: var(--pae-navy);
    font-weight: 900;
    text-align: right;
}

.pae-fee-list .pae-fee-discount dd {
    color: var(--pae-success);
}

.pae-fee-list .pae-fee-payable {
    border-radius: 10px;
    background: #edf9f4;
    padding-left: 10px;
    padding-right: 10px;
}

.pae-fee-list .pae-fee-payable dt,
.pae-fee-list .pae-fee-payable dd {
    color: var(--pae-success);
    font-weight: 900;
}

.pae-term-note {
    margin: 16px 0;
    padding: 13px 14px;
    border-left: 4px solid var(--pae-teal);
    background: #eef8f7;
    color: var(--pae-ink) !important;
    font-size: .92rem;
}

.pae-upfront-offer {
    padding: 16px;
    border: 1px solid #ead79a;
    border-radius: 14px;
    background: #fff9e7;
    display: grid;
    gap: 3px;
}

.pae-upfront-offer strong {
    color: #745400;
}

.pae-upfront-offer span {
    color: #786b42;
    font-size: .9rem;
}

.pae-fee-policy {
    margin: 14px 0 0 !important;
    color: #8b2d2d !important;
    font-size: .85rem;
    font-weight: 700;
}

.pae-why-sangford {
    margin-top: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #0b2d5b 0%, #164f85 100%);
    color: #ffffff;
}

.pae-why-sangford .pae-info-kicker {
    color: #83dfd5 !important;
}

.pae-why-sangford h3 {
    color: #ffffff;
}

.pae-why-sangford > p:last-of-type {
    max-width: 820px;
    color: rgba(255,255,255,.82);
}

.pae-resource-links {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pae-resource-links a {
    padding: 9px 13px;
    border: 1px solid rgba(255,255,255,.3);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    font-size: .88rem;
    font-weight: 800;
}

.pae-resource-links a:hover {
    background: rgba(255,255,255,.12);
}

@media (max-width: 820px) {
    .pae-information-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .pae-information-heading {
        display: grid;
    }

    .pae-affiliation {
        min-width: 0;
        text-align: left;
    }

    .pae-info-panel,
    .pae-why-sangford {
        padding: 19px 17px;
        border-radius: 16px;
    }

    .pae-fee-list > div {
        align-items: flex-start;
    }
}


/* Step 4.1: Parent information corrections and complete Sangford links */
.pae-welcome-message {
    margin: 34px 0 0;
    padding: 24px;
    border: 1px solid #bfe1dc;
    border-radius: 20px;
    background: linear-gradient(135deg, #eefaf7 0%, #f7fbff 100%);
    text-align: left;
}

.pae-welcome-message h2 {
    margin: 0 0 12px;
    color: var(--pae-navy);
    font-size: clamp(1.45rem, 3vw, 1.9rem);
}

.pae-welcome-message > p:last-child {
    margin: 0;
    color: var(--pae-muted);
}

.pae-fee-list sup {
    color: var(--pae-teal);
    font-size: .72em;
    font-weight: 900;
}

.pae-term-note strong {
    margin-right: 2px;
    color: var(--pae-teal);
}

.pae-recognition-title {
    margin: 6px 0 8px !important;
    color: #ffffff !important;
    font-weight: 900;
}

.pae-school-details,
.pae-connect-section,
.pae-explore-section {
    margin-top: 20px;
    padding: 24px;
    border: 1px solid var(--pae-line);
    border-radius: 20px;
    background: #ffffff;
    text-align: left;
}

.pae-school-details-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.pae-school-details h3,
.pae-connect-section h3,
.pae-explore-section h3 {
    margin: 0;
    color: var(--pae-navy);
    font-size: 1.3rem;
    line-height: 1.3;
}

.pae-contact-links {
    display: grid;
    justify-items: end;
    gap: 5px;
    text-align: right;
}

.pae-contact-links a {
    color: var(--pae-teal);
    font-weight: 800;
    text-decoration: none;
}

.pae-contact-links a:hover {
    text-decoration: underline;
}

.pae-address-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pae-address-grid article {
    padding: 18px;
    border-radius: 14px;
    background: var(--pae-soft);
    display: grid;
    align-content: start;
    gap: 3px;
}

.pae-address-grid h4 {
    margin: 0 0 7px;
    color: var(--pae-navy);
}

.pae-address-grid span {
    color: var(--pae-muted);
}

.pae-address-grid a {
    margin-top: 9px;
    color: var(--pae-teal);
    font-weight: 800;
}

.pae-connect-section .pae-resource-links,
.pae-explore-section .pae-resource-links {
    margin-top: 18px;
}

.pae-connect-section .pae-resource-links a,
.pae-explore-section .pae-resource-links a {
    border-color: #c5d7e2;
    background: #f5fafc;
    color: var(--pae-navy);
}

.pae-connect-section .pae-resource-links a:hover,
.pae-explore-section .pae-resource-links a:hover {
    border-color: var(--pae-teal);
    background: #eaf8f6;
}

@media (max-width: 720px) {
    .pae-school-details-heading {
        display: grid;
    }

    .pae-contact-links {
        justify-items: start;
        text-align: left;
    }

    .pae-address-grid {
        grid-template-columns: 1fr;
    }
}


/* Step 4.2: ensure social and resource links remain visible on white cards. */
.pae-connect-section .pae-social-links,
.pae-explore-section .pae-explore-links {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 0 !important;
}

.pae-connect-section .pae-social-links a,
.pae-explore-section .pae-explore-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 42px !important;
    height: auto !important;
    padding: 10px 14px !important;
    border: 1px solid #b9d0dc !important;
    border-radius: 999px !important;
    background: #f3f9fb !important;
    color: #0b2d5b !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    text-indent: 0 !important;
    font-size: .9rem !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    text-decoration: none !important;
    white-space: normal !important;
}

.pae-connect-section .pae-social-links a:hover,
.pae-explore-section .pae-explore-links a:hover,
.pae-connect-section .pae-social-links a:focus-visible,
.pae-explore-section .pae-explore-links a:focus-visible {
    border-color: #0f8f83 !important;
    background: #e7f7f4 !important;
    color: #073f58 !important;
}

@media (max-width: 600px) {
    .pae-connect-section .pae-social-links a,
    .pae-explore-section .pae-explore-links a {
        width: 100% !important;
        justify-content: flex-start !important;
        border-radius: 12px !important;
    }
}

/* Step 5A: parent callback request */
.pae-callback-card {
    margin-top: 24px;
    padding: 26px;
    border: 1px solid #b9ddd7;
    border-radius: 20px;
    background: linear-gradient(135deg, #f0fbf8 0%, #f8fbff 100%);
    text-align: left;
}

.pae-callback-card h3 {
    margin: 0 0 8px;
    color: var(--pae-navy);
    font-size: 1.45rem;
    line-height: 1.3;
}

.pae-callback-card > p:not(.pae-info-kicker) {
    margin: 0 0 20px;
    color: var(--pae-muted);
}

.pae-callback-form {
    display: grid;
    gap: 18px;
}

.pae-field textarea {
    width: 100%;
    border: 1px solid #bccbd5;
    border-radius: 12px;
    background: var(--pae-white);
    color: var(--pae-ink);
    padding: 12px 14px;
    font: inherit;
    line-height: 1.5;
    resize: vertical;
    outline: none;
}

.pae-field textarea:focus {
    border-color: var(--pae-teal);
    box-shadow: 0 0 0 4px rgba(13,127,120,.12);
}

.pae-field label small {
    color: var(--pae-muted);
    font-weight: 600;
}

.pae-callback-success {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid #9bd7b8;
    border-radius: 14px;
    background: #eaf9f0;
    color: #0b6843;
}

.pae-callback-success strong {
    font-size: 1.05rem;
}

@media (max-width: 720px) {
    .pae-callback-card {
        padding: 20px 16px;
    }
}


/* Step 5B: parent school visit request */
.pae-visit-card {
    margin-top: 24px;
    padding: 26px;
    border: 1px solid #c6d8eb;
    border-radius: 20px;
    background: linear-gradient(135deg, #f4f8ff 0%, #f8fbff 100%);
    text-align: left;
}

.pae-visit-card h3 {
    margin: 0 0 8px;
    color: var(--pae-navy);
    font-size: 1.45rem;
    line-height: 1.3;
}

.pae-visit-card > p:not(.pae-info-kicker) {
    margin: 0 0 20px;
    color: var(--pae-muted);
}

.pae-visit-form {
    display: grid;
    gap: 18px;
}

.pae-visit-success {
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid #9fc4e7;
    border-radius: 14px;
    background: #edf6ff;
    color: #174f7a;
}

.pae-visit-success strong {
    font-size: 1.05rem;
}

@media (max-width: 720px) {
    .pae-visit-card {
        padding: 20px 16px;
    }
}


/* Public Admission Enquiry campus selection update. */
.pae-address-secondary {
    margin-top: 18px;
}

.pae-campus-followup {
    margin: 28px 0;
    padding: 22px;
    border: 1px solid #b7ded8;
    border-radius: 16px;
    background: #eef9f7;
    text-align: left;
}

.pae-campus-followup h3 {
    margin: 4px 0 8px;
}

.pae-campus-followup p:last-child {
    margin-bottom: 0;
    color: var(--pae-muted);
}


/* Admission result corrections — compact optional remarks fields. */
.pae-callback-form textarea,
.pae-visit-form textarea {
    min-height: 76px;
}

/* Campus heading remains left-aligned after contact links are removed. */
.pae-school-details-heading {
    justify-content: flex-start;
}

/* Admission enquiry confirmation — elegant parent dashboard (v2) */
.pae-page-success .pae-hero {
    padding: 34px 0;
}

.pae-page-success .pae-hero h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.pae-page-success .pae-lead {
    margin-top: 12px;
}

.pae-content-grid--success {
    display: block;
}

.pae-content-grid--success .pae-form-card {
    width: 100%;
    padding: clamp(18px, 3vw, 34px);
}

.pae-v2-success {
    display: grid;
    gap: 24px;
    text-align: left;
}

.pae-v2-success h2,
.pae-v2-success h3,
.pae-v2-success h4,
.pae-v2-success p {
    margin-top: 0;
}

.pae-v2-confirmation {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 20px;
    align-items: center;
    padding: clamp(22px, 4vw, 34px);
    border: 1px solid #bde5d9;
    border-radius: 22px;
    background:
        radial-gradient(circle at 92% 12%, rgba(13, 127, 120, .12), transparent 32%),
        linear-gradient(135deg, #f7fffc 0%, #eefaf7 100%);
}

.pae-v2-check {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #dff5ed;
    color: var(--pae-success);
    font-size: 1.75rem;
    font-weight: 900;
}

.pae-v2-confirmation-copy h2 {
    color: var(--pae-navy);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.pae-v2-confirmation-copy > p:not(.pae-eyebrow) {
    margin: 9px 0 0;
    color: #36536d;
}

.pae-v2-soft-note {
    font-size: .92rem;
}

.pae-v2-reference {
    min-width: 225px;
    padding: 17px 20px;
    border: 1px solid #a9dacf;
    border-radius: 16px;
    background: rgba(255, 255, 255, .86);
    text-align: center;
}

.pae-v2-reference span {
    display: block;
    color: var(--pae-muted);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.pae-v2-reference strong {
    display: block;
    margin-top: 4px;
    color: var(--pae-teal);
    font-size: 1.1rem;
    letter-spacing: .03em;
}

.pae-v2-journey {
    list-style: none;
    margin: 0;
    padding: 18px 22px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--pae-line);
    border-radius: 18px;
    background: #fff;
}

.pae-v2-journey li {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #7a8998;
    font-size: .86rem;
}

.pae-v2-journey li:not(:last-child)::after {
    content: "";
    position: absolute;
    left: calc(100% - 22px);
    right: 14px;
    top: 50%;
    height: 1px;
    background: #dce5ea;
}

.pae-v2-journey span {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #edf2f5;
    color: #6c7f8e;
    font-weight: 900;
}

.pae-v2-journey .is-current {
    color: var(--pae-navy);
}

.pae-v2-journey .is-current span {
    background: var(--pae-teal);
    color: #fff;
    box-shadow: 0 0 0 6px rgba(13, 127, 120, .10);
}

.pae-v2-section-heading h3 {
    margin-bottom: 4px;
    color: var(--pae-navy);
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.pae-v2-section-heading > p:last-child {
    margin-bottom: 0;
    color: var(--pae-muted);
}

.pae-v2-summary,
.pae-v2-learning,
.pae-v2-why,
.pae-v2-explore,
.pae-v2-campuses,
.pae-v2-connect,
.pae-v2-campus-followup {
    padding: clamp(20px, 3vw, 28px);
    border: 1px solid var(--pae-line);
    border-radius: 20px;
    background: #fff;
}

.pae-v2-summary dl {
    margin: 18px 0 0;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.pae-v2-summary dl div {
    padding: 14px;
    border-radius: 13px;
    background: #f5f9fa;
}

.pae-v2-summary dt {
    color: var(--pae-muted);
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pae-v2-summary dd {
    margin: 4px 0 0;
    color: var(--pae-navy);
    font-weight: 850;
}

.pae-v2-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.pae-v2-action {
    min-height: 92px;
    padding: 17px;
    display: flex;
    align-items: center;
    gap: 13px;
    border: 1px solid #cbdbe1;
    border-radius: 17px;
    background: #fff;
    text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.pae-v2-action:hover,
.pae-v2-action:focus-visible {
    transform: translateY(-2px);
    border-color: var(--pae-teal);
    box-shadow: 0 12px 28px rgba(18, 67, 83, .12);
    outline: none;
}

.pae-v2-action-primary {
    border-color: #98d4c8;
    background: #effaf7;
}

.pae-v2-action-whatsapp {
    border-color: #b8dec6;
    background: #f2fbf5;
}

.pae-v2-action-icon,
.pae-v2-summary-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 auto;
    border-radius: 13px;
    display: grid;
    place-items: center;
    background: var(--pae-teal);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 900;
}

.pae-v2-action > span:last-child,
.pae-v2-followup summary > span:nth-child(2) {
    display: grid;
    gap: 3px;
}

.pae-v2-action strong {
    color: var(--pae-navy);
}

.pae-v2-action small,
.pae-v2-followup summary small {
    color: var(--pae-muted);
    font-size: .78rem;
}

.pae-v2-learning-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, .85fr);
    gap: 18px;
}

.pae-v2-card {
    padding: 22px;
    border: 1px solid #d8e4e9;
    border-radius: 17px;
    background: #fbfdfe;
}

.pae-v2-card h3 {
    margin-bottom: 10px;
    color: var(--pae-navy);
}

.pae-v2-card h4 {
    margin: 18px 0 8px;
    color: var(--pae-navy);
}

.pae-v2-curriculum ul {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 9px;
    list-style: none;
}

.pae-v2-curriculum li {
    position: relative;
    padding-left: 24px;
}

.pae-v2-curriculum li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--pae-success);
    font-weight: 900;
}

.pae-v2-experience {
    margin-top: 20px;
    padding: 15px;
    display: grid;
    gap: 4px;
    border-radius: 13px;
    background: #eef6f8;
}

.pae-v2-experience span {
    color: #506679;
    font-size: .9rem;
}

.pae-v2-fees dl {
    margin: 0;
}

.pae-v2-fees dl div {
    padding: 11px 0;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid #e3eaee;
}

.pae-v2-fees dt {
    color: #50677a;
}

.pae-v2-fees dd {
    margin: 0;
    color: var(--pae-navy);
    font-weight: 900;
    text-align: right;
}

.pae-v2-fees .is-discount dd,
.pae-v2-fees .is-payable,
.pae-v2-fees .is-payable dd {
    color: var(--pae-success);
}

.pae-v2-fees .is-payable {
    padding: 13px 10px;
    margin: 0 -10px;
    background: #effaf6;
    border-radius: 10px;
    border-bottom: 0;
}

.pae-v2-fees .is-term {
    margin-top: 6px;
}

.pae-v2-fee-note {
    margin: 14px 0 0;
    padding: 12px 13px;
    border-left: 3px solid var(--pae-teal);
    background: #f2f8f9;
    color: #52697b;
    font-size: .82rem;
}

.pae-v2-offer {
    margin-top: 13px;
    padding: 14px;
    display: grid;
    gap: 3px;
    border: 1px solid #efd99a;
    border-radius: 12px;
    background: #fff9e9;
}

.pae-v2-offer strong {
    color: #7a5805;
}

.pae-v2-offer span {
    color: #786c51;
    font-size: .82rem;
}

.pae-v2-campus-followup {
    border-color: #eed7a0;
    background: #fffaf0;
}

.pae-v2-campus-followup h3 {
    color: var(--pae-navy);
}

.pae-v2-followups {
    display: grid;
    gap: 14px;
}

.pae-v2-followup {
    border: 1px solid var(--pae-line);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}

.pae-v2-followup[open] {
    border-color: #add8d0;
    box-shadow: 0 12px 30px rgba(25, 67, 81, .08);
}

.pae-v2-followup summary {
    padding: 17px 20px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    cursor: pointer;
    list-style: none;
}

.pae-v2-followup summary::-webkit-details-marker {
    display: none;
}

.pae-v2-followup summary strong {
    color: var(--pae-navy);
    font-size: 1rem;
}

.pae-v2-summary-cta {
    padding: 9px 13px;
    border: 1px solid var(--pae-teal);
    border-radius: 999px;
    color: var(--pae-teal);
    font-size: .78rem;
    font-weight: 850;
}

.pae-v2-followup[open] .pae-v2-summary-cta {
    background: var(--pae-teal);
    color: #fff;
}

.pae-v2-followup-body {
    padding: 0 20px 22px 76px;
}

.pae-v2-followup-body form {
    max-width: 850px;
}

.pae-v2-form-note {
    color: var(--pae-muted);
    font-size: .86rem;
}

.pae-v2-why {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #0b3766;
    border-color: transparent;
    color: #fff;
}

/* Forbes India — Great Indian Schools 2019 recognition backdrop.
   The complete cover is retained as a controlled watermark on the right,
   while the navy gradient protects readability on the left. */
.pae-v2-why::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: url("../images/forbes-great-indian-schools-2019-cover-bg.jpg");
    background-size: auto 122%;
    background-position: right 26px center;
    background-repeat: no-repeat;
    opacity: .86;
    filter: brightness(1.04) saturate(.88) contrast(1.04);
}

.pae-v2-why::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg,
            rgba(7, 48, 82, .94) 0%,
            rgba(7, 48, 82, .90) 40%,
            rgba(6, 53, 80, .68) 62%,
            rgba(5, 58, 76, .24) 100%),
        linear-gradient(180deg, rgba(4, 34, 59, .05), rgba(4, 34, 59, .20));
}

@media (max-width: 760px) {
    .pae-v2-why::before {
        background-size: auto 104%;
        background-position: right -92px center;
        opacity: .58;
    }

    .pae-v2-why::after {
        background: linear-gradient(90deg,
            rgba(7, 48, 82, .95) 0%,
            rgba(7, 48, 82, .89) 62%,
            rgba(6, 53, 80, .62) 100%);
    }
}

.pae-v2-why > * {
    position: relative;
    z-index: 1;
}

.pae-v2-why .pae-info-kicker {
    color: #83ded5;
}

.pae-v2-why .pae-v2-section-heading h3,
.pae-v2-why .pae-v2-section-heading p {
    color: #fff;
}

.pae-v2-trust-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pae-v2-trust-grid span {
    padding: 12px 14px 12px 38px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    background: rgba(255, 255, 255, .07);
}

.pae-v2-trust-grid span::before {
    content: "✓";
    position: absolute;
    left: 14px;
    color: #8ce0d4;
    font-weight: 900;
}

.pae-v2-recognition {
    margin-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, .18);
    padding-top: 14px;
}

.pae-v2-recognition h4 {
    margin: 0;
    color: #fff;
    font-size: 1rem;
    font-weight: 850;
    line-height: 1.35;
}

.pae-v2-recognition p {
    margin: 10px 0 0;
    max-width: 1180px;
    color: rgba(255, 255, 255, .84);
    font-size: .9rem;
    line-height: 1.65;
}

.pae-v2-explore-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.pae-v2-explore-grid a {
    position: relative;
    padding: 14px 42px 14px 15px;
    display: grid;
    gap: 3px;
    border: 1px solid #dce6ea;
    border-radius: 13px;
    background: #fbfdfe;
    text-decoration: none;
    transition: border-color .18s ease, transform .18s ease, background .18s ease;
}

.pae-v2-explore-grid a::after {
    content: "↗";
    position: absolute;
    right: 15px;
    top: 15px;
    color: var(--pae-teal);
    font-weight: 900;
}

.pae-v2-explore-grid a:hover,
.pae-v2-explore-grid a:focus-visible {
    transform: translateY(-1px);
    border-color: #91cfc4;
    background: #f2fbf8;
    outline: none;
}

.pae-v2-explore-grid strong {
    color: var(--pae-navy);
    font-size: .92rem;
}

.pae-v2-explore-grid small {
    color: var(--pae-muted);
    font-size: .74rem;
    line-height: 1.4;
}

.pae-v2-campus-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.pae-v2-campus-grid article {
    padding: 20px;
    border: 1px solid #d8e5e9;
    border-radius: 16px;
    background: #f7fafb;
}

.pae-v2-campus-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: #dff2ee;
    color: var(--pae-teal);
    font-weight: 900;
}

.pae-v2-campus-grid h4 {
    margin: 0 0 9px;
    color: var(--pae-navy);
    font-size: 1.05rem;
}

.pae-v2-campus-grid span {
    display: block;
    color: #5a6f80;
    font-size: .88rem;
}

.pae-v2-campus-actions {
    margin-top: 15px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pae-v2-campus-actions a {
    padding: 8px 12px;
    border: 1px solid #9ccfc5;
    border-radius: 999px;
    color: var(--pae-teal);
    font-size: .78rem;
    font-weight: 850;
    text-decoration: none;
}

.pae-v2-connect {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.pae-v2-connect h3 {
    margin: 0;
    color: var(--pae-navy);
}

.pae-v2-social-icons {
    display: flex;
    gap: 11px;
}

.pae-v2-social-icons a {
    width: 48px;
    height: 48px;
    border: 1px solid #c8d8df;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--pae-navy);
    transition: color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.pae-v2-social-icons a:hover,
.pae-v2-social-icons a:focus-visible {
    color: var(--pae-teal);
    border-color: var(--pae-teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(13, 127, 120, .14);
    outline: none;
}

.pae-v2-social-icons svg {
    width: 23px;
    height: 23px;
    fill: currentColor;
}

.pae-v2-whatsapp {
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border: 1px solid #a9d7b8;
    border-radius: 19px;
    background: linear-gradient(135deg, #f3fcf6 0%, #eaf8ef 100%);
}

.pae-v2-whatsapp h3 {
    margin-bottom: 5px;
    color: var(--pae-navy);
}

.pae-v2-whatsapp p {
    margin-bottom: 4px;
    color: #536a7b;
}

.pae-v2-whatsapp small {
    color: #6c7f8e;
}

@media (max-width: 900px) {
    .pae-v2-confirmation {
        grid-template-columns: auto 1fr;
    }

    .pae-v2-reference {
        grid-column: 1 / -1;
        width: 100%;
    }

    .pae-v2-summary dl {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pae-v2-actions,
    .pae-v2-learning-grid {
        grid-template-columns: 1fr;
    }

    .pae-v2-journey {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .pae-v2-journey li::after {
        display: none;
    }
}

@media (max-width: 680px) {
    .pae-page-success .pae-section {
        padding-top: 24px;
    }

    .pae-content-grid--success .pae-form-card {
        padding: 14px;
        border-radius: 18px;
    }

    .pae-v2-confirmation {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pae-v2-check {
        margin: 0 auto;
    }

    .pae-v2-journey {
        padding: 15px;
        grid-template-columns: 1fr;
    }

    .pae-v2-summary dl,
    .pae-v2-explore-grid,
    .pae-v2-campus-grid,
    .pae-v2-trust-grid {
        grid-template-columns: 1fr;
    }

    .pae-v2-actions {
        gap: 10px;
    }

    .pae-v2-action {
        min-height: 78px;
    }

    .pae-v2-followup summary {
        grid-template-columns: auto 1fr;
    }

    .pae-v2-summary-cta {
        grid-column: 1 / -1;
        text-align: center;
    }

    .pae-v2-followup-body {
        padding: 0 16px 18px;
    }

    .pae-v2-connect,
    .pae-v2-whatsapp {
        align-items: flex-start;
        flex-direction: column;
    }

    .pae-v2-whatsapp .pae-button {
        width: 100%;
    }
}

/* Campus360 professional public admission design — approved 13/08/2026. */
body {
    --pae-navy: #082e3a;
    --pae-blue: #0d4752;
    --pae-teal: #08766e;
    --pae-ink: #24383f;
    --pae-muted: #667a82;
    --pae-line: #dbe5e8;
    --pae-soft: #f3f7f8;
    --pae-success: #08766e;
    --pae-shadow: 0 14px 38px rgba(8, 46, 58, .075);
    background: #f3f7f8;
    color: var(--pae-ink);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea,
option {
    font-family: inherit;
}

.pae-shell {
    width: min(1160px, calc(100% - 48px));
}

.pae-header {
    position: relative;
    z-index: 2;
    border-bottom-color: var(--pae-line);
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 2px 10px rgba(8, 46, 58, .035);
}

.pae-header-inner {
    min-height: 74px;
}

.pae-brand {
    gap: 11px;
}

.pae-brand img {
    width: 50px;
    height: 50px;
}

.pae-brand span {
    gap: 1px;
}

.pae-brand strong {
    color: #082e3a;
    font-size: 16px;
    font-weight: 760;
    letter-spacing: -.015em;
}

.pae-brand small {
    color: var(--pae-muted);
    font-size: 9px;
    font-weight: 650;
    letter-spacing: .16em;
}

.pae-hero {
    position: relative;
    overflow: hidden;
    padding: 49px 0 51px;
    background:
        radial-gradient(circle at 87% 16%, rgba(54, 185, 171, .23), transparent 31%),
        linear-gradient(128deg, #082e3a 0%, #0d4752 58%, #0b5660 100%);
}

.pae-hero::after {
    position: absolute;
    right: -95px;
    bottom: -170px;
    width: 390px;
    height: 390px;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 50%;
    content: "";
}

.pae-hero-grid {
    position: relative;
    z-index: 1;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 48px;
}

.pae-eyebrow {
    color: var(--pae-teal);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.pae-hero .pae-eyebrow {
    color: #90e0d6;
}

.pae-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 770;
    letter-spacing: -.045em;
    line-height: 1.06;
}

.pae-lead {
    max-width: 700px;
    margin-top: 15px;
    color: rgba(255, 255, 255, .79);
    font-size: 15px;
    line-height: 1.62;
}

.pae-campus-note {
    min-width: 280px;
    padding: 15px 17px;
    border-color: rgba(255, 255, 255, .17);
    border-radius: 14px;
    background: rgba(255, 255, 255, .085);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
    grid-template-columns: 35px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 12px;
    row-gap: 2px;
}

.pae-campus-note::before {
    width: 35px;
    height: 35px;
    border-radius: 10px;
    background-color: rgba(144, 224, 214, .14);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.75 3.75h10.5a1.5 1.5 0 0 1 1.5 1.5v13.5H5.25V5.25a1.5 1.5 0 0 1 1.5-1.5Z' stroke='%23a9ece4' stroke-width='1.7'/%3E%3Cpath d='M9 8.25h6M9 12h6M9 15.75h3' stroke='%23a9ece4' stroke-width='1.7' stroke-linecap='round'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    display: grid;
    grid-column: 1;
    grid-row: 1 / 3;
    place-items: center;
    font-size: 17px;
}

.pae-campus-note strong {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 12px;
    font-weight: 720;
}

.pae-campus-note span {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    color: rgba(255, 255, 255, .73);
    font-size: 12px;
}

.pae-section {
    padding: 38px 0 58px;
}

.pae-page-form .pae-content-grid {
    grid-template-columns: minmax(0, 1fr) 348px;
    gap: 26px;
}

.pae-form-card,
.pae-side-card {
    border-color: var(--pae-line);
    border-radius: 17px;
    box-shadow: var(--pae-shadow);
}

.pae-page-form .pae-form-card {
    padding: 29px 32px 32px;
}

.pae-card-heading {
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--pae-line);
}

.pae-card-heading h2,
.pae-side-card h2 {
    color: #082e3a;
    font-weight: 750;
    letter-spacing: -.03em;
    line-height: 1.2;
}

.pae-card-heading h2 {
    font-size: 24px;
}

.pae-card-heading p:last-child {
    margin-top: 7px;
    color: var(--pae-muted);
    font-size: 12px;
}

.pae-form,
.pae-callback-form,
.pae-visit-form {
    gap: 18px;
}

.pae-two-column {
    gap: 18px;
}

.pae-field {
    gap: 7px;
}

.pae-field label {
    color: #344f58;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.35;
}

.pae-field input,
.pae-field select,
.pae-field textarea {
    width: 100%;
    margin: 0;
    border: 1px solid #c5d3d7;
    border-radius: 10px;
    background-color: #fff;
    color: var(--pae-ink);
    box-shadow: 0 1px 2px rgba(8, 46, 58, .035), inset 0 1px 1px rgba(8, 46, 58, .02);
    outline: none;
    font-size: 14px;
    font-weight: 450;
    line-height: 1.45;
    transition: border-color 140ms ease, box-shadow 140ms ease;
}

.pae-field input,
.pae-field select {
    height: 46px;
    min-height: 46px;
}

.pae-field input {
    padding: 0 13px;
}

.pae-field select {
    -webkit-appearance: none;
    appearance: none;
    padding: 0 43px 0 13px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='m5 7.5 5 5 5-5' stroke='%23536d75' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 14px 14px;
}

.pae-field textarea {
    padding: 12px 13px;
}

.pae-field input::placeholder,
.pae-field textarea::placeholder {
    color: #8b9da3;
    opacity: 1;
}

.pae-field input:focus,
.pae-field select:focus,
.pae-field textarea:focus {
    border-color: var(--pae-teal);
    box-shadow: 0 0 0 3px rgba(8, 118, 110, .15);
}

.pae-field small,
.pae-help {
    color: var(--pae-muted);
    font-size: 11px;
    line-height: 1.4;
}

.pae-consent {
    min-height: 64px;
    padding: 13px 14px;
    border-color: var(--pae-line);
    border-radius: 11px;
    background: #f7fafb;
    grid-template-columns: 19px 1fr;
    gap: 11px;
    color: #486067;
    font-size: 12px;
    line-height: 1.5;
}

.pae-consent input {
    width: 18px;
    height: 18px;
    margin: 1px 0 0;
    accent-color: var(--pae-teal);
}

.pae-button {
    min-height: 46px;
    border-radius: 10px;
    padding: 0 18px;
    gap: 8px;
    font-size: 13px;
    font-weight: 720;
    transition: background-color 140ms ease, box-shadow 140ms ease, transform 140ms ease;
}

.pae-page-form .pae-button-primary::after {
    content: "›";
    font-size: 21px;
    font-weight: 500;
    line-height: 1;
}

.pae-button-primary {
    background: var(--pae-teal);
    box-shadow: 0 8px 18px rgba(8, 118, 110, .19);
}

.pae-button-primary:hover {
    background: #06655e;
    box-shadow: 0 10px 20px rgba(8, 118, 110, .24);
    transform: translateY(-1px);
}

.pae-page-form .pae-side-card {
    top: 22px;
    overflow: hidden;
    padding: 0;
}

.pae-page-form .pae-side-card > .pae-eyebrow,
.pae-page-form .pae-side-card > h2 {
    margin-left: 25px;
    margin-right: 25px;
}

.pae-page-form .pae-side-card > .pae-eyebrow {
    margin-top: 25px;
}

.pae-page-form .pae-side-card > h2 {
    margin-bottom: 23px;
    font-size: 21px;
}

.pae-page-form .pae-side-card ul {
    margin: 0;
    padding: 23px 25px 22px;
    border-top: 1px solid var(--pae-line);
    border-bottom: 1px solid var(--pae-line);
    gap: 13px;
}

.pae-page-form .pae-side-card li {
    min-height: 22px;
    padding-left: 29px;
    color: #4f676f;
    font-size: 12px;
    line-height: 1.45;
}

.pae-page-form .pae-side-card li::before {
    top: 0;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: #eff8f7;
    color: var(--pae-teal);
    display: grid;
    place-items: center;
    font-size: 10px;
}

.pae-page-form .pae-address {
    position: relative;
    margin: 0 25px;
    padding: 19px 0 0 41px;
    border: 0;
    color: var(--pae-muted);
    font-size: 10.5px;
    line-height: 1.5;
}

.pae-page-form .pae-address:last-child {
    padding-bottom: 24px;
}

.pae-page-form .pae-address::before {
    position: absolute;
    top: 21px;
    left: 0;
    width: 31px;
    height: 31px;
    border-radius: 9px;
    background-color: #eff8f7;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M20 10c0 5-8 11-8 11S4 15 4 10a8 8 0 1 1 16 0Z' stroke='%2308766e' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='10' r='2.5' stroke='%2308766e' stroke-width='1.7'/%3E%3C/svg%3E");
    background-position: center;
    background-repeat: no-repeat;
    content: "";
    display: grid;
    place-items: center;
}

.pae-page-form .pae-address strong {
    color: #344f58;
    font-size: 12px;
    font-weight: 720;
}

.pae-address-secondary {
    margin-top: 0;
}

.pae-footer {
    border-top-color: var(--pae-line);
    font-size: 12px;
}

.pae-footer .pae-shell {
    min-height: 66px;
}

.pae-footer a {
    color: var(--pae-teal);
    font-weight: 650;
    text-decoration: none;
}

@media (max-width: 860px) {
    .pae-hero-grid,
    .pae-page-form .pae-content-grid {
        grid-template-columns: 1fr;
    }

    .pae-campus-note {
        min-width: 0;
        width: min(100%, 340px);
    }
}

@media (max-width: 600px) {
    .pae-shell {
        width: min(100% - 28px, 1160px);
    }

    .pae-header-inner {
        min-height: 68px;
    }

    .pae-brand img {
        width: 45px;
        height: 45px;
    }

    .pae-brand strong {
        font-size: 14px;
    }

    .pae-brand small {
        display: block;
        font-size: 8px;
    }

    .pae-hero,
    .pae-page-success .pae-hero {
        padding: 34px 0 36px;
    }

    .pae-hero-grid {
        gap: 24px;
    }

    .pae-hero h1,
    .pae-page-success .pae-hero h1 {
        font-size: 36px;
    }

    .pae-lead {
        margin-top: 13px;
        font-size: 14px;
    }

    .pae-campus-note {
        padding: 13px 14px;
    }

    .pae-section {
        padding: 22px 0 36px;
    }

    .pae-page-form .pae-content-grid {
        gap: 18px;
    }

    .pae-form-card,
    .pae-side-card {
        border-radius: 14px;
    }

    .pae-page-form .pae-form-card {
        padding: 22px 18px 20px;
    }

    .pae-card-heading {
        margin-bottom: 20px;
        padding-bottom: 17px;
    }

    .pae-card-heading h2 {
        font-size: 22px;
    }

    .pae-form,
    .pae-callback-form,
    .pae-visit-form {
        gap: 17px;
    }

    .pae-two-column {
        grid-template-columns: 1fr;
        gap: 17px;
    }

    .pae-consent {
        padding: 12px;
    }

    .pae-button {
        width: 100%;
    }

    .pae-page-form .pae-side-card > .pae-eyebrow,
    .pae-page-form .pae-side-card > h2,
    .pae-page-form .pae-address {
        margin-left: 20px;
        margin-right: 20px;
    }

    .pae-page-form .pae-side-card ul {
        padding-left: 20px;
        padding-right: 20px;
    }

    .pae-footer .pae-shell {
        min-height: 78px;
        gap: 4px;
    }
}
