.adm-hero {
    background: var(--grad-dark);
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-h) + var(--sp-12)) var(--sp-6) var(--sp-10);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 22rem;
    text-align: center;
}

.adm-hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    filter: blur(4rem);
    opacity: 0.18;
}

.adm-hero-blob-a {
    width: 28rem;
    height: 28rem;
    background: var(--pink);
    top: -8rem;
    left: -8rem;
    animation: admBlobFloat 8s ease-in-out infinite;
}

.adm-hero-blob-b {
    width: 24rem;
    height: 24rem;
    background: var(--purple);
    bottom: -6rem;
    right: -6rem;
    animation: admBlobFloat 10s ease-in-out 2s infinite;
}

@keyframes admBlobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%       { transform: translate(1.5rem, -1.5rem) scale(1.05); }
}

.adm-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 42rem;
}

.adm-hero-label {
    color: rgba(255, 255, 255, 0.85);
    justify-content: center;
    margin-bottom: var(--sp-4);
    font-size: var(--fs-base);
}

.adm-hero-title {
    font-size: var(--fs-lg);
    color: var(--white);
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-4);
}

.adm-hero-sub {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.65);
    line-height: var(--lh-spacey);
    max-width: 34rem;
    margin: 0 auto var(--sp-6);
}

/* Trust chips — Step 1 hero; class kept here so it is always available */
.adm-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--sp-2);
    justify-content: center;
}

.adm-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-1);
    font-size: var(--fs-xs);
    letter-spacing: 0.0625rem;
    color: rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.08);
    border: 0.0625rem solid rgba(255, 255, 255, 0.15);
    border-radius: 99rem;
    padding: var(--sp-1) var(--sp-3);
    line-height: var(--lh-base);
}

.adm-trust-chip svg {
    color: #22c55e;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   2. PAGE LAYOUT
═══════════════════════════════════════════════════════════════ */

.adm-main {
    background: var(--white-warm);
    padding: var(--sp-6);
}

.adm-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    max-width: 72rem;
    margin: 0 auto;
    align-items: start;
}

@media (min-width: 56.25rem) {
    .adm-layout {
        grid-template-columns: 1fr 22rem;
        gap: var(--sp-12);
    }
}


/* ═══════════════════════════════════════════════════════════════
   3. PROGRESS BAR
═══════════════════════════════════════════════════════════════ */

.adm-progress {
    display: flex;
    align-items: center;
    gap: 0;
    margin:0 var(--sp-6) var(--sp-6);
}

.adm-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-1);
    flex-shrink: 0;
}

.adm-progress-dot {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    font-family: inherit;
    font-weight: 700;
    background: var(--white-muted);
    color: var(--black-soft);
    border: 0.125rem solid var(--white-muted);
    transition: background 0.3s, border-color 0.3s, color 0.3s;
    letter-spacing: 0;
}

/* Done and active dots share the same fill; active adds a glow */
.adm-progress-step--done .adm-progress-dot,
.adm-progress-step--active .adm-progress-dot {
    background: var(--grad-main);
    border-color: transparent;
    color: var(--white);
}

.adm-progress-step--active .adm-progress-dot {
    box-shadow: 0 0.12rem 0.5rem rgba(247, 23, 86, 0.35);
}

.adm-progress-label {
    font-size: 0.625rem;
    color: var(--black-soft);
    letter-spacing: 0;
    text-align: center;
    white-space: nowrap;
}

.adm-progress-step--done .adm-progress-label {
    color: var(--black-soft);
}

.adm-progress-step--active .adm-progress-label {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.adm-progress-line {
    flex: 1;
    height: 0.125rem;
    background: var(--white-muted);
    margin: 1.0625rem var(--sp-2) var(--sp-4);
    align-self: flex-start;
}

.adm-progress-line--done {
    background: var(--grad-main);
}


/* ═══════════════════════════════════════════════════════════════
   4. FORM CARD
═══════════════════════════════════════════════════════════════ */

.adm-form-card {
    background: var(--white);
    border: 0.0625rem solid var(--white-muted);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.25rem 2rem rgba(0, 0, 0, 0.06);
}

.adm-form-card-header {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-6) var(--sp-8);
    border-bottom: 0.0625rem solid var(--white-muted);
    background: var(--white-warm);
}

