@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Plus Jakarta Sans:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --violet:        #7C3AED;
    --violet-d:      #5B21B6;
    --violet-l:      #C4B5FD;
    --cyan:          #00D4FF;
    --cyan-d:        #0891B2;
    --pink:          #F472B6;
    --pink-d:        #DB2777;
    --green:         #34D399;
    --green-d:       #059669;
    --warning:       #FBBF24;
    --danger:        #F87171;
    --danger-d:      #DC2626;
    --dark:          #06010F;
    --dark-2:        #0D0520;
    --dark-3:        #130830;
    --dark-card:     rgba(13,5,32,.90);
    --text:          #F1F0FF;
    --muted:         #C2BEDD;
    --muted-2:       #8B84B4;
    --border:        rgba(255,255,255,.11);
    --border-v:      rgba(124,58,237,.28);
    --font:          'Manrope', 'Plus Jakarta Sans', sans-serif;
    --radius:        12px;
    --radius-lg:     18px;
    --radius-xl:     28px;
    --transition:    all .28s cubic-bezier(.4,0,.2,1);
    --gv:            0 0 40px rgba(124,58,237,.45);
    --gc:            0 0 40px rgba(0,212,255,.35);
    --gp:            0 0 40px rgba(244,114,182,.35);
}

html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--dark);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ─── BLOBS ─── */
.blob { position: fixed; border-radius: 50%; filter: blur(90px); opacity: .13; pointer-events: none; z-index: 0; animation: blobMove 14s ease-in-out infinite alternate; }
.blob-1 { width: 560px; height: 560px; background: var(--violet); top: -180px; left: -120px; animation-delay: 0s; }
.blob-2 { width: 440px; height: 440px; background: var(--cyan); bottom: -120px; right: -100px; animation-delay: -5s; }
.blob-3 { width: 320px; height: 320px; background: var(--pink); top: 42%; left: 55%; animation-delay: -10s; }
@keyframes blobMove { 0% { transform: translate(0,0) scale(1); } 100% { transform: translate(44px,34px) scale(1.12); } }

