/* =============================================
   HR WORLDWIDE - PREMIUM CORPORATE THEME
   Fortune 500 Executive Office Design
   ============================================= */

:root {
    /* Premium Corporate Palette */
    --charcoal-black: #151515;
    --dark-graphite: #1F1F1F;
    --walnut-brown: #3B2A22;
    --dark-bronze: #5B4636;
    
    /* Metallic Accents */
    --metallic-gold: #D4AF37;
    --champagne-gold: #C9A44C;
    --gold-gradient: linear-gradient(135deg, #D4AF37 0%, #C9A44C 25%, #E5C158 50%, #C9A44C 75%, #B8942E 100%);
    --gold-shimmer: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    
    /* Neutrals */
    --white: #FFFFFF;
    --soft-gray: #D9D9D9;
    --light-silver: #F5F5F5;
    --text-primary: #EAE8E4;
    --text-secondary: #B0AEA8;
    --text-muted: #7A7874;
    
    /* Glass Effects */
    --glass-bg: rgba(31, 31, 31, 0.6);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-blur: 20px;
    --glass-highlight: rgba(255, 255, 255, 0.03);
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 30px rgba(212, 175, 55, 0.15);
    --shadow-gold-hover: 0 8px 50px rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-heading: 'Inter', 'Helvetica Neue', sans-serif;
    --font-display: 'Manrope', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', 'Open Sans', sans-serif;
    
    /* Spacing */
    --radius-xs: 3px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-luxury: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =============================================
   GLOBAL RESET & BASE
   ============================================= */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--charcoal-black);
    font-family: var(--font-body);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* =============================================
   EXECUTIVE OFFICE BACKGROUND
   ============================================= */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -2;
    /* Dark wood texture */
    background:
        /* Subtle wood grain */
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(59, 42, 34, 0.03) 2px,
            rgba(59, 42, 34, 0.03) 4px
        ),
        /* Vertical panel lines */
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.01) 40px,
            rgba(255, 255, 255, 0.01) 41px
        ),
        /* Dark gradient base */
        linear-gradient(180deg, 
            #151515 0%, 
            #1a1a1a 30%, 
            #1F1F1F 60%, 
            #151515 100%
        );
}

/* Office wall paneling effect */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    background:
        /* Vertical wood panels */
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 78px,
            rgba(212, 175, 55, 0.02) 78px,
            rgba(212, 175, 55, 0.02) 79px,
            transparent 79px,
            transparent 80px
        );
}

/* =============================================
   AMBIENT LIGHTING EFFECTS
   ============================================= */
.ambient-lighting {
    position: fixed;
    pointer-events: none;
    z-index: -1;
}

/* Warm golden glow from above */
.ambient-lighting.top {
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(
        ellipse at center,
        rgba(212, 175, 55, 0.08) 0%,
        rgba(212, 175, 55, 0.03) 30%,
        transparent 70%
    );
    animation: ambientGlow 8s ease-in-out infinite;
}

/* Hidden LED strip effect from left */
.ambient-lighting.left {
    top: 30%;
    left: -100px;
    width: 3px;
    height: 300px;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(212, 175, 55, 0.4),
        rgba(212, 175, 55, 0.1),
        transparent
    );
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), 0 0 60px rgba(212, 175, 55, 0.1);
    animation: ledPulse 4s ease-in-out infinite;
}

/* Warm corner glow */
.ambient-lighting.bottom-right {
    bottom: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle at center,
        rgba(201, 164, 76, 0.06) 0%,
        transparent 70%
    );
    animation: ambientGlow 12s ease-in-out infinite reverse;
}

@keyframes ambientGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

@keyframes ledPulse {
    0%, 100% { opacity: 0.4; box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); }
    50% { opacity: 1; box-shadow: 0 0 50px rgba(212, 175, 55, 0.3); }
}

