/* ═══════════════════════════════════════════════════════════
   FASTWWWEB — ONBOARDING CLIENT · Stylesheet
   Auteur : Fastwwweb · 2026
   Aesthetics : Sleek Dark Mode, Glassmorphism, Neon Glows
   ═══════════════════════════════════════════════════════════ */

:root {
    --bg-dark: #09090c;
    --bg-darker: #050507;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --gradient-start: #6098ff;
    --gradient-end: #d647ff;
    --primary: #6098ff;
    --secondary: #d647ff;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-hover-border: rgba(255, 255, 255, 0.12);
    --glass-focus-border: rgba(96, 152, 255, 0.35);
    --font-sans: 'Outfit', sans-serif;
    --error: #f43f5e;
    --success: #10b981;
}

/* ═══ BASE & SCROLLBAR ═══ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

[hidden] {
    display: none !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--bg-darker);
}
::-webkit-scrollbar-thumb {
    background: #1f1f2e;
    border-radius: 5px;
    border: 2px solid var(--bg-darker);
}
::-webkit-scrollbar-thumb:hover {
    background: #2e2e42;
}

/* ═══ BACKGROUND ANIMATED GLOWS ═══ */
.ob-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.ob-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.8;
    animation: obFloat 24s infinite ease-in-out alternate;
}

.ob-orb-1 {
    top: -15%;
    right: 5%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(94, 53, 222, 0.28), transparent 70%);
}

.ob-orb-2 {
    bottom: -10%;
    left: -5%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(38, 107, 255, 0.22), transparent 70%);
    animation-delay: -6s;
    animation-duration: 28s;
}

.ob-orb-3 {
    top: 35%;
    left: 30%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(214, 71, 255, 0.14), transparent 70%);
    animation-delay: -12s;
    animation-duration: 18s;
}

@keyframes obFloat {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(80px, 50px) scale(1.1); }
}

/* ═══ TEXT GRADIENTS ═══ */
.text-gradient {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* ═══ UTILITIES & CONTAINER ═══ */
.ob-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
}

.ob-sep {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 15%, rgba(255,255,255,0.06) 85%, transparent);
    margin: 32px 0;
    border: none;
}

.ob-hidden {
    display: none !important;
}

.ob-invisible {
    visibility: hidden !important;
    pointer-events: none;
}

/* Bento Card / Glassmorphism base */
.bento-card {
    background: var(--glass-bg);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 48px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease, box-shadow 0.4s ease;
}

