/* ============================================================
   student.css — Student Registration Page
   ============================================================ */

:root {
    --s-gold: #c8862a;
    --s-gold-deep: #a06a1a;
    --s-gold-light: rgba(200, 134, 42, 0.12);
    --s-gold-glow: rgba(200, 134, 42, 0.22);
    --s-amber: #f59e0b;
    --s-rust: #b84a2a;
    --s-green: #16a34a;
    --s-border: #e4d5b8;
    --s-border-light: #f0e8d5;
}

/* ─── GLOBAL RESETS FOR THIS PAGE ─── */
fieldset {
    border: none;
    padding: 0;
    margin: 0;
    min-width: 0;
}

legend {
    padding: 0;
    float: left;
    width: 100%;
}

legend+* {
    clear: both;
}

.s-fieldset-inline {
    border: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.s-fieldset-inline>legend {
    margin-bottom: 10px;
}

address {
    font-style: normal;
}


/* ─────────────────────────────────────────
   PROGRESS BAR
───────────────────────────────────────── */
.reg-progress-bar {
    height: 4px;
    background: transparent;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    z-index: 99;
}

.reg-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--s-gold), var(--s-amber));
    border-radius: 0 2px 2px 0;
    transition: width 0.25s ease;
    width: 0%;
}


/* ─────────────────────────────────────────
   HERO
───────────────────────────────────────── */
.sreg-hero {
    background: var(--ink);
    padding: 140px 5% 88px;
    position: relative;
    overflow: hidden;
}

/* Warm radial glow */
.sreg-hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -120px;
    width: 700px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(200, 134, 42, 0.15) 0%, transparent 68%);
    pointer-events: none;
}

/* Watermark text */
.sreg-hero::after {
    content: 'LEARN';
    position: absolute;
    bottom: -60px;
    left: -16px;
    font-family: var(--serif);
    font-size: 200px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    line-height: 1;
}

.sreg-hero-inner {
    max-width: 780px;
    position: relative;
    z-index: 1;
}

.sreg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(200, 134, 42, 0.15);
    border: 1px solid rgba(200, 134, 42, 0.4);
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: #f0c060;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 24px;
    animation: sfadeUp 0.5s ease both;
}

.sreg-hero-title {
    font-family: var(--serif);
    font-size: clamp(38px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: var(--paper);
    margin-bottom: 22px;
    animation: sfadeUp 0.5s 0.1s ease both;
}

.s-accent {
    color: #f0c060;
    display: inline-block;
}

.sreg-hero-desc {
    font-size: 16px;
    color: rgba(250, 248, 243, 0.58);
    line-height: 1.8;
    max-width: 540px;
    animation: sfadeUp 0.5s 0.2s ease both;
}

/* HERO META WRAPPER */
.sreg-hero-meta {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

/* STATS ROW */
.sreg-hero-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    align-items: center;
}

/* INDIVIDUAL STAT */
.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* ICON STYLE */
.stat-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(26, 107, 114, 0.18);
    border: 1px solid rgba(26, 107, 114, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

/* TEXT */
.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
}

.stat-lbl {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

/* BREADCRUMB */
.sreg-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.sreg-breadcrumb a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.6);
    transition: 0.2s;
}

.sreg-breadcrumb .current {
    color: #d6fffa;
    font-weight: 500;
}

.sreg-breadcrumb .sep {
    opacity: 0.4;
}

/* ─────────────────────────────────────────
   PAGE LAYOUT
───────────────────────────────────────── */
.sreg-body {
    background: var(--cream);
    padding: 72px 5%;
}

.sreg-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}


/* ─────────────────────────────────────────
   FORM CARD + REVEAL
───────────────────────────────────────── */
.s-form-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow);
}

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ─────────────────────────────────────────
   ALERT BANNER
───────────────────────────────────────── */
.s-alert {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--radius-lg);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 32px;
}

.s-alert-info {
    background: var(--s-gold-light);
    border: 1px solid rgba(200, 134, 42, 0.35);
    color: var(--s-gold-deep);
}

.s-alert-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.s-alert-content {
    flex: 1;
}

.s-alert-content strong {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--ink);
}