.adm-form-card-icon {
    width: 3rem;
    height: 3rem;
    border-radius: var(--r3);
    background: var(--grad-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.adm-form-card-title {
    font-size: var(--fs-md);
    color: var(--black);
    line-height: var(--lh-tight);
}

.adm-form-card-subtitle {
    font-size: var(--fs-xs);
    color: var(--black-soft);
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    line-height: var(--lh-base);
    margin-top: var(--sp-1);
}


/* ═══════════════════════════════════════════════════════════════
   5. FORM FIELDS
═══════════════════════════════════════════════════════════════ */

.adm-field-group {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    margin-bottom: var(--sp-5);
}

.adm-label {
    font-size: var(--fs-base);
    color: var(--black);
    font-family: inherit;
    line-height: var(--lh-base);
    display: flex;
    align-items: center;
    gap: var(--sp-1);
}

.adm-label-required {
    color: var(--pink);
    font-size: var(--fs-base);
    line-height: 1;
}

.adm-label-optional {
    font-size: var(--fs-xs);
    color: var(--black-soft);
    font-style: italic;
    margin-left: var(--sp-1);
}

.adm-field-sublabel {
    font-size: var(--fs-xs);
    color: var(--black-soft);
    line-height: var(--lh-loose);
    margin-top: calc(var(--sp-1) * -0.5);
}

.adm-input {
    font-size: var(--fs-base);
    padding: var(--sp-3) var(--sp-4);
    border-radius: var(--r2);
    transition: border-color 0.25s, box-shadow 0.25s;
}

.adm-input:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 0.1875rem rgba(150, 24, 247, 0.12);
    outline: none;
}

.adm-textarea {
    resize: vertical;
    min-height: 6rem;
    line-height: var(--lh-loose);
}

.adm-select-wrap {
    position: relative;
    display: flex;
}

.adm-select-wrap--full {
    width: 100%;
}

.adm-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: var(--sp-8);
    cursor: pointer;
    width: 100%;
}

.adm-select-arrow {
    position: absolute;
    right: var(--sp-3);
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--black-soft);
    flex-shrink: 0;
    transition: color 0.2s;
}

.adm-select:focus + .adm-select-arrow {
    color: var(--purple);
}


/* ═══════════════════════════════════════════════════════════════
   6. CHECKBOXES  (Step 1 only)
═══════════════════════════════════════════════════════════════ */

.adm-checkbox-group {
    margin-bottom: var(--sp-4);
}

.adm-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    cursor: pointer;
    line-height: var(--lh-base);
}

.adm-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.adm-checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    border: 0.125rem solid var(--white-muted);
    border-radius: var(--r1);
    background: var(--white-warm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
    margin-top: 0.125rem;
}

.adm-checkbox-custom svg {
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.2s, transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: var(--white);
}

.adm-checkbox:checked ~ .adm-checkbox-custom {
    background: var(--grad-main);
    border-color: transparent;
    box-shadow: 0 0.125rem 0.5rem rgba(247, 23, 86, 0.3);
}

.adm-checkbox:checked ~ .adm-checkbox-custom svg {
    opacity: 1;
    transform: scale(1);
}

.adm-checkbox:focus-visible ~ .adm-checkbox-custom {
    outline: 0.1875rem solid rgba(150, 24, 247, 0.5);
    outline-offset: 0.125rem;
}

.adm-checkbox-text {
    font-size: var(--fs-base);
    color: var(--black);
    line-height: var(--lh-base);
    font-family: inherit;
}


/* ═══════════════════════════════════════════════════════════════
   7. DATE-OF-BIRTH ROW  (Step 1 only)
═══════════════════════════════════════════════════════════════ */

.adm-dob-row {
    display: grid;
    grid-template-columns: 5rem 1fr 5.5rem;
    gap: var(--sp-2);
}


/* ═══════════════════════════════════════════════════════════════
   8. FORM SECTION TITLE
═══════════════════════════════════════════════════════════════ */

.adm-form-section-title {
    font-size: var(--fs-xs);
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    color: var(--purple);
    margin: var(--sp-6) 0 var(--sp-4);
    padding-bottom: var(--sp-2);
    border-bottom: 0.0625rem solid var(--white-muted);
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    line-height: var(--lh-base);
}

.adm-form-section-title:first-of-type {
    margin-top: 0;
}