/* Camera Enable Button */
.camera-enable-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 10px 20px;
    border-radius: 8px;
    border: 2px solid #4CAF50;
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
    z-index: 5;
    white-space: nowrap;
}
.camera-enable-btn:hover {
    background: rgba(76, 175, 80, 0.35);
    border-color: #fff;
    color: #fff;
    box-shadow: 0 0 25px rgba(76, 175, 80, 0.3);
}
.camera-enable-btn.active {
    background: rgba(76, 175, 80, 0.5);
    border-color: #fff;
    color: #fff;
    animation: camPulse 2s infinite;
}
@keyframes camPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(76,175,80,0.3); }
    50% { box-shadow: 0 0 30px rgba(76,175,80,0.6); }
}

/* =============================================
   FLOATING GOLD PARTICLES
   ============================================= */
.gold-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.gold-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--metallic-gold);
    border-radius: 50%;
    animation: floatUp 10s infinite;
    opacity: 0;
    box-shadow: 0 0 6px rgba(212, 175, 55, 0.5);
}

.gold-particle:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 8s; }
.gold-particle:nth-child(2) { left: 12%; animation-delay: 1s; animation-duration: 10s; }
.gold-particle:nth-child(3) { left: 22%; animation-delay: 2.5s; animation-duration: 9s; }
.gold-particle:nth-child(4) { left: 30%; animation-delay: 3.5s; animation-duration: 11s; }
.gold-particle:nth-child(5) { left: 38%; animation-delay: 0.5s; animation-duration: 7s; }
.gold-particle:nth-child(6) { left: 45%; animation-delay: 1.8s; animation-duration: 12s; }
.gold-particle:nth-child(7) { left: 55%; animation-delay: 4s; animation-duration: 8.5s; }
.gold-particle:nth-child(8) { left: 62%; animation-delay: 2.2s; animation-duration: 9.5s; }
.gold-particle:nth-child(9) { left: 70%; animation-delay: 3s; animation-duration: 10.5s; }
.gold-particle:nth-child(10) { left: 78%; animation-delay: 1.5s; animation-duration: 7.5s; }
.gold-particle:nth-child(11) { left: 85%; animation-delay: 2.8s; animation-duration: 11s; }
.gold-particle:nth-child(12) { left: 92%; animation-delay: 4.5s; animation-duration: 8s; }
.gold-particle:nth-child(13) { left: 15%; animation-delay: 5s; animation-duration: 9s; }
.gold-particle:nth-child(14) { left: 48%; animation-delay: 0.8s; animation-duration: 10s; }
.gold-particle:nth-child(15) { left: 68%; animation-delay: 3.8s; animation-duration: 8.8s; }

@keyframes floatUp {
    0% {
        transform: translateY(110vh) translateX(0) scale(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    15% {
        transform: translateY(85vh) translateX(15px) scale(1.5);
        opacity: 0.8;
    }
    50% {
        opacity: 0.5;
    }
    85% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-10vh) translateX(-20px) scale(0.3);
        opacity: 0;
    }
}

/* =============================================
   PRE-INTERVIEW OVERLAY - COMPACT & FITTING
   ============================================= */
.pre-interview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
    animation: fadeIn 0.3s ease;
}

.pre-interview-card {
    background: rgba(28, 33, 40, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    padding: 30px 28px;
    max-width: 480px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 80px rgba(212, 175, 55, 0.06);
    text-align: center;
}

.pre-interview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    right: 25px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #D4AF37, #C9A44C, #D4AF37, transparent);
}

/* Scrollbar */
.pre-interview-card::-webkit-scrollbar { width: 3px; }
.pre-interview-card::-webkit-scrollbar-track { background: transparent; }
.pre-interview-card::-webkit-scrollbar-thumb { background: rgba(212, 175, 55, 0.2); border-radius: 2px; }

/* Icon */
.prep-icon-circle {
    width: 55px;
    height: 55px;
    margin: 0 auto 15px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.07);
    border: 2px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    animation: prepPulse 3s ease-in-out infinite;
}

