/* ========================================================
   VURA GROUP LTD — Skills Intelligence Platform
   Brand Colors extracted from logo:
   Navy: #0a2540 | Blue: #0077b6 | Cyan: #00b4d8 | Sky: #48cae4
   ======================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Sora:wght@300;400;500;600;700;800&display=swap');

:root {
    --navy: #0a2540;
    --navy-light: #0f3460;
    --blue: #0077b6;
    --cyan: #00b4d8;
    --sky: #48cae4;
    --sky-light: #90e0ef;
    --ice: #caf0f8;
    --white: #ffffff;
    --off-white: #f7f9fc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --green: #059669;
    --green-light: #d1fae5;
    --amber: #d97706;
    --amber-light: #fef3c7;
    --red: #dc2626;
    --red-light: #fee2e2;
    --shadow-sm: 0 1px 2px rgba(10,37,64,0.05);
    --shadow: 0 4px 6px -1px rgba(10,37,64,0.08), 0 2px 4px -2px rgba(10,37,64,0.05);
    --shadow-md: 0 10px 15px -3px rgba(10,37,64,0.08), 0 4px 6px -4px rgba(10,37,64,0.05);
    --shadow-lg: 0 20px 25px -5px rgba(10,37,64,0.1), 0 8px 10px -6px rgba(10,37,64,0.05);
    --shadow-xl: 0 25px 50px -12px rgba(10,37,64,0.2);
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--gray-800);
    background: var(--off-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
}

a { color: var(--blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--cyan); }

img { max-width: 100%; height: auto; }

/* === UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-1 { margin-top: 8px; } .mt-2 { margin-top: 16px; } .mt-3 { margin-top: 24px; } .mt-4 { margin-top: 32px; } .mt-5 { margin-top: 48px; }
.mb-1 { margin-bottom: 8px; } .mb-2 { margin-bottom: 16px; } .mb-3 { margin-bottom: 24px; } .mb-4 { margin-bottom: 32px; }

/* === NAVBAR === */
.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(10,37,64,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0 24px;
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--navy);
}

.navbar-brand img { height: 40px; width: auto; }

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.navbar-nav a {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
}

.navbar-nav a:hover {
    color: var(--blue);
    background: var(--ice);
}

.navbar-nav .nav-btn {
    background: var(--navy);
    color: var(--white);
    padding: 10px 24px;
    border-radius: var(--radius);
    font-weight: 600;
}

.navbar-nav .nav-btn:hover {
    background: var(--blue);
    color: var(--white);
    transform: translateY(-1px);
}

.navbar-nav .nav-btn-outline {
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 8px 22px;
    border-radius: var(--radius);
    font-weight: 600;
}

.navbar-nav .nav-btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
    padding: 8px;
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }
    .navbar-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        border-bottom: 1px solid var(--gray-200);
        box-shadow: var(--shadow-md);
    }
    .navbar-nav.active { display: flex; }
    .navbar-nav a { padding: 12px 16px; width: 100%; }
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 40%, var(--blue) 100%);
    padding: 100px 24px 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.15) 0%, transparent 70%);
    animation: pulse-glow 6s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72,202,228,0.1) 0%, transparent 70%);
    animation: pulse-glow 8s ease-in-out infinite reverse;
}

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

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

@media (max-width: 768px) {
    .hero { padding: 60px 24px 80px; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
}

.hero h1 {
    font-size: 3.2rem;
    color: var(--white);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--cyan), var(--sky-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    line-height: 1.7;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { justify-content: center; }
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius-xl);
    padding: 40px;
    width: 100%;
    max-width: 420px;
}

.hero-card .badge-demo {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

.badge-pill {
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: 'Sora', sans-serif;
    letter-spacing: 0.03em;
}

.badge-pill.green { background: var(--green); color: var(--white); }
.badge-pill.amber { background: var(--amber); color: var(--white); }
.badge-pill.red { background: var(--red); color: var(--white); }

.hero-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,119,182,0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,119,182,0.4);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--navy);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--blue);
    color: var(--blue);
}

.btn-outline:hover {
    background: var(--blue);
    color: var(--white);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.4);
    color: var(--white);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    color: var(--white);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
}

.btn-navy:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    color: var(--white);
}

.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: #047857; color: var(--white); transform: translateY(-2px); }

.btn-amber { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: #b45309; color: var(--white); transform: translateY(-2px); }

.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #b91c1c; color: var(--white); transform: translateY(-2px); }

.btn-ghost {
    background: transparent;
    color: var(--gray-600);
    padding: 10px 16px;
}

.btn-ghost:hover { background: var(--gray-100); color: var(--navy); }

/* === SECTIONS === */
.section {
    padding: 80px 24px;
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.7); }

.section-title {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 48px;
}

/* === FEATURE CARDS === */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--sky-light);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--ice), rgba(0,180,216,0.1));
    color: var(--blue);
}

.feature-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature-card p { color: var(--gray-500); font-size: 0.95rem; }

/* === STATS === */
.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 48px auto 0;
}