/* ═══════════════════════════════════════════════════════════════
   9. FILE UPLOAD WIDGET  (Steps 3, 4, 5)
═══════════════════════════════════════════════════════════════ */

.adm-photo-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.adm-photo-input {
    position: absolute;
    width: 0.0625rem;
    height: 0.0625rem;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
}

.adm-photo-zone {
    border: 0.125rem dashed var(--white-muted);
    border-radius: var(--r4);
    background: var(--white-warm);
    padding: var(--sp-8) var(--sp-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-3);
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
    text-align: center;
    min-height: 10rem;
    position: relative;
}

.adm-photo-zone:hover,
.adm-photo-zone:focus-within {
    border-color: var(--purple);
    background: rgba(150, 24, 247, 0.03);
}

.adm-photo-zone.adm-drag-over {
    border-color: var(--pink);
    background: rgba(247, 23, 86, 0.04);
}

.adm-photo-zone.adm-zone-error {
    border-color: #e53e3e;
    background: #fff5f5;
}

.adm-photo-zone.adm-zone-ok {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.04);
    border-style: solid;
}

.adm-photo-zone-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: var(--grad-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.adm-photo-zone:hover .adm-photo-zone-icon {
    transform: scale(1.08);
}

.adm-photo-zone-icon svg {
    color: var(--pink);
}

.adm-photo-zone-title {
    font-size: var(--fs-base);
    color: var(--black);
    font-family: inherit;
    line-height: var(--lh-base);
}

.adm-photo-zone-sub {
    font-size: var(--fs-xs);
    color: var(--black-soft);
    line-height: var(--lh-base);
}

.adm-photo-zone-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-xs);
    font-family: inherit;
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    color: var(--white);
    background: var(--grad-main);
    border: none;
    border-radius: var(--radius);
    padding: var(--sp-2) var(--sp-5);
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    line-height: var(--lh-base);
}

.adm-photo-zone-btn:hover {
    opacity: 0.88;
    transform: translateY(-0.0625rem);
}

.adm-photo-preview {
    display: none;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-4);
    background: var(--white-warm);
    border: 0.0625rem solid var(--white-muted);
    border-radius: var(--r3);
}

.adm-photo-preview.adm-preview-visible {
    display: flex;
}

.adm-photo-thumb {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: var(--r2);
    object-fit: cover;
    flex-shrink: 0;
    border: 0.0625rem solid var(--white-muted);
}

.adm-doc-thumb {
    width: 4.5rem;
    height: 4.5rem;
    border-radius: var(--r2);
    flex-shrink: 0;
    border: 0.0625rem solid var(--white-muted);
    background: var(--white-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black-soft);
}

.adm-photo-preview-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    min-width: 0;
}

.adm-photo-preview-name {
    font-size: var(--fs-base);
    color: var(--black);
    font-family: inherit;
    line-height: var(--lh-base);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.adm-photo-preview-size {
    font-size: var(--fs-xs);
    color: var(--black-soft);
    line-height: var(--lh-base);
}

.adm-photo-preview-ok {
    display: flex;
    align-items: center;
    gap: var(--sp-1);
    font-size: var(--fs-xs);
    color: #22c55e;
    line-height: var(--lh-base);
}

.adm-photo-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--sp-1);
    color: var(--black-soft);
    border-radius: var(--r1);
    transition: color 0.2s, background 0.2s;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.adm-photo-remove:hover {
    color: #e53e3e;
    background: #fff5f5;
}

/* Sidebar tip bullet lists (Steps 3 & 4) — merged into one rule */
.adm-photo-tips,
.adm-doc-tips {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.adm-photo-tip,
.adm-doc-tip {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-base);
    color: var(--black-soft);
    line-height: var(--lh-loose);
    font-family: inherit;
}

.adm-photo-tip-dot,
.adm-doc-tip-dot {
    width: 0.375rem;
    height: 0.375rem;
    min-width: 0.375rem;
    border-radius: 50%;
    background: var(--grad-main);
    margin-top: 0.5rem;
    flex-shrink: 0;
}


/* ═══════════════════════════════════════════════════════════════
   10. ACTION ROW & SUBMIT BUTTON
═══════════════════════════════════════════════════════════════ */

.adm-action-row {
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
    margin-top: var(--sp-6);
}