@keyframes prepPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.08); }
    50% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.2); }
}

/* Title */
.prep-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-primary);
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.prep-subtitle {
    font-size: 0.75rem;
    color: var(--text-secondary);
    letter-spacing: 0.8px;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 18px;
}

/* Requirements - Compact */
.prep-requirements-list {
    text-align: left;
    margin-bottom: 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.prep-req-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.07);
}

.req-item-icon {
    font-size: 1.1rem;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.07);
    border-radius: 6px;
    flex-shrink: 0;
}

.req-item-text {
    flex: 1;
    min-width: 0;
}

.req-item-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.req-item-desc {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    display: none; /* Hide descriptions to save space */
}

/* Badge */
.req-item-badge {
    font-size: 0.5rem;
    padding: 3px 7px;
    border-radius: 3px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    flex-shrink: 0;
}

.badge-essential {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

/* Checkbox */
.prep-checkbox-section {
    margin-bottom: 18px;
    padding: 14px 18px;
    background: rgba(212, 175, 55, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.prep-checkbox-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.prep-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #D4AF37;
    cursor: pointer;
    flex-shrink: 0;
}

.prep-checkbox-item label {
    font-size: 0.78rem;
    color: var(--text-primary);
    cursor: pointer;
    letter-spacing: 0.5px;
    font-weight: 500;
    text-align: left;
    line-height: 1.3;
}

/* Note - Compact */
.prep-note {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    margin-bottom: 18px;
    text-align: left;
}

.prep-note .note-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.prep-note p {
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.3px;
    line-height: 1.5;
    margin: 0;
}

.prep-note strong {
    color: var(--metallic-gold);
}

/* Buttons */
.prep-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.prep-primary-btn {
    width: 100%;
    padding: 13px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.prep-primary-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(60%);
    transform: none !important;
    box-shadow: none !important;
}

.prep-skip-btn {
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 10px;
    border-radius: 6px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.prep-skip-btn:hover {
    border-color: rgba(212, 175, 55, 0.4);
    color: var(--text-secondary);
    background: rgba(212, 175, 55, 0.03);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.92); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.pre-interview-overlay.closing {
    animation: fadeOut 0.3s ease forwards;
    pointer-events: none;
}

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

/* Shake */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

/* Mobile */
@media (max-width: 480px) {
    .pre-interview-card {
        padding: 22px 16px;
        max-height: 95vh;
    }
    .prep-requirements-list {
        grid-template-columns: 1fr;
        gap: 6px;
    }
    .prep-title {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    .prep-icon-circle {
        width: 45px;
        height: 45px;
        font-size: 1.4rem;
    }
    .prep-checkbox-item label {
        font-size: 0.72rem;
    }
}


/* ============================================
   INTERVIEW ENHANCEMENTS
   ============================================ */

/* Interview Sidebar Panel */
.interview-sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Progress Map */
.progress-map {
    padding: 20px;
    background: rgba(28, 33, 40, 0.9);
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}
.progress-map h4 {
    font-size: 0.7rem;
    color: var(--metallic-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    text-align: center;
}
.progress-steps-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.progress-step-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    background: rgba(255,255,255,0.02);
    font-size: 0.72rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}
.progress-step-item.completed {
    color: #4CAF50;
    background: rgba(76,175,80,0.08);
}
.progress-step-item.active {
    color: var(--metallic-gold);
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    animation: activePulse 2s infinite;
}
@keyframes activePulse {
    0%,100% { border-color: rgba(212,175,55,0.2); }
    50% { border-color: rgba(212,175,55,0.5); }
}
.progress-step-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    flex-shrink: 0;
}
.progress-step-item.completed .progress-step-icon {
    background: #4CAF50;
    color: #fff;
}
.progress-step-item.active .progress-step-icon {
    background: var(--metallic-gold);
    color: #1a1a1a;
}
.progress-step-item.pending .progress-step-icon {
    border: 1px solid rgba(255,255,255,0.2);
    color: transparent;
}
.progress-bar-wrap {
    margin-top: 12px;
    height: 3px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}
.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #D4AF37, #C9A44C);
    border-radius: 2px;
    transition: width 0.5s ease;
}

/* Word Counter */
.word-counter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: rgba(0,0,0,0.2);
    border-radius: 6px;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-top: 5px;
}
.word-counter span {
    color: var(--metallic-gold);
    font-weight: 600;
}

/* Confidence Indicator */
.confidence-panel {
    padding: 15px;
    background: rgba(28,33,40,0.9);
    border-radius: 12px;
    border: 1px solid rgba(212,175,55,0.15);
    text-align: center;
}
.confidence-panel h4 {
    font-size: 0.65rem;
    color: var(--metallic-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.confidence-meter {
    display: flex;
    gap: 3px;
    justify-content: center;
    margin-bottom: 8px;
}
.confidence-bar {
    width: 12px;
    height: 8px;
    border-radius: 2px;
    background: rgba(255,255,255,0.1);
    transition: background 0.5s ease;
}
.confidence-bar.filled {
    background: linear-gradient(180deg, #D4AF37, #C9A44C);
}
.confidence-label {
    font-size: 0.7rem;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.quick-action-btn {
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid rgba(212,175,55,0.2);
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.65rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}
.quick-action-btn:hover {
    border-color: var(--metallic-gold);
    color: var(--metallic-gold);
    background: rgba(212,175,55,0.05);
}

/* Auto-save indicator */
.autosave-indicator {
    font-size: 0.6rem;
    color: #4CAF50;
    letter-spacing: 1px;
    text-align: right;
    margin-top: 4px;
    opacity: 0;
    transition: opacity 0.3s;
}
.autosave-indicator.show {
    opacity: 1;
}

/* =============================================
   GLASSMORPHISM BASE
   ============================================= */
.glass {
    background: rgba(31, 31, 31, 0.55);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: var(--radius-lg);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    transition: all var(--transition-smooth);
}

/* Glass highlight line */
.glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(212, 175, 55, 0.3),
        rgba(255, 255, 255, 0.05),
        rgba(212, 175, 55, 0.3),
        transparent
    );
    opacity: 0.6;
}

.glass:hover {
    border-color: rgba(212, 175, 55, 0.25);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 60px rgba(212, 175, 55, 0.05);
}

/* =============================================
   LOGO
   ============================================= */
.logo-gold {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--metallic-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.logo-gold span {
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 6px;
    opacity: 0.9;
}

/* Logo underline glow */
.logo-gold::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold-gradient);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

/* =============================================
   PREMIUM BUTTONS
   ============================================= */
.gold-btn {
    background: var(--gold-gradient);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 45px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: #1a1a1a;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: 
        0 4px 15px rgba(212, 175, 55, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Shimmer effect */
.gold-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gold-shimmer);
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(0deg); }
    100% { transform: translateX(100%) rotate(0deg); }
}

.gold-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 35px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.gold-btn:active:not(:disabled) {
    transform: translateY(-1px);
}

.gold-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    filter: grayscale(60%);
}

/* Secondary Outline Button */
.secondary-btn {
    background: transparent;
    border: 2px solid rgba(212, 175, 55, 0.5);
    padding: 14px 42px;
    border-radius: var(--radius-xs);
    font-weight: 600;
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--metallic-gold);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.secondary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(212, 175, 55, 0.08);
    transition: left var(--transition-smooth);
}