.s-alert-content ul {
    margin: 0;
    padding-left: 16px;
}

.s-alert-content li {
    margin-bottom: 4px;
}

.s-alert-content a {
    color: var(--s-gold);
    font-weight: 600;
}

/* Server error banner */
.s-server-error {
    display: none;
    background: rgba(184, 74, 42, 0.08);
    border: 1px solid rgba(184, 74, 42, 0.3);
    border-radius: var(--radius-lg);
    color: var(--s-rust);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    padding: 14px 18px;
    margin-bottom: 24px;
}

.s-server-error.visible {
    display: block;
}


/* ─────────────────────────────────────────
   FORM SECTIONS
───────────────────────────────────────── */
.s-section {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.s-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.s-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 700;
    color: var(--ink);
}

.s-sec-num {
    font-family: var(--mono);
    font-size: 12px;
    font-weight: 600;
    color: var(--s-gold);
    background: var(--s-gold-light);
    border: 1px solid rgba(200, 134, 42, 0.28);
    border-radius: 6px;
    padding: 2px 8px;
    letter-spacing: 0.5px;
}

.s-sec-icon {
    font-size: 18px;
}


/* ─────────────────────────────────────────
   FORM GROUPS
───────────────────────────────────────── */
.s-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.s-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.s-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.6px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.s-req {
    color: var(--s-rust);
    margin-left: 2px;
}

.s-opt {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 11px;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.7;
}


/* ─────────────────────────────────────────
   INPUTS / SELECTS / TEXTAREA
───────────────────────────────────────── */
.s-input,
.s-select,
.s-textarea {
    width: 100%;
    padding: 11px 14px;
    font-family: var(--sans, 'DM Sans', sans-serif);
    font-size: 14px;
    color: var(--ink);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}

.s-input::placeholder,
.s-textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.s-input:hover,
.s-select:hover,
.s-textarea:hover {
    border-color: rgba(200, 134, 42, 0.45);
    background: var(--paper);
}

.s-input:focus,
.s-select:focus,
.s-textarea:focus {
    border-color: var(--s-gold);
    box-shadow: 0 0 0 3px var(--s-gold-glow);
    background: var(--paper);
}

.s-input.error,
.s-select.error,
.s-textarea.error {
    border-color: var(--s-rust);
    box-shadow: 0 0 0 3px rgba(184, 74, 42, 0.12);
}

.s-input.valid,
.s-select.valid {
    border-color: var(--s-green);
}

.s-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.6;
}

/* Select arrow */
.s-select-wrap {
    position: relative;
}

.s-select-wrap::after {
    content: '▾';
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: var(--text-muted);
    pointer-events: none;
}

.s-select {
    padding-right: 36px;
    cursor: pointer;
}

/* Phone prefix */
.s-phone-row {
    display: flex;
    align-items: stretch;
}

.s-phone-prefix {
    padding: 11px 12px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.s-phone-row .s-input {
    border-radius: 0 var(--radius) var(--radius) 0;
}

.s-hint {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    opacity: 0.85;
}

/* Error messages */
.s-error-msg {
    display: none;
    font-size: 12px;
    color: var(--s-rust);
    margin-top: 3px;
    line-height: 1.4;
}

.s-error-msg.visible {
    display: block;
}

/* Error highlight states */
.s-error-grid {
    outline: 2px solid var(--s-rust);
    outline-offset: 4px;
    border-radius: var(--radius-lg);
}

.s-error-zone {
    border-color: var(--s-rust) !important;
    background: rgba(184, 74, 42, 0.04) !important;
}


/* ─────────────────────────────────────────
   RADIO PILLS
───────────────────────────────────────── */
.s-pill-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.s-pill input[type="radio"],
.s-pill input[type="checkbox"] {
    display: none;
}

.s-pill label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    border: 1.5px solid var(--border);
    border-radius: 99px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    cursor: pointer;
    transition: all 0.2s;
    background: var(--cream);
    user-select: none;
}

.s-pill label:hover {
    border-color: var(--s-gold);
    background: var(--paper);
}

.s-pill input:checked+label {
    background: var(--s-gold);
    border-color: var(--s-gold);
    color: #fff;
}