.adm-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    font-size: var(--fs-base);
    letter-spacing: 0.125rem;
}

.adm-submit:hover .btn-arrow-icon {
    transform: translateX(0.25rem);
}

.adm-submit:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    filter: none;
    transform: none;
}

.adm-form-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--sp-1);
    margin-top: var(--sp-3);
    color: var(--black-soft);
    text-align: left;
}


/* ═══════════════════════════════════════════════════════════════
   11. PROBLEM NOTICE & GRADIENT LINK
═══════════════════════════════════════════════════════════════ */

.adm-problem-note {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--sp-1);
    padding: var(--sp-4) var(--sp-8);
    background: var(--white-warm);
    border-top: 0.0625rem solid var(--white-muted);
    font-size: var(--fs-base);
    color: var(--black-soft);
    line-height: var(--lh-base);
}

.adm-problem-note svg {
    flex-shrink: 0;
    color: var(--black-soft);
}

.adm-problem-note a {
    white-space: nowrap;
}

.adm-link {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: rgba(247, 23, 86, 0.4);
    transition: text-decoration-color 0.2s;
}


/* ═══════════════════════════════════════════════════════════════
   12. SIDEBAR
═══════════════════════════════════════════════════════════════ */

.adm-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--sp-5);
}

.adm-sidebar-card {
    background: var(--white);
    border: 0.0625rem solid var(--white-muted);
    border-radius: 1rem;
    padding: var(--sp-6);
    box-shadow: 0 0.125rem 1rem rgba(0, 0, 0, 0.04);
}

.adm-sidebar-card--dark {
    background: var(--grad-dark);
    border-color: transparent;
}

.adm-sidebar-card--stats {
    background: var(--grad-main);
    border-color: transparent;
}

.adm-sidebar-card--contact {
    border: 0.125rem solid var(--pink-pale);
}

.adm-sidebar-title {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-base);
    font-family: inherit;
    font-weight: 100;
    line-height: var(--lh-tight);
    margin-bottom: var(--sp-5);
    color: var(--white);
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
}

.adm-sidebar-title--light {
    color: var(--white);
}

/* Journey / next-steps list */
.adm-steps-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--sp-4);
}

.adm-step {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
}

.adm-step-num {
    width: 1.75rem;
    height: 1.75rem;
    min-width: 1.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 0.0625rem solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xs);
    color: var(--white);
    font-weight: 700;
    font-family: inherit;
}

.adm-step--done .adm-step-num {
    background: rgba(34, 197, 94, 0.45);
    border-color: rgba(34, 197, 94, 0.75);
}

.adm-step--active .adm-step-num {
    background: rgba(247, 23, 86, 0.35);
    border-color: rgba(247, 23, 86, 0.6);
}

.adm-step-text {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.8);
    line-height: var(--lh-loose);
    font-family: inherit;
}

.adm-step--done .adm-step-text {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.3);
}

/* Stats grid */
.adm-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-4);
}

.adm-stat {
    display: flex;
    flex-direction: column;
    gap: var(--sp-1);
    padding: var(--sp-4);
    background: rgba(255, 255, 255, 0.20);
    border-radius: var(--r3);
    text-align: center;
    transition: background 0.2s;
}

.adm-stat:hover {
    background: rgba(255, 255, 255, 0.28);
}

.adm-stat-val {
    font-size: var(--fs-lg);
    color: var(--white);
    line-height: var(--lh-tight);
    font-family: inherit;
}

.adm-stat-val em {
    font-style: normal;
    font-size: var(--fs-base);
    opacity: 0.85;
}

.adm-stat-lbl {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    line-height: var(--lh-base);
    font-family: inherit;
}


/* ═══════════════════════════════════════════════════════════════
   13. CONTACT CARD
═══════════════════════════════════════════════════════════════ */

.adm-contact-heading {
    font-size: var(--fs-base);
    color: var(--black);
    font-family: inherit;
    line-height: var(--lh-loose);
    margin-bottom: var(--sp-4);
}

.adm-contact-phone {
    display: flex;
    align-items: center;
    gap: var(--sp-2);
    font-size: var(--fs-md);
    font-family: inherit;
    font-weight: 600;
    color: var(--black);
    text-decoration: none;
    margin-bottom: var(--sp-3);
    transition: color 0.2s;
    line-height: var(--lh-base);
}