.secondary-btn:hover {
    border-color: var(--metallic-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.secondary-btn:hover::before {
    left: 0;
}

/* =============================================
   PREMIUM INPUT FIELDS
   ============================================= */
.luxury-input,
.chat-input {
    width: 100%;
    padding: 16px 22px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-primary);
    font-size: 0.9rem;
    font-family: var(--font-body);
    outline: none;
    transition: all var(--transition-smooth);
    letter-spacing: 1px;
}

.luxury-input:focus,
.chat-input:focus {
    border-color: var(--metallic-gold);
    box-shadow: 
        0 0 0 4px rgba(212, 175, 55, 0.05),
        0 0 30px rgba(212, 175, 55, 0.1),
        inset 0 0 30px rgba(212, 175, 55, 0.03);
    background: rgba(255, 255, 255, 0.04);
}

.luxury-input::placeholder,
.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    letter-spacing: 2px;
    font-weight: 300;
    font-size: 0.8rem;
}

/* =============================================
   LOGIN PAGE
   ============================================= */
.login-body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

/* Login page special lighting */
.login-body::before {
    content: '';
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle at center,
        rgba(212, 175, 55, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
    animation: loginGlow 6s ease-in-out infinite;
}

@keyframes loginGlow {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.login-container {
    padding: 60px 55px;
    width: 100%;
    max-width: 530px;
    text-align: center;
    animation: cardReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

@keyframes cardReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.brand-section {
    margin-bottom: 45px;
}

.logo-icon {
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Gold decorative lines around logo */
.logo-icon::before,
.logo-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--gold-gradient);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

.logo-icon::before { right: 100%; margin-right: 20px; }
.logo-icon::after { left: 100%; margin-left: 20px; }

.tagline {
    font-size: 0.7rem;
    color: var(--metallic-gold);
    margin-top: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.8;
}

.form-section h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 2px;
}

.subtitle {
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-size: 0.85rem;
    line-height: 1.7;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.input-group {
    position: relative;
    margin-bottom: 25px;
}

.input-icon {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    opacity: 0.4;
    transition: opacity var(--transition-fast);
}

.luxury-input:focus ~ .input-icon {
    opacity: 0.8;
}

.error-msg {
    color: #d4534a;
    margin-top: 15px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    display: none;
    padding: 12px 15px;
    background: rgba(212, 83, 74, 0.08);
    border-left: 2px solid #d4534a;
    border-radius: var(--radius-xs);
    text-align: left;
}

.footer-info {
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 2px;
}

.small-text {
    margin-top: 8px;
    font-size: 0.62rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--metallic-gold);
    opacity: 0.6;
}

/* =============================================
   HEADER NAVIGATION
   ============================================= */
.header-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 35px;
    margin-bottom: 35px;
    background: rgba(21, 21, 21, 0.75);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    position: sticky;
    top: 15px;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: navSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes navSlideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.welcome-text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-xs);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    font-family: var(--font-display);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

/* =============================================
   CONTAINER
   ============================================= */
.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 25px;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
    text-align: center;
    margin-bottom: 55px;
    position: relative;
    animation: fadeSlideUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 25px auto 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 200;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 1.5px;
}