/* ─────────────────────────────────────────
   CLASS SELECTION CARDS
───────────────────────────────────────── */
.class-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 40px;
}

.class-group-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 8px;
    padding-left: 2px;
}

.class-card-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.class-card-row--multi {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.class-card {
    flex: 1;
    min-width: 130px;
}

.class-card input[type="radio"] {
    display: none;
}

.class-card label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 16px 12px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    background: var(--cream);
    cursor: pointer;
    transition: all 0.22s;
    text-align: center;
    height: 100%;
    box-sizing: border-box;
    position: relative;
}

.class-card label:hover {
    border-color: var(--s-gold);
    background: var(--paper);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(200, 134, 42, 0.12);
}

.class-card input:checked+label {
    border-color: var(--s-gold);
    background: var(--paper);
    box-shadow: 0 0 0 3px var(--s-gold-glow), 0 4px 12px rgba(200, 134, 42, 0.15);
}

.class-card input:checked+label::after {
    content: '✓';
    position: absolute;
    top: 7px;
    right: 9px;
    font-size: 10px;
    font-weight: 800;
    color: var(--s-gold);
}

.cc-icon {
    font-size: 22px;
}

.cc-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.2;
}

.cc-badge {
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 700;
    background: #e8f4e8;
    color: var(--s-green);
    border: 1px solid rgba(22, 163, 74, 0.25);
    border-radius: 99px;
    padding: 2px 10px;
}

.cc-badge-mid {
    background: #fff3e0;
    color: #c06010;
    border-color: rgba(192, 96, 16, 0.25);
}

.cc-badge-high {
    background: #fdecea;
    color: #b83030;
    border-color: rgba(184, 48, 48, 0.2);
}

/* ─────────────────────────────────────────
   FILE UPLOAD
───────────────────────────────────────── */
.s-upload-zone {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 20px;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.s-upload-zone:hover,
.s-upload-zone.drag-over {
    border-color: var(--s-gold);
    background: rgba(200, 134, 42, 0.04);
}

.s-upload-zone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.s-upload-icon {
    font-size: 28px;
}

.s-upload-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
}

.s-upload-sub {
    font-size: 12px;
    color: var(--text-muted);
}

.s-upload-chosen {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--s-gold);
}

.s-upload-chosen.visible {
    display: flex;
}


/* ─────────────────────────────────────────
   PAYMENT BLOCK
───────────────────────────────────────── */
.s-payment-block {
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
}

/* Empty / no-class-selected state */
.s-payment-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    text-align: center;
    gap: 10px;
}

.s-payment-empty-icon {
    font-size: 40px;
    margin-bottom: 4px;
    opacity: 0.5;
}

.s-payment-empty-text {
    font-family: var(--serif);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-muted);
    margin: 0;
}

.s-payment-empty-sub {
    font-size: 13px;
    color: var(--text-muted);
    opacity: 0.65;
    max-width: 280px;
    margin: 0;
    line-height: 1.6;
}

/* Payment details (when class is selected) */
.s-payment-details {
    background: var(--cream);
}

.s-payment-inner {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    align-items: start;
    padding: 24px;
}

.s-qr-col {
    text-align: center;
}

.s-qr-img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--border);
    transition: opacity 0.3s;
}

.s-qr-label {
    margin-top: 8px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.s-fee-tier {
    margin-top: 10px;
    font-size: 11px;
    font-weight: 700;
    color: var(--s-gold-deep);
    background: var(--s-gold-light);
    border: 1px solid rgba(200, 134, 42, 0.3);
    border-radius: 99px;
    padding: 3px 12px;
    display: inline-block;
}

.s-payment-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}

.s-fee-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 14px;
}

.s-fee-cur {
    font-family: var(--mono);
    font-size: 22px;
    color: var(--s-gold);
    font-weight: 600;
}

.s-fee-amt {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 900;
    color: var(--s-gold);
    line-height: 1;
    transition: font-size 0.3s ease, color 0.3s ease;
}

.s-payment-note {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.s-payment-methods {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 8px;
}

.s-payment-info a {
    color: var(--s-gold);
    font-weight: 600;
}


/* ─────────────────────────────────────────
   SUBMIT AREA + BUTTON
───────────────────────────────────────── */
.s-submit-area {
    padding-top: 32px;
    border-top: 1px solid var(--border);
    margin-top: 8px;
}

.s-submit-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    text-align: center;
}