/* ─── PAGE LAYOUT ─── */
.reg-page {
    min-height: 100vh;
    padding: 100px 16px 72px;
    position: relative; overflow: hidden;
    background:
        radial-gradient(ellipse at 15% 30%,  rgba(124,58,237,.20) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 70%,  rgba(0,212,255,.13)  0%, transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(244,114,182,.10) 0%, transparent 50%),
        linear-gradient(170deg, #06010F 0%, #0D0520 50%, #060B18 100%);
}

/* ─── HEADER BRANDING ─── */
.reg-header {
    text-align: center; margin-bottom: 44px;
    position: relative; z-index: 1;
}
.reg-header .logo-wrap {
    display: inline-flex; align-items: center; justify-content: center;
    width: 76px; height: 76px;
    background: linear-gradient(135deg, var(--violet), var(--cyan));
    border-radius: 22px; margin-bottom: 18px;
    box-shadow: var(--gv), 0 0 0 1px rgba(124,58,237,.35);
}
.reg-header .logo-wrap i { font-size: 34px; color: #fff; }
.reg-header h1 {
    font-size: clamp(22px, 4vw, 38px);
    font-weight: 800; color: #fff;
    letter-spacing: -.5px; line-height: 1.15;
}
.reg-header h1 span {
    background: linear-gradient(90deg, var(--violet-l), var(--cyan), var(--pink), var(--violet-l));
    background-size: 300%;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    animation: shimmer 3.5s linear infinite;
}
@keyframes shimmer { 0%{background-position:0% center} 100%{background-position:300% center} }
.reg-header p { color: var(--muted); font-size: 16px; margin-top: 10px; font-weight: 400; }

/* ─── FORM CARD ─── */
.reg-card {
    background: rgba(13,5,32,.88);
    border: 1px solid rgba(124,58,237,.22);
    border-radius: var(--radius-xl);
    box-shadow: var(--gv), inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    overflow: hidden;
    max-width: 880px; margin: 0 auto;
    position: relative; z-index: 1;
}

/* ─── STEP INDICATOR ─── */
.steps-bar {
    background: rgba(255,255,255,.025);
    padding: 26px 36px 0;
    border-bottom: 1px solid rgba(124,58,237,.18);
}
.steps-list { display: flex; align-items: flex-start; gap: 0; }
.step-item  { flex: 1; display: flex; flex-direction: column; align-items: center; position: relative; }
.step-item:not(:last-child)::after {
    content: ''; position: absolute; top: 20px; left: 60%; width: 80%; height: 2px;
    background: rgba(255,255,255,.10); z-index: 0; transition: var(--transition);
}
.step-item.done:not(:last-child)::after { background: var(--violet); box-shadow: 0 0 8px rgba(124,58,237,.5); }
.step-circle {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.08);
    border: 1.5px solid rgba(255,255,255,.14);
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 700; color: var(--muted-2);
    position: relative; z-index: 1; transition: var(--transition);
}
.step-item.active .step-circle {
    background: linear-gradient(135deg, var(--violet), var(--violet-d));
    border-color: rgba(196,181,253,.4);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(124,58,237,.20), var(--gv);
    transform: scale(1.1);
}
.step-item.done .step-circle {
    background: linear-gradient(135deg, var(--green), var(--green-d));
    border-color: rgba(52,211,153,.4);
    color: #fff;
    box-shadow: 0 0 16px rgba(52,211,153,.35);
}
.step-label {
    font-size: 14px; font-weight: 600; color: var(--muted-2);
    margin-top: 9px; text-align: center; white-space: nowrap; transition: var(--transition);
}
.step-item.active .step-label { color: var(--violet-l); }
.step-item.done .step-label  { color: var(--green); }
.steps-progress {
    height: 3px;
    background: linear-gradient(90deg, var(--violet), var(--cyan));
    margin-top: 22px; transition: width .45s ease; border-radius: 2px;
    box-shadow: 0 0 10px rgba(124,58,237,.5);
}

/* ─── FORM BODY ─── */
.reg-form-body { padding: 36px 44px; }
@media (max-width: 576px) { .reg-form-body { padding: 24px 20px; } .steps-bar { padding: 20px 16px 0; } }

/* ─── SECTION TITLES ─── */
.section-title {
    font-size: 14px; font-weight: 700; color: var(--muted-2);
    text-transform: uppercase; letter-spacing: 1px; margin-bottom: 22px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    display: flex; align-items: center; gap: 8px;
}
.section-title i { color: var(--violet-l); font-size: 15px; }
.step-heading    { font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.step-subheading { font-size: 15px; color: var(--muted); margin-bottom: 30px; }

/* ─── FORM FIELDS ─── */
.form-step { display: none; animation: fadeSlide .35s ease; }
.form-step.active { display: block; }
@keyframes fadeSlide { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: translateX(0); } }
.form-step.prev-out { animation: fadeSlideOut .3s ease forwards; }
@keyframes fadeSlideOut { from { opacity: 1; transform: translateX(0); } to { opacity: 0; transform: translateX(-20px); } }

.form-label { font-size: 15px; font-weight: 600; color: var(--muted); margin-bottom: 7px; display: block; }
.form-label .req  { color: var(--pink); margin-left: 2px; }
.form-label .hint { font-size: 14px; font-weight: 400; color: var(--muted-2); margin-left: 6px; }

.form-control, .form-select {
    font-family: var(--font); font-size: 15px; font-weight: 500;
    color: var(--text);
    background: rgba(255,255,255,.05);
    border: 1.5px solid var(--border);
    border-radius: var(--radius); padding: 12px 16px;
    transition: var(--transition); width: 100%;
}
.form-control::placeholder { color: rgba(194,190,221,.4); }
.form-control:focus, .form-select:focus {
    border-color: rgba(124,58,237,.65);
    box-shadow: 0 0 0 4px rgba(124,58,237,.14);
    background: rgba(124,58,237,.07);
    outline: none;
    color: var(--text);
}
.form-control.is-invalid, .form-select.is-invalid {
    border-color: rgba(248,113,113,.55);
    background: rgba(248,113,113,.06);
}
.form-control.is-invalid:focus { box-shadow: 0 0 0 4px rgba(248,113,113,.12); }
.form-control.is-valid { border-color: rgba(52,211,153,.5); }

.form-select { -webkit-appearance: none; appearance: none; }
.form-select option { background: #1a0d3a; color: var(--text); }

.input-group .form-control { border-radius: 0 var(--radius) var(--radius) 0; }
.input-group-text {
    background: rgba(255,255,255,.05);
    border: 1.5px solid var(--border); border-right: none;
    border-radius: var(--radius) 0 0 var(--radius);
    color: var(--violet-l); font-size: 15px; padding: 12px 14px;
    transition: var(--transition);
}
.form-control:focus + .input-group-text,
.input-group:focus-within .input-group-text {
    border-color: rgba(124,58,237,.65);
    background: rgba(124,58,237,.08);
}

textarea.form-control { min-height: 100px; resize: vertical; }

.invalid-feedback {
    display: none; font-size: 14px; color: var(--danger);
    font-weight: 500; margin-top: 6px;
    align-items: center; gap: 6px; line-height: 1.4;
}
.invalid-feedback.visible { display: flex !important; }
.invalid-feedback i { flex-shrink: 0; font-size: 13px; }

.char-counter { font-size: 14px; color: var(--muted-2); text-align: right; margin-top: 4px; }
.char-counter.warn { color: var(--warning); }
.char-counter.ok   { color: var(--green); }

.form-text { font-size: 14px; color: var(--muted-2); }

/* ─── CUSTOM RADIO / CHECKBOX ─── */
.custom-check-group { display: flex; flex-wrap: wrap; gap: 10px; }
.custom-check-label {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 18px;
    background: rgba(255,255,255,.05);
    border: 1.5px solid var(--border);
    border-radius: 50px; cursor: pointer;
    font-size: 15px; font-weight: 600; color: var(--muted);
    transition: var(--transition); user-select: none;
}
.custom-check-label:hover { border-color: rgba(124,58,237,.55); color: var(--violet-l); background: rgba(124,58,237,.10); }
.custom-check-label input[type="checkbox"],
.custom-check-label input[type="radio"]  { display: none; }
.custom-check-label:has(input:checked) {
    border-color: rgba(124,58,237,.65);
    background: rgba(124,58,237,.15);
    color: var(--violet-l);
    box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}
.custom-check-label .check-icon {
    width: 18px; height: 18px;
    border: 2px solid rgba(255,255,255,.20);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    transition: var(--transition); flex-shrink: 0;
}
.custom-check-label:has(input[type="radio"]) .check-icon { border-radius: 50%; }
.custom-check-label:has(input:checked) .check-icon {
    background: linear-gradient(135deg, var(--violet), var(--violet-d));
    border-color: var(--violet);
    color: #fff;
    box-shadow: 0 0 10px rgba(124,58,237,.5);
}
.custom-check-label:has(input:checked) .check-icon::after {
    content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; font-size: 10px;
}
.custom-check-label:has(input[type="radio"]:checked) .check-icon::after {
    content: ''; width: 8px; height: 8px;
    background: #fff; border-radius: 50%; display: block; margin: auto;
}

/* Radio Yes/No */
.radio-group { display: flex; gap: 10px; }
.radio-yn { flex: 1; }
.radio-yn label {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px;
    background: rgba(255,255,255,.05);
    border: 1.5px solid var(--border);
    border-radius: var(--radius); cursor: pointer;
    font-size: 15px; font-weight: 600; color: var(--muted);
    transition: var(--transition);
}
.radio-yn label:hover { border-color: rgba(124,58,237,.5); color: var(--violet-l); }
.radio-yn input { display: none; }
.radio-yn:has(input:checked) label                  { border-color: rgba(124,58,237,.6); background: rgba(124,58,237,.12); color: var(--violet-l); }
.radio-yn:has(input[value="1"]:checked) label       { border-color: rgba(52,211,153,.5); background: rgba(52,211,153,.10); color: var(--green); }
.radio-yn:has(input[value="0"]:checked) label       { border-color: rgba(248,113,113,.5); background: rgba(248,113,113,.08); color: var(--danger); }

/* ─── FILE UPLOAD ─── */
.file-upload-zone {
    border: 2px dashed rgba(255,255,255,.14);
    border-radius: var(--radius-lg); padding: 36px 20px;
    text-align: center; cursor: pointer;
    transition: var(--transition);
    background: rgba(255,255,255,.03);
    position: relative;
}
.file-upload-zone:hover, .file-upload-zone.drag-over {
    border-color: rgba(124,58,237,.60);
    background: rgba(124,58,237,.07);
}
.file-upload-zone.border-danger { border-color: rgba(248,113,113,.5) !important; }
.file-upload-zone input[type="file"] { position: absolute; inset: 0; opacity: 0; cursor: pointer; z-index: 2; }
.file-upload-zone .upload-icon {
    width: 54px; height: 54px;
    background: linear-gradient(135deg, rgba(124,58,237,.20), rgba(0,212,255,.12));
    border-radius: 14px; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
    border: 1px solid rgba(124,58,237,.25);
}
.file-upload-zone .upload-icon i { font-size: 22px; color: var(--violet-l); }
.file-upload-zone h6 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.file-upload-zone p  { font-size: 14px; color: var(--muted-2); }
.file-upload-zone .badge-types { display: inline-flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-top: 12px; }
.file-upload-zone .badge-types span {
    font-size: 14px; font-weight: 600; padding: 4px 12px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    color: var(--muted);
}
.file-preview {
    display: none; align-items: center; gap: 12px;
    padding: 12px 16px;
    background: rgba(52,211,153,.08);
    border: 1.5px solid rgba(52,211,153,.30);
    border-radius: var(--radius); margin-top: 10px;
}
.file-preview.show { display: flex; }
.file-preview i { color: var(--green); font-size: 20px; }
.file-preview .file-info { flex: 1; }
.file-preview .file-name { font-size: 15px; font-weight: 600; color: #fff; }
.file-preview .file-size { font-size: 14px; color: var(--muted-2); }
.file-preview .btn-remove { background: none; border: none; color: var(--danger); cursor: pointer; padding: 4px; font-size: 16px; }

/* ─── TOM SELECT dark theme ─── */
.ts-wrapper .ts-control {
    border: 1.5px solid var(--border) !important;
    border-radius: var(--radius) !important;
    padding: 11px 16px !important;
    font-size: 15px !important; font-weight: 500 !important;
    background: rgba(255,255,255,.05) !important;
    color: var(--text) !important;
    box-shadow: none !important;
    font-family: var(--font) !important;
    min-height: 47px;
}
.ts-wrapper.focus .ts-control {
    border-color: rgba(124,58,237,.65) !important;
    box-shadow: 0 0 0 4px rgba(124,58,237,.14) !important;
    background: rgba(124,58,237,.08) !important;
}
.ts-wrapper .ts-dropdown {
    background: #1a0d3a !important;
    border: 1.5px solid rgba(124,58,237,.30) !important;
    border-radius: var(--radius) !important;
    margin-top: 4px !important;
    box-shadow: 0 8px 32px rgba(0,0,0,.50) !important;
    font-family: var(--font) !important;
}
.ts-wrapper .ts-dropdown .option {
    padding: 11px 16px !important;
    font-size: 15px !important; font-weight: 500;
    color: var(--muted) !important;
}
.ts-wrapper .ts-dropdown .option.active,
.ts-wrapper .ts-dropdown .option:hover { background: rgba(124,58,237,.15) !important; color: var(--violet-l) !important; }
.ts-wrapper .ts-dropdown .selected { background: rgba(124,58,237,.25) !important; color: #fff !important; }
.ts-wrapper.is-invalid .ts-control {
    border-color: rgba(248,113,113,.55) !important;
    background: rgba(248,113,113,.06) !important;
}
.ts-wrapper .ts-control .placeholder { color: rgba(194,190,221,.4) !important; }

/* ─── NAVIGATION BUTTONS ─── */
.reg-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 24px 44px;
    border-top: 1px solid rgba(255,255,255,.07);
    background: rgba(255,255,255,.02);
}
@media (max-width: 576px) { .reg-nav { padding: 16px 20px; } }

.btn-nav {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 32px; border-radius: 50px;
    font-size: 15px; font-weight: 700; cursor: pointer;
    transition: var(--transition); border: 1.5px solid transparent;
    font-family: var(--font);
}
.btn-prev {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.14);
    color: var(--muted);
}
.btn-prev:hover { border-color: rgba(124,58,237,.45); color: var(--violet-l); background: rgba(124,58,237,.10); }
.btn-next {
    background: linear-gradient(135deg, var(--violet), var(--pink-d));
    color: #fff; border-color: rgba(255,255,255,.15);
    box-shadow: 0 4px 20px rgba(124,58,237,.45), 0 0 0 1px rgba(196,181,253,.12);
}
.btn-next:hover { box-shadow: 0 8px 32px rgba(124,58,237,.65), var(--gp); transform: translateY(-2px); color: #fff; }
.btn-submit {
    background: linear-gradient(135deg, var(--green), var(--green-d));
    color: #fff; border-color: rgba(52,211,153,.25);
    box-shadow: 0 4px 20px rgba(52,211,153,.35);
}
.btn-submit:hover { box-shadow: 0 8px 30px rgba(52,211,153,.50); transform: translateY(-2px); color: #fff; }
.btn-nav:disabled { opacity: .45; cursor: not-allowed; transform: none !important; }

.step-counter { font-size: 15px; font-weight: 600; color: var(--muted-2); }
.step-counter strong { color: var(--violet-l); }

/* ─── ERROR ALERT ─── */
.reg-errors {
    background: rgba(248,113,113,.08);
    border: 1.5px solid rgba(248,113,113,.30);
    border-radius: var(--radius); padding: 16px 20px; margin-bottom: 24px;
}
.reg-errors h6 { font-size: 15px; font-weight: 700; color: var(--danger); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.reg-errors ul { list-style: none; padding: 0; }
.reg-errors ul li { font-size: 15px; color: var(--danger); padding: 4px 0; display: flex; align-items: flex-start; gap: 6px; }
.reg-errors ul li::before { content: '•'; color: var(--danger); margin-top: 2px; }

/* ─── INFO BOX ─── */
.info-box {
    background: rgba(124,58,237,.08);
    border: 1px solid rgba(124,58,237,.22);
    border-radius: var(--radius); padding: 14px 18px; margin-bottom: 24px;
    display: flex; gap: 12px; align-items: flex-start;
}
.info-box i { color: var(--violet-l); margin-top: 2px; flex-shrink: 0; }
.info-box p  { font-size: 15px; color: var(--muted); margin: 0; line-height: 1.65; }

/* ─── WORD COUNT ─── */
.word-count-bar { margin-top: 8px; }
.word-count-bar .bar-track { height: 4px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.word-count-bar .bar-fill   { height: 100%; background: linear-gradient(90deg, var(--danger), var(--warning)); border-radius: 2px; transition: width .3s ease, background .3s; }
.word-count-bar .bar-fill.complete { background: linear-gradient(90deg, var(--green), var(--green-d)); }
.word-count-bar .wc-text { font-size: 14px; color: var(--muted-2); margin-top: 4px; }
.word-count-bar .wc-text strong { color: var(--text); }

/* ─── PITCH DECK ITEMS ─── */
.pitch-deck-items { display: flex; flex-direction: column; gap: 7px; }
.pitch-deck-items span { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: var(--muted); line-height: 1.55; }
.pitch-deck-items i { color: var(--violet-l); font-size: 8px; margin-top: 6px; flex-shrink: 0; }

/* ─── SAMPLE DOWNLOAD ─── */
.sample-download {
    position: relative;
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(124,58,237,.13) 0%, rgba(0,212,255,.05) 100%);
    border: 1px solid rgba(124,58,237,.32);
    border-radius: var(--radius);
    padding: 16px 20px;
    text-decoration: none;
    overflow: hidden;
    transition: var(--transition);
}
.sample-download::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(124,58,237,.06), transparent 60%);
    pointer-events: none;
}
.sample-download:hover {
    border-color: rgba(124,58,237,.55);
    background: linear-gradient(135deg, rgba(124,58,237,.18) 0%, rgba(0,212,255,.08) 100%);
    box-shadow: 0 4px 24px rgba(124,58,237,.18);
    text-decoration: none;
}
.sample-download-badge {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.2px;
    color: var(--cyan);
    background: rgba(0,212,255,.1);
    border: 1px solid rgba(0,212,255,.25);
    border-radius: 5px;
    padding: 2px 7px;
}
.sample-download-icon {
    width: 52px;
    height: 52px;
    border-radius: 13px;
    background: linear-gradient(135deg, rgba(124,58,237,.28), rgba(0,212,255,.12));
    border: 1px solid rgba(124,58,237,.38);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(124,58,237,.2);
}
.sample-download-icon i { font-size: 24px; color: #C084FC; }
.sample-download-info { flex: 1; min-width: 0; }
.sample-download-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
}
.sample-download-desc {
    font-size: 13px;
    color: var(--muted-2);
    line-height: 1.45;
    margin-bottom: 8px;
}
.sample-download-meta {
    display: flex;
    gap: 12px;
}
.sample-download-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-2);
}
.sample-download-meta i { font-size: 11px; color: var(--violet-l); }
.sample-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--violet) 0%, #5B21B6 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(124,58,237,.38);
    transition: var(--transition);
}
.sample-download:hover .sample-download-btn {
    background: linear-gradient(135deg, #6D28D9, var(--violet));
    box-shadow: 0 6px 22px rgba(124,58,237,.55);
    transform: translateY(-1px);
}
.sample-download-btn i { font-size: 13px; }
@media (max-width: 576px) {
    .sample-download { flex-wrap: wrap; }
    .sample-download-badge { top: 8px; right: 10px; }
    .sample-download-btn { width: 100%; justify-content: center; }
}

/* ─── SUCCESS PAGE ─── */
.success-page {
    min-height: 100vh;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(124,58,237,.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 70%, rgba(0,212,255,.15) 0%, transparent 55%),
        linear-gradient(170deg, #06010F 0%, #0D0520 60%, #06010F 100%);
    display: flex; align-items: center; justify-content: center;
    padding: 110px 16px 32px; position: relative; overflow: hidden;
}
.success-card {
    background: rgba(13,5,32,.90);
    border: 1px solid rgba(124,58,237,.28);
    border-radius: var(--radius-xl); padding: 56px 48px;
    text-align: center; max-width: 540px; width: 100%;
    box-shadow: var(--gv), inset 0 1px 0 rgba(255,255,255,.05);
    backdrop-filter: blur(24px);
}
.success-icon {
    width: 96px; height: 96px;
    background: linear-gradient(135deg, var(--green), var(--green-d));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 32px rgba(52,211,153,.45);
    animation: popIn .6s cubic-bezier(.36,.07,.19,.97) both;
}
@keyframes popIn { 0%{transform:scale(0);opacity:0} 60%{transform:scale(1.1)} 100%{transform:scale(1);opacity:1} }
.success-icon i { font-size: 42px; color: #fff; }
.success-card h2 { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.success-card p  { font-size: 16px; color: var(--muted); line-height: 1.75; }
.success-ref {
    display: inline-block;
    background: rgba(255,255,255,.07);
    border: 1.5px solid rgba(255,255,255,.14);
    border-radius: 50px; padding: 10px 24px;
    font-size: 15px; font-weight: 700; color: var(--violet-l); margin: 20px 0;
}
.success-notice {
    display: flex; align-items: flex-start; gap: 10px;
    background: rgba(124,58,237,.10);
    border: 1px solid rgba(124,58,237,.25);
    border-radius: var(--radius); padding: 14px 16px;
    margin-top: 20px; text-align: left;
}
.success-notice i { color: var(--violet-l); margin-top: 2px; flex-shrink: 0; }
.success-notice span { font-size: 15px; color: var(--muted); line-height: 1.65; }

.btn-home-success {
    display: inline-flex; align-items: center; gap: 10px;
    margin-top: 24px; padding: 13px 32px;
    background: linear-gradient(135deg, var(--violet), var(--pink-d));
    color: #fff; border-radius: 50px;
    font-size: 15px; font-weight: 700; text-decoration: none;
    box-shadow: 0 4px 20px rgba(124,58,237,.45);
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.15);
}
.btn-home-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124,58,237,.65), var(--gp);
    color: #fff;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: rgba(255,255,255,.03); }
::-webkit-scrollbar-thumb { background: rgba(124,58,237,.45); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(124,58,237,.7); }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
    /* Nav: hide logo text, show only icon */
    .reg-nav-logo-text { display: none; }

    /* Steps: compact circles, keep labels at 14px */
    .step-circle { width: 38px; height: 38px; font-size: 14px; }
    .step-label  { font-size: 14px; }
    .step-item:not(:last-child)::after { top: 18px; }
}

@media (max-width: 640px) {
    /* ── NAV ── */
    .reg-nav-inner   { height: 58px; padding: 0 16px; }
    .reg-nav-logo-icon { width: 36px; height: 36px; border-radius: 10px; }
    .reg-nav-logo-icon i { font-size: 16px; }
    .reg-nav-back    { padding: 7px 14px; font-size: 14px; white-space: nowrap; gap: 6px; }

    /* Page padding matches shorter nav */
    .reg-page { padding-top: 80px; }

    /* ── HEADER ── */
    .reg-header       { margin-bottom: 24px; }
    .reg-header .logo-wrap { width: 60px; height: 60px; border-radius: 16px; margin-bottom: 12px; }
    .reg-header .logo-wrap i { font-size: 26px; }
    .reg-header h1    { font-size: clamp(20px, 5.5vw, 28px); }
    .reg-header p     { font-size: 14px; }

    /* ── STEP INDICATOR ──
       On small screens: hide labels, show only numbered circles.
       The step-heading/subheading already tells the user which step they're on. */
    .steps-bar   { padding: 16px 16px 0; }
    .step-circle { width: 34px; height: 34px; font-size: 14px; }
    .step-label  { display: none; }
    .steps-progress { margin-top: 16px; }
    .step-item:not(:last-child)::after { top: 16px; }

    /* ── FORM ── */
    .reg-form-body { padding: 20px 16px; }
    .step-heading    { font-size: 20px; }
    .step-subheading { font-size: 14px; margin-bottom: 18px; }

    /* ── BOTTOM NAV BUTTONS ── */
    .reg-nav     { padding: 14px 16px; }
    .btn-nav     { padding: 11px 20px; font-size: 14px; }
    .step-counter { font-size: 14px; }
}

@media (max-width: 400px) {
    .reg-nav-inner { padding: 0 12px; }
    .reg-nav-back  { padding: 7px 12px; font-size: 14px; }
    .btn-nav       { padding: 10px 16px; }
}

@media (max-width: 576px) {
    .success-card    { padding: 36px 20px; }
    .success-card h2 { font-size: 24px; }
}