/* =============================================
   DASHBOARD PROJECT CARDS
   ============================================= */
.card-row {
    display: flex;
    gap: 35px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.project-card {
    flex: 1 1 440px;
    max-width: 520px;
    padding: 50px 45px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-luxury);
    position: relative;
    overflow: hidden;
    animation: cardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:nth-child(2) {
    animation-delay: 0.2s;
}

/* Card top accent line */
.project-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 2px;
    background: var(--gold-gradient);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transition: width var(--transition-smooth);
}

.project-card:hover {
    transform: translateY(-12px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(212, 175, 55, 0.1);
}

.project-card:hover::after {
    width: 90%;
}

.card-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gold-gradient);
    color: #1a1a1a;
    padding: 6px 18px;
    border-radius: var(--radius-xs);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.badge-online {
    background: linear-gradient(135deg, #4a7c59, #3d6b4a);
    color: var(--white);
}

.card-icon-wrapper {
    margin-bottom: 28px;
    width: 90px;
    height: 90px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.05);
    border-radius: var(--radius-xs);
    border: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    transition: all var(--transition-smooth);
}

.card-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(212, 175, 55, 0.1);
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.project-card:hover .card-icon-wrapper::before {
    opacity: 1;
}

.card-icon {
    font-size: 2.8rem;
    transition: transform var(--transition-smooth);
}