.stat-item { text-align: center; }

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--cyan), var(--sky-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* === PROCESS STEPS === */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
    counter-reset: step;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
    counter-increment: step;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ice);
    display: block;
    margin-bottom: 16px;
    line-height: 1;
}

.process-step h3 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { color: var(--gray-500); font-size: 0.9rem; }

/* === FORMS === */
.form-group { margin-bottom: 20px; }

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
    margin-bottom: 6px;
    font-family: 'Sora', sans-serif;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 4px rgba(0,180,216,0.1);
}

.form-input::placeholder { color: var(--gray-400); }

select.form-input { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }

textarea.form-input { resize: vertical; min-height: 80px; }

.form-checkbox { width: auto; margin-right: 8px; }

.form-error { color: var(--red); font-size: 0.85rem; margin-top: 4px; }

/* Form errors from Django */
.errorlist {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
}

.errorlist li {
    color: var(--red);
    font-size: 0.85rem;
    padding: 4px 0;
}

/* === AUTH PAGES === */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    position: relative;
}

.auth-page::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,180,216,0.08) 0%, transparent 70%);
}

.auth-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 2;
}

.auth-card .logo-area {
    text-align: center;
    margin-bottom: 32px;
}

.auth-card .logo-area img { height: 48px; }

.auth-card .logo-area h2 {
    font-size: 1.5rem;
    margin-top: 16px;
    margin-bottom: 6px;
}

.auth-card .logo-area p {
    color: var(--gray-500);
    font-size: 0.95rem;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 24px 0;
    color: var(--gray-400);
    font-size: 0.85rem;
}

.auth-divider::before, .auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-200);
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    font-size: 0.9rem;
    color: var(--gray-500);
}

.auth-footer a { font-weight: 600; color: var(--blue); }

/* === DASHBOARD LAYOUT === */
.dashboard-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 72px);
}

@media (max-width: 1024px) {
    .dashboard-layout { grid-template-columns: 1fr; }
}

/* Sidebar */
.sidebar {
    background: var(--navy);
    padding: 32px 0;
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    overflow-y: auto;
}

@media (max-width: 1024px) {
    .sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        z-index: 2000;
        transition: var(--transition);
        padding-top: 80px;
    }
    .sidebar.active { left: 0; }
    .sidebar-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1999;
    }
    .sidebar-overlay.active { display: block; }
}

.sidebar-header {
    padding: 0 24px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 16px;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
}

.sidebar-user-info h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
}

.sidebar-user-info span {
    color: rgba(255,255,255,0.5);
    font-size: 0.8rem;
}

.sidebar-nav { padding: 0 12px; }

.sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 2px;
}

.sidebar-nav a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.sidebar-nav a.active {
    color: var(--white);
    background: rgba(0,180,216,0.15);
    border-left: 3px solid var(--cyan);
}

.sidebar-nav .nav-icon { font-size: 1.1rem; width: 20px; text-align: center; }

.sidebar-section-title {
    color: rgba(255,255,255,0.3);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 20px 16px 8px;
    font-family: 'Sora', sans-serif;
}

/* Dashboard Main */
.dashboard-main {
    padding: 32px;
    background: var(--off-white);
}

@media (max-width: 768px) {
    .dashboard-main { padding: 20px 16px; }
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    flex-wrap: wrap;
    gap: 16px;
}

.dashboard-header h1 {
    font-size: 1.8rem;
    letter-spacing: -0.02em;
}

.dashboard-header p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-top: 4px;
}

/* Mobile sidebar toggle */
.sidebar-toggle {
    display: none;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    cursor: pointer;
    font-size: 1.2rem;
}

@media (max-width: 1024px) {
    .sidebar-toggle { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; }
}

/* === STAT CARDS === */
.stat-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.stat-card:hover { box-shadow: var(--shadow-md); }

.stat-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.stat-card-icon.blue { background: var(--ice); color: var(--blue); }
.stat-card-icon.green { background: var(--green-light); color: var(--green); }
.stat-card-icon.amber { background: var(--amber-light); color: var(--amber); }
.stat-card-icon.red { background: var(--red-light); color: var(--red); }

.stat-card h3 {
    font-size: 2rem;
    margin-bottom: 4px;
    font-weight: 800;
}

.stat-card p { color: var(--gray-500); font-size: 0.85rem; }

/* === CONTENT CARDS === */
.card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.card-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card-header h3 { font-size: 1.1rem; }

.card-body { padding: 24px; }

/* === BADGE DISPLAY === */
.readiness-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-green { background: var(--green-light); color: var(--green); border: 2px solid var(--green); }
.badge-amber { background: var(--amber-light); color: var(--amber); border: 2px solid var(--amber); }
.badge-red { background: var(--red-light); color: var(--red); border: 2px solid var(--red); }
.badge-none { background: var(--gray-100); color: var(--gray-500); border: 2px solid var(--gray-300); }