.bento-card:hover {
    border-color: var(--glass-hover-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ═══ RESTORE SESSION BANNER ═══ */
.ob-restore {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 650px;
    background: rgba(15, 15, 23, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(96, 152, 255, 0.25);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 15px rgba(96, 152, 255, 0.15);
    z-index: 100;
    animation: obSlideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.ob-restore-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 500;
}

.ob-restore-icon {
    font-size: 18px;
    color: var(--primary);
}

.ob-restore-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
    flex-shrink: 0;
}

.ob-restore-actions button {
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.btn-restore-yes {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    color: var(--text-main);
}
.btn-restore-yes:hover {
    transform: translateY(-1.5px);
    box-shadow: 0 5px 12px rgba(153, 90, 255, 0.35);
}

.btn-restore-no {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.btn-restore-no:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}

@keyframes obSlideDown {
    from { transform: translate(-50%, -50px); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}

/* ═══ NAVBAR ═══ */
.ob-nav {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(9, 9, 12, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.ob-nav-container {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ob-nav-brand {
    text-decoration: none;
}

.ob-nav-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -1px;
}

.ob-nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.ob-autosave {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: var(--success);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.ob-autosave.ob-visible {
    opacity: 1;
    transform: translateY(0);
}

.ob-nav-help {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ob-nav-help:hover {
    color: var(--text-main);
}

/* ═══ HERO SECTION ═══ */
.ob-hero {
    padding: 60px 0 40px 0;
    text-align: center;
}

.ob-badge-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.ob-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.ob-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.8);
    animation: obPulse 2s infinite;
}

@keyframes obPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
    100% { transform: scale(1); opacity: 1; }
}

.ob-hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

.ob-hero-desc {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto 28px auto;
    line-height: 1.6;
}

.ob-hero-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

.ob-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.ob-dot-sep {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.15);
}

/* ═══ STEPPER ═══ */
.ob-stepper-wrap {
    padding-bottom: 40px;
}

.ob-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.ob-step-line {
    position: absolute;
    top: 18px;
    left: 4%;
    right: 4%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.ob-step-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 0 10px rgba(153, 90, 255, 0.4);
    transition: width 0.4s ease;
}

.ob-step {
    background: none;
    border: none;
    cursor: default;
    outline: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 80px;
}

/* Steps that have been completed can be clicked */
.ob-step.completed {
    cursor: pointer;
}

.ob-step-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #111115;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.ob-step-check {
    display: none;
    font-size: 13px;
}

.ob-step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

/* Stepper States */
.ob-step.active .ob-step-circle {
    border-color: var(--primary);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(96, 152, 255, 0.35);
    background: rgba(96, 152, 255, 0.1);
}
.ob-step.active .ob-step-label {
    color: var(--text-main);
    font-weight: 700;
}

.ob-step.completed .ob-step-circle {
    border-color: var(--secondary);
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
}
.ob-step.completed .ob-step-num {
    display: none;
}
.ob-step.completed .ob-step-check {
    display: block;
}
.ob-step.completed .ob-step-label {
    color: var(--text-main);
}

.ob-step.completed:hover .ob-step-circle {
    transform: scale(1.08);
    box-shadow: 0 0 15px rgba(214, 71, 255, 0.3);
}

/* ═══ FORM PANELS & BENTO PANELS ═══ */
.ob-main {
    padding-bottom: 120px;
}

.ob-panel-header {
    margin-bottom: 36px;
}

.ob-eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
}

.ob-panel-title {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.ob-panel-desc {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

/* ═══ FIELDS STRUCTURE ═══ */
.ob-fields {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ob-field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.ob-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ob-label {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.ob-req {
    color: var(--error);
    margin-left: 2px;
}

.ob-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-main);
    font-family: var(--font-sans);
    font-size: 15px;
    outline: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ob-input::placeholder {
    color: rgba(255, 255, 255, 0.2);
}

.ob-input:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.ob-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 0 0 3px rgba(96, 152, 255, 0.15);
}

.ob-textarea {
    resize: vertical;
    min-height: 80px;
    line-height: 1.5;
}

.ob-select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 45px;
}

.ob-select option {
    background: #111116;
    color: var(--text-main);
}

.ob-hint {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.ob-field-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 4px;
}

.ob-counter {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Error validation states */
.ob-input.ob-invalid {
    border-color: var(--error) !important;
    background: rgba(244, 63, 94, 0.03) !important;
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15) !important;
}

.ob-error-banner {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(244, 63, 94, 0.1);
    border: 1px solid rgba(244, 63, 94, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    color: #ff8596;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: obShake 0.4s ease;
}

@keyframes obShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

/* ═══ SOCIAL INPUT GRID ═══ */
.ob-social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.ob-social-input {
    display: flex;
    position: relative;
}

.ob-social-icon {
    position: absolute;
    left: 1px;
    top: 1px;
    bottom: 1px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 11px 0 0 11px;
    color: var(--text-muted);
    font-size: 15px;
    background: rgba(255, 255, 255, 0.01);
}

.ob-social-icon.fb { color: #1877f2; }
.ob-social-icon.ig { color: #e1306c; }
.ob-social-icon.ln { color: #0a66c2; }
.ob-social-icon.tw { color: #f8fafc; }

.ob-social-input input {
    padding-left: 58px;
}

.ob-input-sm {
    padding: 10px 14px;
    font-size: 14px;
}

/* ═══ CHOICE CARDS (RADIOS & CHECKBOXES) ═══ */
.ob-radios {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.ob-radios-col {
    flex-direction: column;
}

.ob-radio-card, .ob-check-card {
    flex: 1;
    min-width: 140px;
    position: relative;
    cursor: pointer;
}

.ob-radio-card input, .ob-check-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ob-radio-inner, .ob-check-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
    user-select: none;
}

.ob-radio-card:hover .ob-radio-inner, .ob-check-card:hover .ob-check-inner {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-main);
}

/* Checked States */
.ob-radio-card input:checked + .ob-radio-inner,
.ob-check-card input:checked + .ob-check-inner {
    border-color: var(--primary);
    background: rgba(96, 152, 255, 0.05);
    color: var(--text-main);
    box-shadow: 0 0 15px rgba(96, 152, 255, 0.15);
}

.ob-checks {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.ob-check-inner {
    justify-content: flex-start;
    padding: 18px 22px;
    font-size: 15px;
}

.font-icon {
    font-size: 16px;
    color: var(--primary);
    margin-right: 4px;
}

/* ═══ AMBIANCE VISUAL CARDS ═══ */
.ob-ambiance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ob-ambiance-card {
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255,255,255,0.015);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ob-ambiance-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ob-ambiance-swatch {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.ob-ambiance-body {
    padding: 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ob-ambiance-body strong {
    font-size: 14.5px;
    color: var(--text-main);
}

.ob-ambiance-body small {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

.ob-ambiance-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255,255,255,0.03);
}

.ob-ambiance-card:hover .ob-ambiance-swatch {
    transform: scale(1.02);
}

/* Ambiance Active State */
.ob-ambiance-card input:checked {
    border-color: red;
}

.ob-ambiance-card:has(input:checked) {
    border-color: var(--secondary);
    background: rgba(214, 71, 255, 0.03);
    box-shadow: 0 0 20px rgba(214, 71, 255, 0.15);
}

/* ═══ COLOR PICKERS ROW ═══ */
.ob-color-row {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.ob-color-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 200px;
}

.ob-color-inputs {
    display: flex;
    gap: 12px;
    align-items: center;
}

.ob-color-swatch {
    -webkit-appearance: none;
    border: none;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    cursor: pointer;
    background: none;
}

.ob-color-swatch::-webkit-color-swatch-wrapper {
    padding: 0;
}

.ob-color-swatch::-webkit-color-swatch {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
}

/* ═══ FILE UPLOAD & DROPZONES ═══ */
.ob-upload-cat {
    margin-bottom: 36px;
}

.ob-upload-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
}

.ob-upload-title i {
    color: var(--primary);
}

.ob-upload-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
    line-height: 1.4;
}

.ob-dropzone {
    background: rgba(255, 255, 255, 0.01);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    outline: none;
}

.ob-dropzone:hover, .ob-dropzone:focus {
    border-color: var(--primary);
    background: rgba(96, 152, 255, 0.02);
    box-shadow: 0 0 15px rgba(96, 152, 255, 0.05);
}

.ob-dropzone.ob-drag-over {
    border-color: var(--secondary);
    background: rgba(214, 71, 255, 0.05);
    transform: scale(0.99);
}

.ob-drop-icon {
    font-size: 26px;
    color: var(--text-muted);
    transition: transform 0.2s ease, color 0.2s ease;
}

.ob-dropzone:hover .ob-drop-icon {
    transform: translateY(-2px);
    color: var(--primary);
}

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

.ob-drop-browse {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
}

/* Upload List of queued files */
.ob-file-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

.ob-file-item {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 10px 16px;
    position: relative;
    overflow: hidden;
    animation: obFileIn 0.3s ease forwards;
}

@keyframes obFileIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes obFileOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.9); }
}

.ob-file-thumb {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: var(--primary);
}

.ob-file-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ob-file-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.ob-file-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ob-file-size {
    font-size: 11px;
    color: var(--text-muted);
}

/* Individual File Upload Progress Bar */
.ob-file-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: transparent;
}

.ob-file-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

.ob-file-bar-fill.ob-done {
    background: var(--success);
}

.ob-file-del {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
}

.ob-file-del:hover {
    color: var(--error);
    background: rgba(244, 63, 94, 0.1);
}

/* ZIP Shortcut Banner */
.ob-zip-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(96, 152, 255, 0.03);
    border: 1px dashed rgba(96, 152, 255, 0.2);
    border-radius: 20px;
    padding: 24px 30px;
    margin: 40px 0 20px 0;
}

.ob-zip-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ob-zip-icon {
    font-size: 32px;
    color: var(--primary);
}

.ob-zip-left div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ob-zip-left strong {
    font-size: 15px;
    color: var(--text-main);
}

.ob-zip-left span {
    font-size: 13px;
    color: var(--text-muted);
}

.ob-zip-btn {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ob-zip-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

/* Global Upload Progress Block */
.ob-upload-progress {
    margin-top: 32px;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 20px;
    animation: obFileIn 0.3s ease;
}

.ob-progress-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 600;
}

.ob-progress-bar-container {
    height: 8px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.ob-progress-bar {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    border-radius: 10px;
    transition: width 0.3s ease;
}

/* Confirm and Checkbox validation */
.ob-confirm-block {
    margin-top: 32px;
}

.ob-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.ob-checkbox-label input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.ob-checkbox-custom {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    margin-top: 2px;
}

.ob-checkbox-label input:checked + .ob-checkbox-custom {
    border-color: var(--primary);
    background: var(--primary);
}

.ob-checkbox-custom::after {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: white;
    font-size: 11px;
    display: none;
}

.ob-checkbox-label input:checked + .ob-checkbox-custom::after {
    display: block;
}

.ob-checkbox-text {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

.ob-link-btn {
    background: none;
    border: none;
    color: var(--primary);
    text-decoration: underline;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    padding: 0;
}

.ob-link-btn:hover {
    color: var(--secondary);
}

/* ═══ STEP PANEL SLIDE TRANSITIONS ═══ */
.ob-slide-out-l {
    animation: obSlideOutL 0.26s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.ob-slide-out-r {
    animation: obSlideOutR 0.26s cubic-bezier(0.4, 0, 1, 1) forwards;
}

.ob-slide-in-l {
    animation: obSlideInL 0.32s cubic-bezier(0, 0, 0.2, 1) forwards;
}

.ob-slide-in-r {
    animation: obSlideInR 0.32s cubic-bezier(0, 0, 0.2, 1) forwards;
}

@keyframes obSlideOutL {
    to { transform: translateX(-40px); opacity: 0; }
}

@keyframes obSlideOutR {
    to { transform: translateX(40px); opacity: 0; }
}

@keyframes obSlideInL {
    from { transform: translateX(-40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes obSlideInR {
    from { transform: translateX(40px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ═══ FOOTER & BUTTONS ═══ */
.ob-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
}

.ob-footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.ob-step-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.ob-mini-bar {
    width: 120px;
    height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.ob-mini-fill {
    width: 16.66%;
    height: 100%;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    transition: width 0.3s ease;
}

/* Button style */
.ob-btn-next, .ob-btn-back {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-main);
    user-select: none;
}

.ob-btn-next {
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    box-shadow: 0 8px 24px rgba(153, 90, 255, 0.25);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.ob-btn-next::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, var(--gradient-end), var(--gradient-start));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.ob-btn-next:hover::before {
    opacity: 1;
}

.ob-btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(153, 90, 255, 0.4);
}

.ob-btn-next:disabled {
    opacity: 0.6;
    transform: none !important;
    box-shadow: none !important;
    cursor: not-allowed;
}

.ob-btn-back {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
}

.ob-btn-back:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-main);
    transform: translateY(-2px);
}

/* Spinner Icon */
.ob-spinning {
    animation: obSpin 1s linear infinite;
}

@keyframes obSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ═══ SUCCESS SCREEN ═══ */
.ob-success {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    animation: obFileIn 0.5s ease;
}

.ob-success[hidden] {
    display: none !important;
}

.ob-success-card {
    max-width: 600px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 40px !important;
}

.ob-success-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.ob-success-icon-check {
    font-size: 38px;
    color: var(--success);
}

.ob-success-title {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.ob-success-desc {
    font-size: 15.5px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
}

.ob-success-info {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    padding: 20px 24px;
    margin-bottom: 36px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ob-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13.5px;
}

.ob-info-label {
    color: var(--text-muted);
    font-weight: 500;
}

.ob-info-value {
    color: var(--text-main);
    font-weight: 700;
}

.ob-success-back {
    text-decoration: none;
}

/* ═══ PRIVACY MODAL ═══ */
.ob-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(5, 5, 8, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: obFadeIn 0.3s ease;
}

.ob-modal-overlay[hidden] {
    display: none !important;
}

.ob-modal {
    max-width: 650px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    padding: 36px !important;
    animation: obZoomIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ob-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.ob-modal-header h2 {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.ob-modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 20px;
    transition: color 0.2s ease;
}

.ob-modal-close:hover {
    color: var(--text-main);
}

.ob-modal-body {
    overflow-y: auto;
    padding-right: 8px;
    line-height: 1.6;
    font-size: 14.5px;
    color: var(--text-muted);
}

.ob-modal-body h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 20px 0 8px 0;
}

.ob-modal-body p {
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
}

.ob-modal-body ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.ob-modal-body li {
    margin-bottom: 6px;
    font-size: 13.5px;
}

@keyframes obFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes obZoomIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ═══ RESPONSIVE DESIGN ═══ */
@media (max-width: 768px) {
    .ob-hero-title {
        font-size: 34px;
    }
    
    .bento-card {
        padding: 32px 24px;
        border-radius: 24px;
    }
    
    .ob-field-row, .ob-social-grid, .ob-ambiance-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .ob-stepper {
        overflow-x: auto;
        padding-bottom: 12px;
    }
    
    .ob-step {
        width: 60px;
    }
    
    .ob-step-label {
        font-size: 10px;
    }
    
    .ob-step-circle {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    
    .ob-step-line {
        top: 15px;
    }
    
    .ob-zip-banner {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        padding: 20px;
    }
    
    .ob-zip-btn {
        width: 100%;
        text-align: center;
    }
    
    .ob-footer {
        flex-direction: column-reverse;
        gap: 20px;
        align-items: stretch;
    }
    
    .ob-btn-next, .ob-btn-back {
        width: 100%;
        justify-content: center;
    }
}