.project-card:hover .card-icon {
    transform: scale(1.1);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.9rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 300;
    letter-spacing: 3px;
}

.card-desc {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.countries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 28px;
}

.country-tag {
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 7px 16px;
    border-radius: var(--radius-xs);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.country-tag:hover {
    border-color: var(--metallic-gold);
    background: rgba(212, 175, 55, 0.12);
    color: var(--metallic-gold);
}

.features-list {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
    padding: 0 5px;
}

.features-list li {
    padding: 9px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.features-list li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--metallic-gold);
    font-size: 0.45rem;
    top: 14px;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.card-price {
    margin-bottom: 28px;
    padding: 18px;
    background: rgba(212, 175, 55, 0.03);
    border-radius: var(--radius-xs);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--metallic-gold);
    font-family: var(--font-display);
    letter-spacing: 2px;
}

.price-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 500;
}

.card-btn {
    width: 100%;
}

/* =============================================
   PROGRESS STEPS
   ============================================= */
.progress-steps {
    display: flex;
    align-items: center;
    gap: 0;
}

.step {
    width: 34px;
    height: 34px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(212, 175, 55, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(31, 31, 31, 0.8);
    transition: all var(--transition-smooth);
    position: relative;
}

.step.completed {
    background: var(--gold-gradient);
    border-color: var(--metallic-gold);
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.step.active {
    border-color: var(--metallic-gold);
    color: var(--metallic-gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.25);
    animation: stepPulse 2s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.4); }
}

.step-line {
    width: 28px;
    height: 1px;
    background: rgba(212, 175, 55, 0.15);
}

.step-line.completed {
    background: var(--metallic-gold);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

/* =============================================
   TASKS PAGE
   ============================================= */
.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
    margin-bottom: 45px;
}

.task-card {
    padding: 28px 32px;
    display: flex;
    align-items: center;
    gap: 22px;
    animation: cardReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    border-left: 3px solid var(--metallic-gold);
    transition: all var(--transition-smooth);
}

.task-card:nth-child(1) { animation-delay: 0s; }
.task-card:nth-child(2) { animation-delay: 0.1s; }
.task-card:nth-child(3) { animation-delay: 0.2s; }
.task-card:nth-child(4) { animation-delay: 0.3s; }

.task-card:hover {
    border-left-color: var(--champagne-gold);
    box-shadow: var(--shadow-gold-hover);
    transform: translateX(5px);
}

.task-icon {
    font-size: 1.8rem;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.06);
    border-radius: var(--radius-xs);
    flex-shrink: 0;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.task-info {
    flex: 1;
}

.task-name {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    color: var(--text-primary);
}

.task-price {
    font-weight: 700;
    color: var(--metallic-gold);
    font-size: 1.2rem;
    font-family: var(--font-display);
    letter-spacing: 1px;
}

/* Acceptance Box */
.acceptance-box {
    padding: 45px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    animation: cardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation-delay: 0.4s;
    animation-fill-mode: both;
}

.acceptance-content h3 {
    margin-bottom: 15px;
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--metallic-gold);
    text-transform: uppercase;
}

.acceptance-content p {
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.9rem;
}

.total-section {
    margin: 32px 0;
    padding: 28px;
    background: rgba(212, 175, 55, 0.04);
    border-radius: var(--radius-xs);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.total-label {
    display: block;
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.total-amount {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--metallic-gold);
    font-family: var(--font-display);
    letter-spacing: 3px;
}

.checkbox-group {
    margin-bottom: 28px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1px;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--metallic-gold);
    cursor: pointer;
}

/* =============================================
   INTERVIEW PAGE
   ============================================= */
.interview-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 25px;
    height: calc(100vh - 130px);
    animation: cardReveal 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Video Panel */
