/* ============================================================
   Pre-Registration Page — Notre Dame of Marbel University
   Full responsive revamp · design-system.css compatible
   ============================================================ */


.no-pointer {
    pointer-events: none;
    background-color: #f5f5f5; /* optional: visual cue */
}
/* ── Preloader ─────────────────────────────────────────────── */
#preloader {
    background: var(--theme-bg-base, #fff);
    flex-direction: column;
    transition: opacity .4s ease, visibility .4s ease;
}

#preloader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-logo {
    height: 72px;
    animation: preloader-pulse 1.6s ease-in-out infinite;
    filter: drop-shadow(0 4px 16px rgba(5, 150, 105, .25));
}

@keyframes preloader-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: .75;
        transform: scale(.96);
    }
}

.preloader-text {
    font-size: .85rem;
    color: var(--theme-text-sub, #6b7280);
    letter-spacing: .04em;
}

/* ── Page shell ────────────────────────────────────────────── */
.pre-reg-page {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    --theme-text-main: #0f172a;
    --theme-text-sub: #475467;
}

/* ── Trust bar (top strip) ─────────────────────────────────── */
.trust-bar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: .5rem 1.25rem;
    padding: .6rem 1.2rem;
    background: var(--pr-emerald-600);
    border: 1px solid var(--color-success-200, #a7f3d0);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}

.dark-theme .trust-bar {
    background: rgba(5, 150, 105, .12);
    border-color: rgba(5, 150, 105, .3);
}

.trust-bar-item {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .78rem;
    font-weight: 600;
    color: var(--color-success-700, #065f46);
}

.dark-theme .trust-bar-item {
    color: var(--color-success-300, #072f1f);
}

.trust-bar-item i {
    font-size: .75rem;
}

.trust-bar-divider {
    width: 1px;
    height: 14px;
    background: var(--color-success-200, #a7f3d0);
    flex-shrink: 0;
}

.dark-theme .trust-bar-divider {
    background: rgba(5, 150, 105, .35);
}

/* ── Hero Banner ───────────────────────────────────────────── */
.reg-hero-banner {
    position: relative;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 40%, #047857 70%, #059669 100%);
    border-radius: 24px;
    padding: 2.5rem 2.5rem 2rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(6, 78, 59, .4);
}

.reg-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 50%, rgba(255, 255, 255, .07) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 10% 20%, rgba(16, 185, 129, .2) 0%, transparent 60%);
    pointer-events: none;
}

.hero-grain {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: .6;
    border-radius: inherit;
}

.hero-dept-badge {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .9);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    margin-bottom: .85rem;
}

.hero-logo-circle {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.hero-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.2;
    letter-spacing: -.02em;
}

.hero-year-subtitle {
    font-size: .85rem;
    color: rgba(255, 255, 255, .72);
    margin-top: .2rem;
}

.text-white-accent {
    color: #6ee7b7 !important;
}

.hero-description {
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    line-height: 1.6;
    max-width: 520px;
}

.hero-stat-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .92);
    font-size: .75rem;
    font-weight: 600;
    padding: .3rem .8rem;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    transition: background .2s;
}

.hero-stat-pill:hover {
    background: rgba(255, 255, 255, .22);
}

.pre-reg-right-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .col-lg-4.order-lg-2 {
        display: flex;
        align-items: flex-start;
    }

    .pre-reg-right-column {
        position: sticky;
        top: 4.5rem;
        align-self: flex-start;
        z-index: 12;
        width: 100%;
    }
}

/* Needs card — right column of hero */
.needs-card {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 18px;
    backdrop-filter: blur(12px);
    padding: 1.25rem 1.5rem !important;
}

.needs-title {
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: .45rem;
}

.check-item {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    font-size: .82rem;
    color: rgba(255, 255, 255, .85);
    margin-bottom: .65rem;
    padding-bottom: .65rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    line-height: 1.45;
}

.check-item:last-of-type {
    border-bottom: none;
    margin-bottom: .5rem;
}

.check-item>i {
    color: #6ee7b7;
    font-size: .85rem;
    margin-top: .12rem;
    flex-shrink: 0;
}

.tip-pill {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    background: rgba(255, 220, 100, .18);
    border: 1px solid rgba(255, 220, 100, .3);
    border-radius: 10px;
    padding: .6rem .8rem;
    font-size: .77rem;
    color: #fde68a;
    margin-top: .5rem;
    line-height: 1.45;
}

.tip-pill i {
    color: #fbbf24;
    font-size: .8rem;
    flex-shrink: 0;
    margin-top: .1rem;
}

/* ── Page Info Strip (between hero & stepper) ──────────────── */
.reg-info-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.reg-info-strip-item {
    display: flex;
    align-items: center;
    gap: .1rem;
    background: var(--theme-bg-card, #fff);
    border: 1px solid var(--theme-border, #e5e7eb);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    transition: box-shadow .2s, transform .2s;
}

.reg-info-strip-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .08);
    transform: translateY(-2px);
}

.reg-info-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-right: .2rem;
}