.adm-contact-phone:hover {
    color: var(--pink);
}

.adm-contact-phone svg {
    color: var(--pink);
}

.adm-contact-wa {
    width: 100%;
    justify-content: center;
    padding: var(--sp-3) var(--sp-4);
    font-size: var(--fs-xs);
}


/* ═══════════════════════════════════════════════════════════════
   14. COURSE LIST  (Step 1 sidebar only)
═══════════════════════════════════════════════════════════════ */

.adm-course-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.adm-course-item {
    border-bottom: 0.0625rem solid var(--white-muted);
}

.adm-course-item:last-child {
    border-bottom: none;
}

.adm-course-link {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    padding: var(--sp-3) 0;
    color: var(--black);
    text-decoration: none;
    font-family: inherit;
    font-size: var(--fs-base);
    transition: color 0.2s, padding-left 0.2s;
    line-height: var(--lh-base);
}

.adm-course-link:hover {
    color: var(--pink);
    padding-left: var(--sp-1);
}

.adm-course-duration {
    font-size: var(--fs-xs);
    color: var(--white);
    background: var(--grad-main);
    border-radius: 99rem;
    padding: 0.125rem var(--sp-2);
    white-space: nowrap;
    flex-shrink: 0;
    letter-spacing: 0.03125rem;
    line-height: var(--lh-base);
}

.adm-course-name {
    flex: 1;
    line-height: var(--lh-base);
}

.adm-course-link .btn-arrow-icon {
    flex-shrink: 0;
    opacity: 0.35;
    transition: opacity 0.2s, transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.adm-course-link:hover .btn-arrow-icon {
    opacity: 1;
    transform: rotate(-35deg) scale(1.15);
}


/* ═══════════════════════════════════════════════════════════════
   15. NAV ACTIVE STATE
═══════════════════════════════════════════════════════════════ */

.nav-link--active {
    background: var(--grad-soft);
    border-radius: var(--r2);
}

.nav-link--active::before {
    background: var(--grad-main) !important;
    width: 0.1875rem !important;
    border-radius: var(--r1);
}


/* ═══════════════════════════════════════════════════════════════
   16. PAYMENT SCREEN  (Step 5 only)
═══════════════════════════════════════════════════════════════ */

.adm-pay-body {
    padding: var(--sp-8);
}

.adm-amount-chip {
    display: inline-flex;
    align-items: baseline;
    gap: var(--sp-2);
    background: var(--grad-soft);
    border: 0.0625rem solid var(--pink-pale);
    border-radius: var(--r4);
    padding: var(--sp-4) var(--sp-6);
    margin-bottom: var(--sp-6);
}

.adm-amount-label {
    font-size: var(--fs-xs);
    letter-spacing: 0.125rem;
    text-transform: uppercase;
    color: var(--black-soft);
    line-height: var(--lh-base);
}

.adm-amount-value {
    font-size: var(--fs-xl);
    line-height: var(--lh-tight);
    font-family: inherit;
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.adm-amount-note {
    font-size: var(--fs-xs);
    color: var(--black-soft);
    line-height: var(--lh-loose);
    margin-top: calc(var(--sp-1) * -1);
    margin-bottom: var(--sp-6);
}

.adm-pay-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-2);
}

@media (min-width: 36rem) {
    .adm-pay-options {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.adm-qr-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--sp-4);
    padding: var(--sp-2);
    background: var(--white-warm);
    border: 0.0625rem solid var(--white-muted);
    border-radius: var(--r4);
    text-align: center;
}

.adm-qr-box {
    width: 11rem;
    height: 11rem;
    border-radius: var(--r3);
    border: 0.0625rem solid var(--white-muted);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.adm-qr-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.adm-qr-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--sp-2);
    color: var(--black-soft);
    width: 100%;
    height: 100%;
    padding: var(--sp-3);
}

.adm-qr-placeholder svg {
    opacity: 0.35;
}

.adm-qr-placeholder-text {
    font-size: var(--fs-xs);
    line-height: var(--lh-base);
    opacity: 0.6;
}

.adm-qr-upi-id {
    font-size: var(--fs-base);
    color: var(--black);
    font-family: inherit;
    line-height: var(--lh-base);
    word-break: break-all;
}