.video-section {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.video-placeholder {
    text-align: center;
    padding: 40px 25px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: var(--radius-sm);
    border: 1px dashed rgba(212, 175, 55, 0.2);
    position: relative;
    overflow: hidden;
}

/* Camera lens glow */
.video-placeholder::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.03);
    animation: lensGlow 3s ease-in-out infinite;
}

@keyframes lensGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(212, 175, 55, 0.1); }
    50% { box-shadow: 0 0 40px rgba(212, 175, 55, 0.2); }
}

.video-icon {
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.video-status {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.video-btn {
    background: var(--gold-gradient);
    color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: var(--radius-xs);
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
    opacity: 0.7;
}

.coming-soon-tag {
    display: block;
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 6px;
    opacity: 0.6;
}

.video-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 18px;
    position: relative;
    z-index: 1;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Upload */
.upload-section {
    text-align: center;
}

.upload-label {
    display: block;
    padding: 20px;
    border: 1px dashed rgba(212, 175, 55, 0.25);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all var(--transition-smooth);
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 2px;
    background: rgba(212, 175, 55, 0.02);
}

.upload-label:hover {
    border-color: var(--metallic-gold);
    background: rgba(212, 175, 55, 0.06);
    color: var(--metallic-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

.upload-status {
    display: block;
    margin-top: 12px;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

/* Chat Panel */
.chat-section {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    padding: 20px 28px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.2);
}

.ai-avatar {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-xs);
    background: var(--gold-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.2rem;
    font-family: var(--font-display);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.ai-info strong {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.online-dot {
    color: #4a9e5c;
    font-size: 0.55rem;
    margin-left: 8px;
    letter-spacing: 3px;
    animation: onlinePulse 2s ease-in-out infinite;
}

@keyframes onlinePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    background: rgba(0, 0, 0, 0.12);
}

.chat-messages::-webkit-scrollbar {
    width: 3px;
}
.chat-messages::-webkit-scrollbar-track {
    background: transparent;
}
.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
}

.message {
    display: flex;
    flex-direction: column;
    max-width: 72%;
    animation: messageSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.ai-message {
    align-self: flex-start;
}

.user-message {
    align-self: flex-end;
}

.message-content {
    padding: 15px 22px;
    border-radius: var(--radius-xs);
    line-height: 1.7;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.ai-message .message-content {
    background: rgba(26, 39, 68, 0.5);
    border-left: 3px solid var(--metallic-gold);
    color: var(--text-primary);
}

.user-message .message-content {
    background: rgba(212, 175, 55, 0.12);
    border-right: 3px solid var(--metallic-gold);
    color: var(--text-primary);
}

.message-time {
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 6px;
    padding: 0 8px;
    letter-spacing: 1.5px;
}

/* Chat Input */
.chat-input-area {
    padding: 20px 28px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    background: rgba(0, 0, 0, 0.2);
}

.input-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.send-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xs);
    background: var(--gold-gradient);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    transition: all var(--transition-smooth);
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.send-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.typing-hint {
    font-size: 0.62rem;
    color: var(--text-muted);
    margin-top: 10px;
    text-align: center;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Typing Indicator */
.typing-dots {
    display: flex;
    gap: 5px;
    padding: 10px 0;
}

.typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--metallic-gold);
    animation: typingBounce 1.4s infinite;
}

.typing-dots span:nth-child(2) { animation-delay: 0.2s; }
.typing-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-10px); opacity: 1; }
}

/* =============================================
   COMPLETION OVERLAY
   ============================================= */
.completion-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.completion-card {
    padding: 55px 45px;
    text-align: center;
    max-width: 500px;
    animation: scaleIn 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes scaleIn {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.completion-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    animation: successBounce 0.6s ease 0.3s both;
}

@keyframes successBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.completion-card h2 {
    font-family: var(--font-display);
    color: var(--metallic-gold);
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.completion-stats {
    display: flex;
    gap: 35px;
    justify-content: center;
    margin: 35px 0;
}

.stat-value {
    display: block;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--metallic-gold);
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* =============================================
   COMPLETION PAGE
   ============================================= */
.completion-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

.completion-main-card {
    max-width: 680px;
    width: 100%;
    padding: 55px 50px;
    text-align: center;
    animation: cardReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.success-header {
    margin-bottom: 40px;
}

.success-circle {
    margin-bottom: 25px;
    display: inline-block;
    position: relative;
}

.success-circle::after {
    content: '';
    display: block;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 18px auto 0;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.success-header h2 {
    font-family: var(--font-display);
    color: var(--metallic-gold);
    font-size: 1.7rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.congrats-text {
    color: var(--text-secondary);
    font-weight: 300;
    letter-spacing: 1.5px;
}

/* Receipt */
.receipt-section {
    padding: 35px;
    margin-bottom: 30px;
    text-align: left;
    background: rgba(212, 175, 55, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.12);
}

.receipt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.receipt-label {
    font-size: 0.68rem;
    letter-spacing: 5px;
    color: var(--metallic-gold);
    font-weight: 700;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.receipt-key {
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.receipt-value {
    font-weight: 500;
    font-size: 0.9rem;
}

.receipt-id {
    font-family: 'JetBrains Mono', monospace;
    color: var(--metallic-gold);
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.status-completed {
    color: #4a9e5c;
    font-weight: 600;
}

/* Next Steps */
.next-steps {
    padding: 35px;
    margin-bottom: 30px;
    text-align: center;
}

.next-steps h3 {
    font-family: var(--font-display);
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: 3px;
    color: var(--metallic-gold);
}

.email-instruction {
    margin: 28px 0;
}

.highlight-text {
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 18px;
    font-size: 1rem;
    letter-spacing: 1px;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--metallic-gold);
    font-size: 1.15rem;
    font-weight: 600;
    text-decoration: none;
    padding: 18px 35px;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: var(--radius-xs);
    transition: all var(--transition-smooth);
    letter-spacing: 2px;
}

.email-link:hover {
    border-color: var(--metallic-gold);
    background: rgba(212, 175, 55, 0.08);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.reminder-box {
    background: rgba(212, 175, 55, 0.04);
    padding: 22px;
    border-radius: var(--radius-xs);
    margin-top: 28px;
    font-size: 0.85rem;
    line-height: 1.8;
    border-left: 3px solid var(--metallic-gold);
    text-align: left;
}

.reminder-box strong {
    color: var(--metallic-gold);
    letter-spacing: 1px;
}

/* Trust Badges */
.trust-section {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.trust-badge {
    padding: 12px 24px;
    border-radius: var(--radius-xs);
    border: 1px solid rgba(212, 175, 55, 0.15);
    font-size: 0.78rem;
    letter-spacing: 2px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.01);
    transition: all var(--transition-fast);
}

.trust-badge:hover {
    border-color: var(--metallic-gold);
    background: rgba(212, 175, 55, 0.05);
}

.brand-footer {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 2.2;
    letter-spacing: 1.5px;
    padding-top: 22px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.regions {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--metallic-gold);
    opacity: 0.6;
}

/* Interview Timer */
.interview-timer {
    font-size: 1rem;
    font-weight: 600;
    color: var(--metallic-gold);
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 2px;
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1024px) {
    .interview-layout {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .video-section {
        flex-direction: row;
        gap: 20px;
    }
    
    .video-placeholder,
    .upload-section {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .card-row {
        flex-direction: column;
        align-items: center;
    }
    
    .project-card {
        max-width: 100%;
        padding: 35px 28px;
    }
    
    .tasks-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .login-container {
        padding: 40px 28px;
    }
    
    .completion-main-card {
        padding: 35px 25px;
    }
    
    .header-nav {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        padding: 12px 20px;
    }
    
    .trust-section {
        flex-direction: column;
        align-items: center;
    }
    
    .video-section {
        flex-direction: column;
    }
    
    .completion-stats {
        flex-direction: column;
        gap: 20px;
    }
}