.reg-info-icon.green {
    background: var(--color-success-50, #ecfdf5);
    color: var(--color-success, #059669);
}

.reg-info-icon.blue {
    background: var(--color-info-50, #eff6ff);
    color: var(--color-info, #3b82f6);
}

.reg-info-icon.amber {
    background: var(--color-warning-50, #fffbeb);
    color: var(--color-warning, #f59e0b);
}

.reg-info-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.dark-theme .reg-info-icon.green {
    background: rgba(5, 150, 105, .15);
}

.dark-theme .reg-info-icon.blue {
    background: rgba(59, 130, 246, .15);
}

.dark-theme .reg-info-icon.amber {
    background: rgba(245, 158, 11, .15);
}

.dark-theme .reg-info-icon.purple {
    background: rgba(124, 58, 237, .15);
}

.reg-info-label {
    font-size: .6rem;
    color: var(--theme-text-sub);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.reg-info-val {
    font-size: .82rem;
    color: var(--theme-text-main);
    font-weight: 700;
}

/* ── Stepper ───────────────────────────────────────────────── */
.stepper-shell {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 40%, #065f46 100%);
    border: 1px solid var(--theme-border, #e5e7eb);
    border-radius: 20px;
    padding: 1.25rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
    position: relative;
    z-index: 10;
    transition: box-shadow .3s, border-color .3s;
}

.stepper-shell.is-scrolled {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    border-color: var(--color-success-300, #6ee7b7);
}

.step-progress-label {
    font-size: .82rem;
    color: #fefefe !important;
    font-weight: 700;
    letter-spacing: .01em;
}

.step-progress-hint {
    font-size: .75rem;
    color: var(--theme-text-sub);
}

/* Stepper row */
.stepper-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding-top: .25rem;
}

/* Connector line */
.stepper-wrapper::before {
    content: '';
    position: absolute;
    top: 22px;
    left: calc(16.66% + 12px);
    right: calc(16.66% + 12px);
    height: 3px;
    background: var(--theme-border, #e5e7eb);
    border-radius: 2px;
    z-index: 0;
}

.stepper-connector-fill {
    position: absolute;
    top: 22px;
    left: calc(16.66% + 12px);
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #059669, #34d399);
    border-radius: 2px;
    z-index: 1;
    transition: width .7s cubic-bezier(.4, 0, .2, 1);
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    cursor: pointer;
    position: relative;
    z-index: 2;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    transition: opacity .2s;
}

.stepper-item:not(.active):not(.completed) {
    opacity: .55;
}

.stepper-item:hover {
    opacity: 1 !important;
}

.step-counter {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--theme-bg-elevated, #f9fafb);
    border: 3px solid var(--theme-border, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    color: var(--theme-text-sub);
    transition: all .35s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .07);
    margin-bottom: .5rem;
}

.stepper-item.active .step-counter {
    background: linear-gradient(135deg, #059669, #34d399);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 20px rgba(5, 150, 105, .4);
    transform: scale(1.08);
}

.stepper-item.completed .step-counter {
    background: #ecfdf5;
    border-color: #059669;
    color: #059669;
}

.dark-theme .stepper-item.completed .step-counter {
    background: rgba(5, 150, 105, .2);
    border-color: #34d399;
    color: #34d399;
}

.step-name {
    font-size: .78rem;
    font-weight: 700;
    color: var(--theme-text-main);
    text-align: center;
    white-space: nowrap;
}

.step-meta {
    font-size: .65rem;
    color: var(--white-subtle, rgba(255, 255, 255, .7));
    text-align: center;
    white-space: nowrap;
}

.stepper-item.active .step-name {
    color: var(--color-success, #059669);
}

.stepper-item.completed .step-name {
    color: var(--color-success, #059669);
}

/* Progress bar below stepper */
.overall-progress {
    background: var(--theme-border, #e2e8f0) !important;
    border-radius: 10px;
    overflow: hidden;
}

.overall-progress .progress-bar {
    background: linear-gradient(90deg, #059669, #34d399);
    border-radius: 10px;
    transition: width .65s cubic-bezier(.4, 0, .2, 1);
}

/* ── Main Form Card ────────────────────────────────────────── */
.main-registration-card {
    border: 1px solid var(--theme-border, #e5e7eb);
    border-radius: 24px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .07);
    background: var(--theme-bg-card, #fff);
    overflow: hidden;

    color: var(--theme-text-main, #0f172a);
}

.main-registration-card .step-content,
.main-registration-card label,
.main-registration-card p,
.main-registration-card small,
.main-registration-card .form-label,
.main-registration-card .form-check-label,
.main-registration-card .info-section,
.main-registration-card .info-section-header {
    color: var(--theme-text-main, #0f172a);
}

.step-nav-footer .btn-step-back {
    color: var(--theme-text-main, #0f172a);
}


/* ── Step Content ──────────────────────────────────────────── */
.step-content {
    animation: fadeSlideIn .4s ease both;
}

.step-content.d-none {
    animation: none;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Step header band */
.step-header-band {
    background: linear-gradient(135deg, var(--color-success-50, #ecfdf5) 0%, var(--theme-bg-elevated, #f9fafb) 100%);
    border: 1px solid var(--color-success-100, #d1fae5);
    border-radius: 16px;
    padding: 1.1rem 1.4rem;
}

.dark-theme .step-header-band {
    background: linear-gradient(135deg, rgba(5, 150, 105, .12) 0%, var(--theme-bg-elevated) 100%);
    border-color: rgba(5, 150, 105, .25);
}

.step-header-band-payment {
    background: linear-gradient(135deg, #fff7ed 0%, var(--theme-bg-elevated, #f9fafb) 100%);
    border-color: #fed7aa;
}

.dark-theme .step-header-band-payment {
    background: linear-gradient(135deg, rgba(245, 158, 11, .1) 0%, var(--theme-bg-elevated) 100%);
    border-color: rgba(245, 158, 11, .25);
}

.step-num-badge {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, #059669, #34d399);
    color: #fff;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(5, 150, 105, .4);
    letter-spacing: -.02em;
}

.step-num-badge-payment {
    background: linear-gradient(135deg, #d97706, #fbbf24);
    box-shadow: 0 4px 14px rgba(217, 119, 6, .4);
}

.step-header-subtitle {
    font-size: .81rem;
}

.step-time-badge,
.step-final-badge {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .85rem;
    border-radius: 30px;
    white-space: nowrap;
    align-self: flex-start;
}

.step-time-badge {
    background: var(--color-info-50, #eff6ff);
    border: 1px solid var(--color-info-100, #dbeafe);
    color: #1d4ed8;
}

.dark-theme .step-time-badge {
    background: rgba(59, 130, 246, .15);
    border-color: rgba(59, 130, 246, .3);
    color: #93c5fd;
}

.step-final-badge {
    background: linear-gradient(135deg, #d97706, #fbbf24);
    color: #fff;
    box-shadow: 0 3px 10px rgba(217, 119, 6, .35);
}

/* ── Step 3 reminder ───────────────────────────────────────── */
.step3-reminder {
    background: var(--color-success-50, #ecfdf5);
    border: 1px solid var(--color-success-100, #d1fae5);
    border-radius: 14px;
    padding: 1.1rem 1.3rem;
    margin-bottom: 1.75rem;
}

.dark-theme .step3-reminder {
    background: rgba(5, 150, 105, .1);
    border-color: rgba(5, 150, 105, .25);
}

.reminder-title {
    font-size: .85rem;
}

.reminder-body {
    font-size: .82rem;
    line-height: 1.6;
}

/* ── Registration summary bar ──────────────────────────────── */
.reg-summary-bar {
    background: var(--theme-bg-elevated, #f9fafb);
    border: 1px solid var(--theme-border, #e5e7eb);
    border-radius: 12px;
    font-size: .8rem;
}

.dark-theme .reg-summary-bar {
    background: var(--theme-bg-card);
}

.sum-check {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    background: var(--color-success-50, #ecfdf5);
    border: 1px solid var(--color-success-200, #a7f3d0);
    color: var(--color-success-700, #065f46);
    padding: .2rem .7rem;
    border-radius: 20px;
    font-size: .73rem;
    font-weight: 600;
}

.dark-theme .sum-check {
    background: rgba(5, 150, 105, .15);
    border-color: rgba(5, 150, 105, .3);
    color: #6ee7b7;
}

.sum-check i {
    font-size: .7rem;
}

/* ── Data Privacy Box ──────────────────────────────────────── */
.privacy-box {
    background: var(--theme-bg-elevated, #f9fafb);
    border: 2px solid var(--theme-border, #e5e7eb);
    border-radius: 16px;
    padding: 1.25rem 1.4rem;
    transition: border-color .25s;
}

.privacy-box:has(#data-privacy-toggle:checked) {
    border-color: #059669;
    background: var(--color-success-50, #ecfdf5);
}

.dark-theme .privacy-box:has(#data-privacy-toggle:checked) {
    background: rgba(5, 150, 105, .1);
}

.dpa-icon {
    font-size: 1.1rem;
    color: var(--color-success, #059669);
}

.dpa-section-title {
    font-size: .88rem;
    color: var(--theme-text-main);
}

.dpa-link {
    color: var(--color-success, #059669);
    font-weight: 700;
    text-decoration: underline dotted;
    cursor: pointer;
    transition: color .2s;
}

.dpa-link:hover {
    color: #047857;
}

.dpa-error-msg {
    font-size: .78rem;
    color: var(--color-danger, #dc2626);
    font-weight: 600;
}

/* ── Step Navigation Footer ────────────────────────────────── */
.step-nav-footer {
    border-top: 1px solid var(--theme-border, #e5e7eb);
    padding-top: 1.5rem;
    margin-top: 2rem;
}

.step-nav-hint {
    font-size: .75rem;
    color: var(--theme-text-sub);
}

.btn-step-back {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .6rem 1.2rem;
    border-radius: 12px;
    font-size: .84rem;
    font-weight: 600;
    border: 2px solid var(--theme-border, #e5e7eb);
    background: transparent;
    color: var(--theme-text-sub, #6b7280);
    transition: all .22s;
    text-decoration: none;
    cursor: pointer;
}

.btn-step-back:hover {
    border-color: var(--theme-text-sub, #9ca3af);
    background: var(--theme-bg-elevated, #f3f4f6);
    color: var(--theme-text-main);
    transform: translateX(-2px);
}

.btn-step-next {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .7rem 1.6rem;
    border-radius: 12px;
    font-size: .88rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669, #34d399);
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(5, 150, 105, .38);
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    cursor: pointer;
}

.btn-step-next:hover {
    box-shadow: 0 10px 28px rgba(5, 150, 105, .5);
    transform: translateY(-2px) scale(1.02);
    background: linear-gradient(135deg, #047857, #059669);
    color: #fff;
}

.btn-step-next:active {
    transform: scale(.98);
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 2.2rem;
    border-radius: 14px;
    font-size: .95rem;
    font-weight: 800;
    background: linear-gradient(135deg, #047857 0%, #065f46 100%);
    color: #fff;
    border: none;
    box-shadow: 0 8px 28px rgba(4, 120, 87, .45);
    letter-spacing: .01em;
    transition: all .28s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .12), transparent);
    pointer-events: none;
}

.btn-submit:hover:not(:disabled) {
    box-shadow: 0 14px 40px rgba(4, 120, 87, .55);
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #fff;
}

.btn-submit:disabled {
    opacity: .55;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.submit-security-note {
    font-size: .72rem;
    color: var(--theme-text-sub);
}

/* ── Floating Help FAB ─────────────────────────────────────── */
.help-fab {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .5rem;
}

.help-panel {
    background: var(--theme-bg-card, #fff);
    border: 1px solid var(--theme-border, #e5e7eb);
    border-radius: 18px;
    padding: 1.1rem 1.25rem;
    width: 300px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .15);
    display: none;
    animation: fab-pop .28s cubic-bezier(.4, 0, .2, 1);
}

.help-panel.show {
    display: block;
}

@keyframes fab-pop {
    from {
        opacity: 0;
        transform: scale(.9) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.help-panel h6 {
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .04em;
    color: var(--color-success, #059669);
    text-transform: uppercase;
    margin-bottom: .75rem;
}

.help-panel ul {
    list-style: none;
    padding: 0;
    margin: 0 0 .75rem;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}

.help-panel ul li {
    display: flex;
    align-items: flex-start;
    gap: .55rem;
    font-size: .78rem;
    color: var(--theme-text-main);
    line-height: 1.45;
}

.help-fab-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #059669, #34d399);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: 0 6px 24px rgba(5, 150, 105, .45);
    cursor: pointer;
    transition: all .25s;
    flex-shrink: 0;
}

.help-fab-btn:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 32px rgba(5, 150, 105, .55);
}

/* ── Form section cards (used in step components) ──────────── */
.form-section-card {
    background: var(--theme-bg-elevated, #f9fafb);
    border: 1px solid var(--theme-border, #e5e7eb);
    border-radius: 16px;
    transition: box-shadow .2s, border-color .2s;
}

.form-section-card:focus-within {
    border-color: var(--color-success-300, #6ee7b7);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, .08);
}

.dark-theme .form-section-card {
    background: var(--theme-bg-base);
}

.status-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-radius: 16px;
    border: 1px solid var(--theme-border, #e5e7eb);
    background: var(--theme-bg-card, #fff);
    box-shadow: 0 6px 26px rgba(3, 7, 18, .12);
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    position: relative;
}

.status-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 36px rgba(3, 7, 18, .18);
    border-color: var(--pr-emerald-300, #6ee7b7);
}

.status-card .status-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: rgba(var(--pr-emerald-rgb), .15);
    color: var(--pr-emerald-700);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.status-card .status-icon-wrap i {
    font-size: 1.3rem;
}

.status-card .status-check-indicator {
    margin-left: auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid var(--theme-border, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-bg-base, #fff);
    color: transparent;
    transition: border-color .2s ease, background .2s ease;
}

.status-card .status-check-indicator i {
    font-size: 0.9rem;
    color: transparent;
    transition: color .2s ease;
}

.status-selection-pill {
    position: absolute;
    top: 16px;
    right: 18px;
    padding: .2rem .7rem;
    border-radius: 999px;
    background: rgba(var(--pr-emerald-rgb), .16);
    border: 1px solid rgba(var(--pr-emerald-rgb), .3);
    color: var(--pr-emerald-700);
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .02em;
    display: none;
}

.btn-check:checked+.status-card {
    border-color: var(--pr-emerald-500);
    box-shadow: 0 12px 36px rgba(var(--pr-emerald-rgb), .25);
}

.btn-check:checked+.status-card .status-selection-pill {
    display: inline-flex;
    align-items: center;
}

.btn-check:checked+.status-card .status-check-indicator {
    border-color: var(--pr-emerald-500);
    background: rgba(var(--pr-emerald-rgb), .1);
}

.btn-check:checked+.status-card .status-check-indicator i {
    color: var(--pr-emerald-700);
    transform: scale(1);
}

.grade-level-info.info-tip {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .4rem .7rem;
    border-radius: 999px;
    border: 1px solid var(--pr-emerald-200, #a7f3d0);
    background: rgba(var(--pr-emerald-rgb), .1);
    font-size: .72rem;
    color: var(--pr-emerald-700);
}

.grade-level-info.info-tip i {
    font-size: .75rem;
    color: var(--pr-emerald-500);
}

/* ── Step-1 section number badge ──────────────────────────── */
.step1-num-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-success-50, #ecfdf5);
    border: 1.5px solid var(--color-success-300, #6ee7b7);
    color: #059669;
    font-size: .75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ── Step-1 side-by-side panel card ──────────────────────── */
.step1-panel {
    background: #a7b7ae1f;
    border: 1.5px solid var(--theme-border);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow .2s;
}

.step1-panel:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .07);
}

.step1-panel-header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .9rem 1.1rem;
    background: rgba(var(--color-primary-rgb, 5, 150, 105), .04);
    border-bottom: 1px solid var(--theme-border);
}

.step1-panel-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(var(--color-primary-rgb, 5, 150, 105), .1);
    color: var(--color-info);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.step1-panel-body {
    padding: 1rem 1.1rem;
    flex: 1;
}

/* ── SHS rule strip (Grade 11 / Grade 12 guide) ──────────── */
.shs-rule-strip {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: .4rem .6rem;
    padding: .5rem .9rem;
    border-radius: 999px;
    background: rgba(var(--pr-emerald-rgb, 16, 185, 129), .07);
    border: 1px solid rgba(var(--pr-emerald-rgb, 16, 185, 129), .2);
}

.shs-rule-pill {
    font-size: .72rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: .2rem;
}

.shs-rule-g11 {
    color: #059669;
}

.shs-rule-g12 {
    color: #0ea5e9;
}

.shs-rule-divider {
    color: var(--theme-border, #d1d5db);
    font-size: .8rem;
}

/* ── Enrollment Summary Banner ───────────────────────────── */
.enrollment-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(5, 150, 105, .09) 0%, rgba(16, 185, 129, .04) 100%);
    border: 1.5px solid rgba(5, 150, 105, .3);
    box-shadow: 0 4px 18px rgba(5, 150, 105, .12);
    animation: enrollBannerIn .35s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes enrollBannerIn {
    from {
        opacity: 0;
        transform: translateY(-10px) scale(.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.enrollment-banner-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(5, 150, 105, .15);
    color: #059669;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.enrollment-banner-body {
    flex: 1;
    min-width: 0;
}

.enrollment-banner-label {
    display: block;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #059669;
    margin-bottom: .18rem;
}

.enrollment-banner-text {
    font-size: .97rem;
    font-weight: 700;
    color: var(--theme-text-main, #111827);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
}

.enrollment-banner-badge {
    padding: .3rem .8rem;
    border-radius: 999px;
    background: rgba(5, 150, 105, .14);
    border: 1px solid rgba(5, 150, 105, .3);
    color: #059669;
    font-size: .7rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .2s;
}

/* ── New status-card-v2 (step 1 cards) ───────────────────── */
.status-card-v2 {
    display: flex;
    flex-direction: column;
    padding: 1.1rem 1.1rem .9rem;
    border-radius: 16px;
    border: 1.5px solid var(--theme-border, #e5e7eb);
    background: var(--theme-bg-card, #fff);
    box-shadow: 0 2px 10px rgba(3, 7, 18, .07);
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
    position: relative;
    overflow: hidden;
}

.status-card-v2:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(3, 7, 18, .14);
    border-color: var(--pr-emerald-300, #6ee7b7);
}

.scv2-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    margin-bottom: .7rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

.scv2-body {
    flex: 1;
}

.scv2-title {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .25rem;
    color: var(--theme-text-main);
    line-height: 1.3;
}

.scv2-desc {
    font-size: .72rem;
    color: var(--theme-text-sub, #6b7280);
    margin-bottom: 0;
    line-height: 1.45;
}

.scv2-check {
    position: absolute;
    top: .85rem;
    right: .85rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1.5px solid var(--theme-border, #e5e7eb);
    background: var(--theme-bg-base, #fff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all .2s ease;
}

.scv2-check i {
    font-size: .7rem;
    color: transparent;
    transition: color .2s;
}

.scv2-selected-pill {
    position: absolute;
    bottom: .6rem;
    right: .75rem;
    padding: .15rem .55rem;
    border-radius: 999px;
    background: rgba(5, 150, 105, .12);
    border: 1px solid rgba(5, 150, 105, .25);
    color: #059669;
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .03em;
    display: none;
}

/* Checked state */
.btn-check:checked+.status-card-v2 {
    border-color: #059669;
    background: var(--color-success-50, #f0fdf4);
    box-shadow: 0 8px 28px rgba(5, 150, 105, .22);
}

.btn-check:checked+.status-card-v2 .scv2-check {
    border-color: #059669;
    background: rgba(5, 150, 105, .1);
}

.btn-check:checked+.status-card-v2 .scv2-check i {
    color: #059669;
}

.btn-check:checked+.status-card-v2 .scv2-selected-pill {
    display: inline-flex;
}

/* Disabled state */
.btn-check:disabled+.status-card-v2,
.status-option:disabled+.status-card-v2 {
    opacity: .35;
    pointer-events: none;
    filter: grayscale(60%);
}

/* Dept card (step 1) */
.dept-card {
    cursor: pointer;
    background: var(--theme-bg-card, #fff);
    border: 2px solid var(--theme-border, #e5e7eb);
    border-radius: 16px;
    padding: 1rem !important;
    transition: all .25s cubic-bezier(.4, 0, .2, 1);
    display: block !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
}

.dept-card:hover {
    border-color: var(--color-success-300, #6ee7b7);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(5, 150, 105, .15);
}

.btn-check:checked+.dept-card {
    border-color: #059669;
    background: var(--color-success-50, #ecfdf5);
    box-shadow: 0 8px 28px rgba(5, 150, 105, .2);
}

.dark-theme .btn-check:checked+.dept-card {
    background: rgba(5, 150, 105, .12);
}

.dept-card-title {
    font-size: .88rem;
    color: var(--theme-text-main);
}

.dept-card-badge {
    font-size: .68rem;
    font-weight: 700;
    background: var(--color-success-50, #ecfdf5);
    color: var(--color-success, #059669);
    border: 1px solid var(--color-success-100, #d1fae5);
    padding: .15rem .55rem;
    border-radius: 20px;
}

.btn-check:checked+.dept-card .dept-check-indicator {
    background: #059669;
    border-color: #059669;
}

.btn-check:checked+.dept-card .dept-check-indicator i {
    display: block !important;
}

/* ── Section divider inside form card ──────────────────────── */
.step-section-divider {
    border: none;
    border-top: 1px solid var(--theme-border, #e5e7eb);
    margin: 1.75rem 0;
}

.step-section-label {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--theme-text-sub);
    margin-bottom: 1rem;
}

.step-section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--theme-border, #e5e7eb);
}

/* ── Registration process timeline ─────────────────────────── */
.reg-timeline {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.reg-timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: .85rem 1rem;
    border-radius: 12px;
    position: relative;
    transition: background .2s;
}

.reg-timeline-item:hover {
    background: var(--theme-bg-elevated, #f9fafb);
}

.reg-timeline-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-success, #059669);
    flex-shrink: 0;
    margin-top: .4rem;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, .2);
}

.reg-timeline-dot.done {
    background: #059669;
}

.reg-timeline-dot.pending {
    background: var(--theme-border, #d1d5db);
    box-shadow: none;
}

.reg-timeline-content {
    flex: 1;
}

.reg-timeline-title {
    font-size: .82rem;
    font-weight: 700;
    color: var(--theme-text-main);
}

.reg-timeline-desc {
    font-size: .75rem;
    color: var(--theme-text-sub);
    line-height: 1.45;
}

/* ── Admission type pills ───────────────────────────────────── */
.admission-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .45rem 1rem;
    border-radius: 30px;
    font-size: .78rem;
    font-weight: 700;
    cursor: pointer;
    border: 2px solid var(--theme-border, #e5e7eb);
    background: var(--theme-bg-card, #fff);
    color: var(--theme-text-main);
    transition: all .22s;
}

.admission-pill:hover {
    border-color: var(--color-success-200, #a7f3d0);
    background: var(--color-success-50, #ecfdf5);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
    .reg-hero-banner {
        padding: 1.75rem 1.5rem 1.5rem;
        border-radius: 18px;
    }

    .hero-logo-circle {
        width: 48px;
        height: 48px;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: .85rem;
    }

    .needs-card {
        margin-top: .5rem;
    }

    .stepper-shell {
        top: 0;
        border-radius: 0 0 16px 16px;
        border-top: none;
        padding: 1rem 1.1rem;
    }

    .step-counter {
        width: 40px;
        height: 40px;
        font-size: .8rem;
    }

    .step-name {
        font-size: .7rem;
    }

    .step-meta {
        display: none;
    }

    .main-registration-card {
        border-radius: 16px;
    }

    .step-header-band {
        padding: .9rem 1rem;
    }

    .reg-info-strip {
        grid-template-columns: 1fr 1fr;
    }

    .help-panel {
        width: 260px;
    }

    .stepper-wrapper::before,
    .stepper-connector-fill {
        top: 20px;
    }
}

@media (max-width: 480px) {
    .reg-hero-banner {
        padding: 1.4rem 1.1rem 1.2rem;
    }

    .hero-stat-pill {
        font-size: .7rem;
        padding: .25rem .65rem;
    }

    .reg-info-strip {
        grid-template-columns: 1fr;
    }

    .stepper-shell {
        padding: .8rem;
    }

    .step-num-badge {
        width: 36px;
        height: 36px;
        font-size: .88rem;
        border-radius: 11px;
    }

    .help-fab {
        bottom: 1rem;
        right: 1rem;
    }

    .help-fab-btn {
        width: 46px;
        height: 46px;
        font-size: 1rem;
    }
}

/* ── Dark theme overrides ───────────────────────────────────── */
.dark-theme .preloader-logo {
    filter: brightness(0) invert(1) drop-shadow(0 4px 16px rgba(52, 211, 153, .3));
}

.dark-theme .reg-hero-banner {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 45%, #065f46 100%);
}

.dark-theme .needs-card {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(255, 255, 255, .15);
}

.dark-theme .dept-card {
    background: var(--theme-bg-card);
    border-color: var(--theme-border);
}

.dark-theme .privacy-box {
    background: var(--theme-bg-card);
}

.dark-theme .trust-bar-item {
    color: #34d399;
}

.dark-theme .reg-info-strip-item {
    background: var(--theme-bg-card);
}

.dark-theme .privacy-box:has(#data-privacy-toggle:checked) {
    border-color: #34d399;
}

/* ============================================================
   Professional Refinement Layer (Token-first)
   ============================================================ */

.pre-reg-page {
    --pr-emerald-50: #ecfdf5;
    --pr-emerald-100: #d1fae5;
    --pr-emerald-200: #a7f3d0;
    --pr-emerald-300: #6ee7b7;
    --pr-emerald-400: #34d399;
    --pr-emerald-500: #10b981;
    --pr-emerald-600: #059669;
    --pr-emerald-700: #047857;
    --pr-emerald-800: #065f46;
    --pr-emerald-900: #064e3b;
    --pr-emerald-rgb: 16, 185, 129;
    --color-primary: var(--pr-emerald-600);
    --color-primary-rgb: var(--pr-emerald-rgb);
}

.preloader-overlay {
    z-index: 9999;
}

#preloader {
    background: var(--theme-bg-page);
}

.bg-success-status {
    background-color: var(--pr-emerald-600);
    color: white !important;
}

.final-step-shield {
    width: 36px;
    height: 36px;
    font-size: .85rem;
    background: var(--pr-emerald-600);
    box-shadow: 0 3px 10px rgba(16, 185, 129, .35);
}

/* Stronger professional branding using Notre Dame emerald */
.reg-hero-banner {
    background: linear-gradient(135deg, var(--pr-emerald-900) 0%, var(--pr-emerald-800) 45%, var(--pr-emerald-600) 100%);
    box-shadow: 0 16px 44px rgba(6, 95, 70, .35);
}

.text-white-accent {
    color: #a7f3d0 !important;
}

.step-progress-label {
    color: var(--pr-emerald-200) !important;
}

.stepper-shell.is-scrolled {
    border-color: var(--pr-emerald-300);
}

.stepper-connector-fill,
.overall-progress .progress-bar,
.stepper-item.active .step-counter,
.step-num-badge,
.btn-step-next,
.btn-submit {
    background: linear-gradient(135deg, var(--pr-emerald-700), var(--pr-emerald-500));
}

.stepper-item.active .step-counter,
.step-num-badge,
.btn-step-next,
.btn-submit {
    box-shadow: 0 8px 22px rgba(16, 185, 129, .28);
}

.stepper-item.completed .step-counter,
.sum-check,
.step3-reminder,
.privacy-box:has(#data-privacy-toggle:checked) {
    border-color: var(--pr-emerald-200);
}

.stepper-item.completed .step-counter,
.sum-check,
.step3-reminder,
.privacy-box:has(#data-privacy-toggle:checked),
.step-header-band {
    background: var(--pr-emerald-50);
}

.stepper-item.completed .step-counter,
.stepper-item.completed .step-name,
.sum-check,
.dpa-icon,
.dpa-link {
    color: var(--pr-emerald-700);
}

.step-header-band {
    border-color: var(--pr-emerald-100);
}

.btn-step-next:hover,
.btn-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, var(--pr-emerald-800), var(--pr-emerald-600));
}

/* Informative process panel */
.next-steps-panel {
    background: var(--theme-bg-card);
    border: 1px solid var(--theme-border);
    border-radius: var(--radius-xl);
    padding: 1rem 1.25rem;
}

.next-steps-title {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .86rem;
    font-weight: 700;
    color: var(--theme-text-main);
    margin-bottom: .8rem;
}

.next-steps-title i {
    color: var(--pr-emerald-700);
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: .8rem;
}

.next-step-item {
    display: flex;
    align-items: flex-start;
    gap: .65rem;
    padding: .75rem .8rem;
    border: 1px solid var(--theme-border);
    border-radius: var(--radius-lg);
    background: var(--theme-bg-elevated);
}

.next-step-badge {
    width: 24px;
    height: 24px;
    border-radius: var(--radius-full);
    background: var(--pr-emerald-700);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .72rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: .1rem;
}

.next-step-heading {
    font-size: .78rem;
    color: var(--theme-text-main);
    font-weight: 700;
    margin-bottom: .1rem;
}

.next-step-text {
    font-size: .74rem;
    color: var(--theme-text-sub);
    line-height: 1.4;
}

@media (max-width: 992px) {
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
}

.dark-theme .reg-hero-banner {
    background: linear-gradient(135deg, #022c22 0%, #064e3b 40%, #065f46 100%);
}

.dark-theme .step-header-band,
.dark-theme .sum-check,
.dark-theme .step3-reminder,
.dark-theme .privacy-box:has(#data-privacy-toggle:checked),
.dark-theme .stepper-item.completed .step-counter {
    background: rgba(16, 185, 129, .14);
    border-color: rgba(16, 185, 129, .34);
    color: #a7f3d0;
}

/* Grouping & Form-process layer */
.step-container {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.step-container .info-section,
.step-container .form-section-card,
.step-container .payment-banner,
.step-container .pay-summary-card {
    background: var(--theme-bg-card) !important;
    border: 1px solid var(--theme-border) !important;
    border-radius: 18px !important;
    box-shadow: 0 8px 26px rgba(2, 6, 23, .08) !important;
}

.step-container .info-section-header {
    border-bottom: 1px solid var(--theme-border);
    padding-bottom: .75rem;
    margin-bottom: 1rem !important;
}

.step-container .section-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 12px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(var(--pr-emerald-rgb), .16) !important;
    color: var(--pr-emerald-700) !important;
}

.step-container .form-control,
.step-container .form-select,
.step-container .input-group-text {
    background: var(--theme-bg-elevated) !important;
    color: var(--theme-text-main) !important;
    border-color: transparent !important;
    border-radius: 10px !important;
    color-scheme: light !important;
}

.step-container .form-select option,
.step-container .form-select option:focus,
.step-container .form-select option:checked {
    background: var(--theme-bg-elevated) !important;
    color: var(--theme-text-main) !important;
}

.choices__inner,
.choices__list--dropdown,
.step-container .choices__inner,
.step-container .choices__list--dropdown {
    background: var(--theme-bg-elevated) !important;
    color: var(--theme-text-main) !important;
    border-color: var(--theme-border) !important;
    box-sizing: border-box;
}

.choices__list--dropdown .choices__item,
.step-container .choices__list--dropdown .choices__item {
    color: var(--theme-text-main) !important;
    background: var(--theme-bg-elevated) !important;
}

.choices[data-type*=select-one] .choices__inner {
    width: 100% !important;
    min-height: 48px;
    border-radius: 12px;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted,
.step-container .choices__list--dropdown .choices__item--selectable.is-highlighted,
.choices__list--dropdown .choices__item--selectable.is-highlighted::after,
.step-container .choices__list--dropdown .choices__item--selectable.is-highlighted::after {
    background: rgba(var(--pr-emerald-rgb), .2) !important;
    color: var(--pr-emerald-900) !important;
}

.step-container .choices__list--dropdown {
    color-scheme: light !important;
    border-radius: 14px !important;
    box-shadow: 0 18px 40px rgba(2, 6, 23, .12) !important;
}

.step-container .choices__list--dropdown .choices__item--selectable {
    border-bottom: 1px solid var(--theme-border) !important;
    padding: 12px 14px !important;
}

.step-container .choices__list--dropdown .choices__item--selectable:last-child {
    border-bottom: none !important;
}

.step-container .form-control:focus,
.step-container .form-select:focus {
    box-shadow: 0 0 0 3px rgba(var(--pr-emerald-rgb), .18) !important;
}

.step-container .text-success,
.step-container .badge.bg-success,
.step-container .spinner-border.text-success {
    color: var(--pr-emerald-700) !important;
}

.step-container .badge.bg-success {
    background: var(--pr-emerald-700) !important;
}

/* Step 3 process section */
.payment-banner-inner {
    border-radius: 16px;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, var(--pr-emerald-50), var(--theme-bg-card));
    border: 1px solid var(--pr-emerald-100);
}

.payment-banner-title {
    font-size: .9rem;
    font-weight: 700;
    color: var(--pr-emerald-700);
    margin-bottom: .35rem;
}

.payment-banner-text {
    font-size: .8rem;
    color: var(--theme-text-sub);
}

.howto-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: 1rem;
}

.howto-step {
    background: linear-gradient(135deg, var(--pr-emerald-800), var(--pr-emerald-600)) !important;
    border: 1px solid var(--theme-border);
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.howto-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--theme-shadow-lg);
    border-color: var(--color-primary-200);
}

.howto-step-num {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(var(--color-primary-rgb), 0.3);
}

.howto-step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 6px rgba(var(--color-primary-rgb), 0.1));
}

.howto-step-title {
    font-size: 1rem;
    font-weight: 700;
}

.select option {
    background: var(--theme-bg-elevated) !important;
    color: var(--theme-text-main) !important;
}

.howto-step-text {
    font-size: 0.8rem;
    color: var(--theme-text-sub);
    line-height: 1.5;
}

.howto-divider {
    display: flex;
    align-items: center;
    opacity: 0.3;
    color: var(--color-primary);
    font-size: 1.2rem;
}

.pay-summary-card {
    background: linear-gradient(135deg, var(--pr-emerald-800), var(--pr-emerald-600)) !important;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(6, 95, 70, .35) !important;
}

.pay-summary-watermark {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    color: rgba(255, 255, 255, .07);
    transform: rotate(-15deg);
    pointer-events: none;
}

.summary-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, .14);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    backdrop-filter: blur(4px);
}

.pay-summary-title {
    letter-spacing: -.01em;
}

.pay-summary-subtitle {
    font-size: .85rem;
    opacity: .8;
}

.amount-display {
    font-size: 2.1rem;
    line-height: 1;
}

.pay-summary-badge {
    background: rgba(255, 255, 255, .19);
    font-weight: 600;
    font-size: .72rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .howto-grid {
        grid-template-columns: 1fr;
    }

    .howto-divider {
        display: none !important;
    }
}