/**
 * Financial Analyzer PRO - Public UI
 * Concept: Futurist Glassmorphism & High-Tech Cards
 */

:root {
    --primary-blue: #2563eb;
    --accent-purple: #7c3aed;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --neon-glow: rgba(37, 99, 235, 0.2);
}

/* Container Principal cu fundal Cyber Dark */
#drfa-futurist-container {
    background: radial-gradient(circle at top right, #1e293b, #0f172a);
    padding: 3rem;
    border-radius: 32px;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #f8fafc;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-width: 900px;
    margin: 2rem auto;
}

/* Card Principal (The Glass Card) */
.drfa-main-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.drfa-header h2 {
    font-size: 2rem;
    background: linear-gradient(to right, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* Grid Contact */
.drfa-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.input-group label {
    display: block;
    font-size: 0.875rem;
    color: #94a3b8;
    margin-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.input-group input {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    width: 100%;
    transition: all 0.3s ease;
}

.input-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px var(--neon-glow);
}

/* Sectiuni Documente */
.doc-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.doc-upload-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

/* Card Document Individual */
.doc-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.doc-card:hover {