.adm-qr-label {
    font-size: var(--fs-xs);
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    color: var(--black-soft);
    line-height: var(--lh-base);
}

.adm-bank-panel {
    display: flex;
    flex-direction: column;
    background: var(--white-warm);
    border: 0.0625rem solid var(--white-muted);
    border-radius: var(--r4);
    overflow: hidden;
}

.adm-bank-row {
    display: grid;
    grid-template-columns: 10rem 1fr;
    border-bottom: 0.0625rem solid var(--white-muted);
}

.adm-bank-row:last-child {
    border-bottom: none;
}

.adm-bank-key {
    font-size: var(--fs-xs);
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    color: var(--black-soft);
    padding: var(--sp-4) var(--sp-4) var(--sp-4) var(--sp-5);
    line-height: var(--lh-base);
    background: var(--white);
    display: flex;
    align-items: center;
    border-right: 0.0625rem solid var(--white-muted);
}

.adm-bank-val {
    font-size: var(--fs-base);
    color: var(--black);
    padding: var(--sp-4) var(--sp-5);
    line-height: var(--lh-base);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-2);
    font-family: inherit;
    word-break: break-all;
}

.adm-pay-instructions {
    background: var(--white-warm);
    border: 0.0625rem solid var(--white-muted);
    border-radius: var(--r3);
    padding: var(--sp-5) var(--sp-6);
    margin-top: var(--sp-6);
}

.adm-pay-instructions-title {
    font-size: var(--fs-xs);
    letter-spacing: 0.0625rem;
    text-transform: uppercase;
    color: var(--black-soft);
    margin-bottom: var(--sp-3);
    line-height: var(--lh-base);
}

.adm-pay-steps {
    list-style: none;
    counter-reset: pay-step;
    display: flex;
    flex-direction: column;
    gap: var(--sp-3);
}

.adm-pay-step {
    counter-increment: pay-step;
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    font-size: var(--fs-base);
    color: var(--black-soft);
    line-height: var(--lh-loose);
    font-family: inherit;
}

.adm-pay-step::before {
    content: counter(pay-step);
    min-width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background: var(--grad-main);
    color: var(--white);
    font-size: var(--fs-xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1875rem;
    font-family: inherit;
}


/* ═══════════════════════════════════════════════════════════════
   17. PER-STEP FORM OVERRIDES
   All form bodies share identical padding. Only the element ID differs.
═══════════════════════════════════════════════════════════════ */

#admissionForm,
#admissionFormStep2,
#admissionFormStep3,
#admissionFormStep4 {
    padding: var(--sp-8);
    display: flex;
    flex-direction: column;
    gap: 0;
}


/* ═══════════════════════════════════════════════════════════════
   18. RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════════════ */

/* ── Mobile  (≤ 479px) ─────────────────────────────────── */
@media (max-width: 29.9375rem) {

    #admissionForm,
    #admissionFormStep2,
    #admissionFormStep3,
    #admissionFormStep4,
    .adm-pay-body {
        padding: var(--sp-6) var(--sp-5);
    }

    .adm-form-card-header {
        padding: var(--sp-5);
    }

    .adm-problem-note {
        padding: var(--sp-4) var(--sp-5);
    }

    .adm-photo-zone {
        padding: var(--sp-6) var(--sp-4);
    }

    /* DOB row: collapse to 2-col; year spans full width */
    .adm-dob-row {
        grid-template-columns: 1fr 1fr;
    }

    .adm-dob-row .adm-select-wrap:last-child {
        grid-column: 1 / -1;
    }

    /* Payment bank table: stack key above value */
    .adm-bank-row {
        grid-template-columns: 1fr;
    }

    .adm-bank-key {
        border-right: none;
        border-bottom: 0.0625rem solid var(--white-muted);
        padding: var(--sp-3) var(--sp-4) var(--sp-1);
    }

    .adm-bank-val {
        padding: var(--sp-1) var(--sp-4) var(--sp-3);
    }
}

/* ── Tablet+  (≥ 480px) — DOB row restores 3 columns ──── */
@media (min-width: 30rem) {
    .adm-dob-row {
        grid-template-columns: 5rem 1fr 5.5rem;
    }
}

/* ── Wider screens (≥ 640px) — hero title scales fluidly ── */
@media (min-width: 40rem) {
    .adm-hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
}