.s-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--sans, 'DM Sans', sans-serif);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
    width: 100%;
    padding: 14px 32px;
    font-size: 16px;
}

.s-btn-primary {
    background: linear-gradient(135deg, var(--s-gold), var(--s-amber));
    color: #fff;
    box-shadow: 0 4px 20px rgba(200, 134, 42, 0.28);
}

.s-btn-primary:hover {
    background: linear-gradient(135deg, var(--s-gold-deep), #d48a0c);
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(200, 134, 42, 0.35);
}

.s-btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.s-btn-spinner {
    display: inline-flex;
    align-items: center;
}

.s-btn-spinner svg {
    animation: s-spin 0.8s linear infinite;
}

@keyframes s-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ─────────────────────────────────────────
   SUCCESS STATE
───────────────────────────────────────── */
.s-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 64px 40px;
    gap: 16px;
}

.s-success.visible {
    display: flex;
}

.s-success-ring {
    width: 88px;
    height: 88px;
    background: var(--s-gold-light);
    border: 2px solid var(--s-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 38px;
    margin-bottom: 8px;
}

.s-success-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 900;
    color: var(--ink);
    margin: 0;
}

.s-success-desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 420px;
    line-height: 1.75;
    margin: 0;
}


/* ─────────────────────────────────────────
   SIDEBAR
───────────────────────────────────────── */
.sreg-sidebar {
    position: sticky;
    top: 92px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s-sidebar-card {
    background: var(--paper);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow);
}

.s-card-title {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Summary rows */
.s-summ-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
}

.s-summ-row:last-child {
    border-bottom: none;
}

.s-sk {
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
}

.s-sv {
    font-weight: 600;
    color: var(--ink);
    text-align: right;
    word-break: break-word;
}

.s-sv.empty {
    color: var(--border);
    font-style: italic;
    font-weight: 400;
}

/* Fee sidebar card */
.s-fee-card {
    background: linear-gradient(135deg, var(--s-gold), var(--s-amber) 120%);
    border-color: var(--s-gold);
}

.s-fee-card .s-card-title {
    color: #fff;
}

.s-fee-big {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 6px 0 8px;
}

.s-fee-big-cur {
    font-family: var(--mono);
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
}

.s-fee-big-amt {
    font-family: var(--serif);
    font-size: 52px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    transition: all 0.35s cubic-bezier(.25, .8, .25, 1);
}

.s-fee-card-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin: 0;
}

/* Perks list */
.s-perks-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.s-perk {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

.s-perk-dot {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    background: var(--s-gold-light);
    border: 1px solid rgba(200, 134, 42, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--s-gold);
    font-weight: 800;
    margin-top: 1px;
}

/* Help card */
.s-help-card {
    background: var(--ink);
    border-color: var(--ink);
}

.s-help-card .s-card-title {
    color: #f0c060;
}

.s-help-card p {
    font-size: 13px;
    color: rgba(250, 248, 243, 0.5);
    line-height: 1.6;
    margin-bottom: 16px;
}

.s-help-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-style: normal;
}

.s-help-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    color: rgba(250, 248, 243, 0.65);
    transition: color 0.2s;
}

.s-help-link:hover {
    color: #f0c060;
}

.s-help-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Screen-reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
    .sreg-layout {
        grid-template-columns: 1fr;
    }

    .sreg-sidebar {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .sreg-hero {
        padding: 110px 4% 60px;
    }

    .sreg-body {
        padding: 48px 4%;
    }

    .s-form-card {
        padding: 28px 20px;
    }

    .sreg-sidebar {
        grid-template-columns: 1fr;
    }

    .s-row-2 {
        grid-template-columns: 1fr;
    }

    .s-payment-inner {
        grid-template-columns: 1fr;
    }

    .s-qr-img {
        width: 130px;
        height: 130px;
    }

    .sreg-hero-stats {
        gap: 16px;
    }

    .class-card-row--multi {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .class-card-row--multi {
        grid-template-columns: 1fr 1fr;
    }
}