/* Large badge for results */
.badge-large {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.badge-large.result-green { background: linear-gradient(135deg, var(--green), #047857); color: var(--white); }
.badge-large.result-amber { background: linear-gradient(135deg, var(--amber), #b45309); color: var(--white); }
.badge-large.result-red { background: linear-gradient(135deg, var(--red), #b91c1c); color: var(--white); }

.badge-large .score {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    line-height: 1;
}

.badge-large .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
    opacity: 0.9;
}

/* === RESULT ACTIONS === */
.result-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* === TABLE === */
.table-wrapper { overflow-x: auto; }

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    border-bottom: 2px solid var(--gray-200);
    font-family: 'Sora', sans-serif;
}

.data-table td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-100);
    font-size: 0.9rem;
}

.data-table tbody tr:hover { background: var(--gray-50); }

/* === STATUS TAGS === */
.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}

.status-tag.published { background: var(--green-light); color: var(--green); }
.status-tag.pending { background: var(--amber-light); color: var(--amber); }
.status-tag.closed { background: var(--gray-100); color: var(--gray-500); }
.status-tag.draft { background: var(--ice); color: var(--blue); }
.status-tag.paid { background: var(--green-light); color: var(--green); }
.status-tag.denied { background: var(--red-light); color: var(--red); }
.status-tag.approved { background: var(--green-light); color: var(--green); }

/* === TALENT CARD === */
.talent-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.talent-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    padding: 24px;
    transition: var(--transition);
}

.talent-card:hover { box-shadow: var(--shadow-md); border-color: var(--sky-light); }

.talent-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.talent-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ice), var(--sky-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--blue);
    font-family: 'Sora', sans-serif;
}

.talent-info h4 { font-size: 1rem; margin-bottom: 2px; }
.talent-info p { color: var(--gray-500); font-size: 0.85rem; }

.talent-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 12px 0;
}

.skill-tag {
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
}

.talent-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-100);
}

/* === INDUSTRY SELECTOR === */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.industry-option {
    position: relative;
}

.industry-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.industry-option label {
    display: block;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
}

.industry-option label:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.industry-option input:checked + label {
    border-color: var(--blue);
    background: var(--ice);
    box-shadow: 0 0 0 4px rgba(0,119,182,0.1);
}

.industry-option .industry-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
    display: block;
}

.industry-option .industry-name {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

/* === FILTER BAR === */
.filter-bar {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-bar .form-input {
    max-width: 200px;
    padding: 10px 14px;
    font-size: 0.88rem;
}

/* === ASSESSMENT === */
.question-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid var(--gray-200);
}

.question-card .q-number {
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.question-card .q-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 16px;
}

.option-list { list-style: none; }

.option-item {
    margin-bottom: 8px;
}

.option-item label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
}

.option-item label:hover {
    border-color: var(--cyan);
    background: var(--ice);
}

.option-item input[type="radio"] { accent-color: var(--blue); }

.option-item input:checked + span {
    color: var(--blue);
    font-weight: 600;
}

/* === EMPTY STATE === */
.empty-state {
    text-align: center;
    padding: 60px 24px;
}

.empty-state .empty-icon { font-size: 3rem; margin-bottom: 16px; opacity: 0.3; }
.empty-state h3 { color: var(--gray-600); margin-bottom: 8px; }
.empty-state p { color: var(--gray-400); font-size: 0.95rem; margin-bottom: 24px; }

/* === MESSAGES/ALERTS === */
.messages {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.alert {
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideDown 0.3s ease;
}

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

.alert-success { background: var(--green-light); color: #065f46; border-left: 4px solid var(--green); }
.alert-error { background: var(--red-light); color: #991b1b; border-left: 4px solid var(--red); }
.alert-warning { background: var(--amber-light); color: #92400e; border-left: 4px solid var(--amber); }
.alert-info { background: var(--ice); color: var(--blue); border-left: 4px solid var(--cyan); }

/* === FOOTER === */
.footer {
    background: var(--navy);
    color: rgba(255,255,255,0.7);
    padding: 60px 24px 30px;
    margin-top: auto;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}

.footer-brand img { height: 36px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; }

.footer h4 {
    color: var(--white);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    font-family: 'Sora', sans-serif;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* === ANIMATIONS === */
.fade-in {
    animation: fadeIn 0.6s ease;
}

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

.slide-up {
    animation: slideUp 0.5s ease forwards;
}

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

/* === ITEM LIST (for skills, tools, etc.) === */
.item-list { list-style: none; }

.item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}

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

.item-row .item-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.item-row .item-info p { color: var(--gray-500); font-size: 0.83rem; }

.item-row .item-actions { display: flex; gap: 8px; }

.btn-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    background: var(--white);
    color: var(--gray-500);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
}

.btn-icon:hover { border-color: var(--red); color: var(--red); }

/* === PERMISSION REQUEST CARD === */
.perm-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    padding: 20px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.perm-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.perm-info p { color: var(--gray-500); font-size: 0.85rem; }

.perm-actions { display: flex; gap: 8px; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* === COACHING FORM === */
.coaching-card {
    background: linear-gradient(135deg, var(--ice), var(--white));
    border: 2px solid var(--sky-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.coaching-card .coaching-icon { font-size: 3rem; margin-bottom: 16px; }
.coaching-card h2 { margin-bottom: 12px; }
.coaching-card p { color: var(--gray-500); margin-bottom: 24px; }
