/* =============================================
   Jelle CV Portal - Styles
   Brand colors from jelle.com
   Modern Next.js-inspired design
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --color-gradient-1: linear-gradient(256deg, #FDA52B 23.34%, #FD7F4C 85.1%);
    --color-gradient-2: linear-gradient(256deg, #A8ED81 9.15%, #4DD0E1 85.21%);

    --color-coral: #FD7F4C;
    --color-coral-dark: #E36E3F;
    --color-coral-deep: #9A2112;
    --color-sunburst: #FDA52B;
    --color-sunburst-dark: #E38D20;
    --color-fresh-breeze: #4DD0E1;
    --color-fresh-breeze-dark: #1B8194;
    --color-spring-field: #A8ED81;
    --color-spring-field-dark: #6CBA55;
    --color-dark-green: #022C22;

    --color-primary: #FD7F4C;
    --color-primary-dark: #E36E3F;
    --color-primary-light: rgba(253, 127, 76, 0.08);
    --color-primary-glow: rgba(253, 127, 76, 0.2);

    --color-accent: #4DD0E1;
    --color-accent-dark: #1B8194;
    --color-accent-light: rgba(77, 208, 225, 0.08);

    --color-bg: #F9F9F9;
    --color-bg-white: #FFFFFF;
    --color-bg-card: #FFFFFF;
    --color-bg-dark: #022C22;
    --color-bg-dark-lighter: #0a3d30;

    --color-text: #292929;
    --color-text-secondary: #525252;
    --color-text-muted: #989898;
    --color-text-white: #FFFFFF;

    --color-border: #DCDCDC;
    --color-border-light: #EFEFEF;

    --color-danger: #EF4444;
    --color-warning: #FDA52B;
    --color-success: #6CBA55;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.06), 0 2px 4px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.03);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);
    --shadow-glow-coral: 0 0 60px -12px rgba(253, 127, 76, 0.25);
    --shadow-glow-breeze: 0 0 60px -12px rgba(77, 208, 225, 0.2);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;

    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition-fast: 150ms var(--ease-out-expo);
    --transition-normal: 300ms var(--ease-out-expo);
    --transition-slow: 500ms var(--ease-out-expo);
    --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}
/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

.hidden { display: none !important; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow { max-width: 800px; }

.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
    animation: pageEnter 0.6s var(--ease-out-expo) both;
}

@keyframes pageEnter {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.96) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -20px) rotate(2deg); }
    50% { transform: translate(-10px, -35px) rotate(-1deg); }
    75% { transform: translate(20px, -15px) rotate(1.5deg); }
}
@keyframes morphBlob {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 60% 30% 60% / 30% 40% 70% 60%; }
    75% { border-radius: 60% 30% 60% 40% / 70% 50% 40% 60%; }
}
@keyframes spin {
    to { transform: rotate(360deg); }
}
@keyframes toastIn {
    from { opacity: 0; transform: translateX(40px) scale(0.96); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}
/* ---------- Loading Overlay ---------- */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(249, 249, 249, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--color-border-light);
    border-top-color: var(--color-coral);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

/* ---------- Toast ---------- */
.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.toast {
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.4s var(--ease-out-expo);
    max-width: 400px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.95);
}
.toast.toast-error { border-left: 4px solid var(--color-danger); }
.toast.toast-success { border-left: 4px solid var(--color-success); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-family);
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-normal);
    text-decoration: none;
    line-height: 1;
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,0.15));
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: -1;
}
.btn:hover::before { opacity: 1; }
.btn-primary {
    background: var(--color-gradient-1);
    color: var(--color-text-white);
    box-shadow: 0 2px 12px rgba(253, 127, 76, 0.3);
}
.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(253, 127, 76, 0.4);
    transform: translateY(-2px);
}
.btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(253, 127, 76, 0.3);
}
.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1.5px solid var(--color-border);
}
.btn-outline:hover {
    border-color: var(--color-coral);
    color: var(--color-coral);
    background: var(--color-primary-light);
}
.btn-ghost {
    background: transparent;
    color: var(--color-text-secondary);
}
.btn-ghost:hover {
    background: var(--color-border-light);
    color: var(--color-text);
}
.btn-link {
    background: none;
    border: none;
    color: var(--color-coral);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 0;
    font-family: var(--font-family);
    transition: color var(--transition-fast);
}
.btn-link:hover {
    color: var(--color-coral-dark);
    text-decoration: underline;
}
.btn-full { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 13px; }
.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }
/* ---------- LOGIN PAGE ---------- */
.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #FFFFFF 0%, #E8F8FB 40%, #D0F0F6 70%, #B8E8F0 100%);
}
.login-container::before {
    content: '';
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse at 80% 20%, rgba(77, 208, 225, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 20% 80%, rgba(77, 208, 225, 0.08) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
    z-index: 0;
}
.login-card {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 48px 40px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
    animation: scaleIn 0.7s var(--ease-out-expo);
}
.login-header {
    text-align: center;
    margin-bottom: 36px;
}
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.logo-img {
    height: 48px;
    width: auto;
    display: block;
}
.logo-img-small {
    height: 28px;
    width: auto;
    display: block;
}
.logo-sub {
    font-size: 13px;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-top: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}
.login-step { display: none; }
.login-step.active {
    display: block;
    animation: fadeIn 0.4s var(--ease-out-expo);
}
.login-step h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 8px;
}
.login-subtitle {
    color: var(--color-text-secondary);
    font-size: 15px;
    margin-bottom: 28px;
    line-height: 1.5;
}
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
}
.form-group input[type="email"],
.form-group input[type="text"] {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: var(--font-family);
    color: var(--color-text);
    transition: all var(--transition-normal);
    background: var(--color-bg);
}
.form-group input::placeholder { color: var(--color-text-muted); }
.form-group input:focus {
    outline: none;
    border-color: var(--color-fresh-breeze);
    box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.15);
    background: #FFFFFF;
}
/* Code Input */
.code-inputs {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 4px;
}
.code-input {
    width: 52px;
    height: 62px;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    font-family: var(--font-family);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    transition: all var(--transition-normal);
    background: var(--color-bg);
}
.code-input:focus {
    outline: none;
    border-color: var(--color-fresh-breeze);
    box-shadow: 0 0 0 3px rgba(77, 208, 225, 0.15);
    background: #FFFFFF;
}
.code-input.filled {
    border-color: var(--color-fresh-breeze);
    background: rgba(77, 208, 225, 0.08);
}
.login-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border-light);
}
.login-footer p { font-size: 12px; color: var(--color-text-muted); }
.login-footer .btn-link { color: var(--color-fresh-breeze); }
.login-footer .btn-link:hover { color: var(--color-coral); }

/* Background blobs */
.login-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
.bg-shape {
    position: absolute;
    opacity: 0.08;
    filter: blur(80px);
    will-change: transform;
}
.bg-shape-1 {
    width: 600px;
    height: 600px;
    background: var(--color-fresh-breeze);
    top: -20%;
    right: -10%;
    animation: morphBlob 20s infinite ease-in-out, float 30s infinite ease-in-out;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
}
.bg-shape-2 {
    width: 500px;
    height: 500px;
    background: var(--color-fresh-breeze);
    bottom: -15%;
    left: -10%;
    animation: morphBlob 25s infinite ease-in-out reverse, float 35s infinite ease-in-out reverse;
    border-radius: 40% 60% 70% 30% / 40% 70% 30% 60%;
    opacity: 0.06;
}
.bg-shape-3 {
    width: 350px;
    height: 350px;
    background: var(--color-fresh-breeze-dark);
    top: 40%;
    left: 50%;
    animation: morphBlob 18s infinite ease-in-out 5s, float 25s infinite ease-in-out 3s;
    border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
    opacity: 0.05;
}
/* ---------- APP HEADER ---------- */
.app-header {
    padding: 0 24px;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    transition: all var(--transition-normal);
}
.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.header-left { display: flex; align-items: center; gap: 16px; }
.header-right { display: flex; align-items: center; gap: 16px; }
.logo-small { display: flex; align-items: center; gap: 10px; }
.logo-small .logo-sub {
    font-size: 11px;
    margin-top: 0;
    color: var(--color-text-muted);
    letter-spacing: 2px;
}
.user-name {
    font-size: 14px;
    color: var(--color-text-secondary);
    font-weight: 500;
}

/* ---------- MAIN CONTENT ---------- */
.main-content { padding: 40px 0 60px; }
.page-header { margin-bottom: 36px; }
.page-header h1 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-description {
    color: var(--color-text-secondary);
    font-size: 16px;
    margin-top: 4px;
}

/* ---------- CV GRID ---------- */
.cv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}
.cv-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    transition: all var(--transition-slow);
    cursor: pointer;
    animation: slideUp 0.5s var(--ease-out-expo) both;
    position: relative;
}
.cv-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow-coral);
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}
.cv-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-8px);
    border-color: rgba(253, 127, 76, 0.15);
}
.cv-card:hover::after { opacity: 1; }
.cv-card:nth-child(1) { animation-delay: 0.05s; }
.cv-card:nth-child(2) { animation-delay: 0.1s; }
.cv-card:nth-child(3) { animation-delay: 0.15s; }
.cv-card:nth-child(4) { animation-delay: 0.2s; }
.cv-card:nth-child(5) { animation-delay: 0.25s; }
.cv-card:nth-child(6) { animation-delay: 0.3s; }
.cv-card-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: linear-gradient(135deg, rgba(77, 208, 225, 0.08), rgba(253, 127, 76, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.cv-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-slow);
}
.cv-card:hover .cv-card-photo img { transform: scale(1.06); }
.cv-card-photo .photo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--color-gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(253, 127, 76, 0.3);
}
.cv-card-body { padding: 20px; }
.cv-card-name { font-size: 18px; font-weight: 700; color: var(--color-text); margin-bottom: 4px; }
.cv-card-title { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 12px; }
.cv-card-footer { display: flex; align-items: center; justify-content: space-between; }
.cv-card-expiry { font-size: 12px; color: var(--color-text-muted); display: flex; align-items: center; gap: 4px; }
.cv-card-expiry svg { width: 14px; height: 14px; }
.cv-card-action {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-coral);
    display: flex;
    align-items: center;
    gap: 4px;
    transition: all var(--transition-normal);
}
.cv-card:hover .cv-card-action { gap: 10px; color: var(--color-coral-dark); }
.cv-card-action svg { width: 16px; height: 16px; transition: transform var(--transition-normal); }
.cv-card:hover .cv-card-action svg { transform: translateX(2px); }

/* ---------- EMPTY STATE ---------- */
.empty-state { text-align: center; padding: 80px 24px; animation: fadeIn 0.5s ease; }
.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
}
.empty-icon svg { width: 40px; height: 40px; }
.empty-state h3 { font-size: 20px; font-weight: 700; color: var(--color-text); margin-bottom: 8px; }
.empty-state p { color: var(--color-text-secondary); font-size: 15px; }
/* ---------- CV DETAIL PAGE ---------- */
.cv-detail { animation: slideUp 0.5s var(--ease-out-expo); }
.cv-detail-header {
    background: var(--color-bg-white);
    border-radius: var(--radius-2xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border-light);
    display: flex;
    gap: 32px;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}
.cv-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gradient-1);
}
.cv-detail-photo {
    width: 140px;
    height: 140px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
}
.cv-detail-photo img { width: 100%; height: 100%; object-fit: cover; }
.cv-detail-photo .photo-placeholder-large {
    width: 100%;
    height: 100%;
    background: var(--color-gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 48px;
    font-weight: 700;
}
.cv-detail-info h1 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}
.cv-detail-jobtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    background: var(--color-gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.cv-detail-meta { display: flex; flex-wrap: wrap; gap: 16px; }
.cv-meta-item { display: flex; align-items: center; gap: 6px; font-size: 14px; color: var(--color-text-secondary); }
.cv-meta-item svg { width: 16px; height: 16px; color: var(--color-text-muted); }

/* CV Sections */
.cv-section {
    background: var(--color-bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border-light);
    margin-bottom: 20px;
    transition: all var(--transition-normal);
}
.cv-section:hover { box-shadow: var(--shadow-md); border-color: rgba(77, 208, 225, 0.1); }
.cv-section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.cv-section-title::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--color-gradient-1);
    border-radius: 2px;
}
.cv-summary-text { font-size: 15px; line-height: 1.7; color: var(--color-text-secondary); }
/* Skills */
.skills-list { display: flex; flex-wrap: wrap; gap: 8px; }
.skill-tag {
    background: rgba(77, 208, 225, 0.08);
    color: var(--color-fresh-breeze-dark);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    transition: all var(--transition-normal);
    border: 1px solid rgba(77, 208, 225, 0.12);
}
.skill-tag:hover {
    background: var(--color-gradient-2);
    color: var(--color-dark-green);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(77, 208, 225, 0.2);
}

/* Timeline */
.timeline { display: flex; flex-direction: column; gap: 24px; }
.timeline-item {
    position: relative;
    padding-left: 24px;
    border-left: 2px solid var(--color-border-light);
    transition: border-color var(--transition-normal);
}
.timeline-item:hover { border-left-color: var(--color-coral); }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -7px;
    top: 4px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-gradient-1);
    border: 2px solid var(--color-bg-white);
    box-shadow: 0 0 0 3px rgba(253, 127, 76, 0.15);
    transition: box-shadow var(--transition-normal);
}
.timeline-item:hover::before { box-shadow: 0 0 0 6px rgba(253, 127, 76, 0.12); }
.timeline-role { font-size: 16px; font-weight: 700; color: var(--color-text); margin-bottom: 2px; }
.timeline-company, .timeline-institution { font-size: 15px; color: var(--color-coral); font-weight: 600; margin-bottom: 4px; }
.timeline-date { font-size: 13px; color: var(--color-text-muted); margin-bottom: 8px; }
.timeline-description { font-size: 14px; color: var(--color-text-secondary); line-height: 1.6; }

/* Languages */
.languages-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.language-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all var(--transition-normal);
}
.language-item:hover { border-color: rgba(77, 208, 225, 0.15); background: rgba(77, 208, 225, 0.04); }
.language-name { font-weight: 600; color: var(--color-text); font-size: 14px; }
.language-level { font-size: 13px; color: var(--color-text-secondary); }

/* Certifications */
.certifications-list { display: flex; flex-direction: column; gap: 8px; }
.certification-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    font-size: 14px;
    color: var(--color-text);
    transition: all var(--transition-normal);
    border: 1px solid transparent;
}
.certification-item:hover { border-color: rgba(168, 237, 129, 0.2); background: rgba(168, 237, 129, 0.04); }
.certification-badge {
    width: 24px;
    height: 24px;
    background: var(--color-gradient-2);
    color: var(--color-dark-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
}

/* Info Grid */
.info-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.info-item {
    padding: 16px;
    background: var(--color-bg);
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    transition: all var(--transition-normal);
}
.info-item:hover { border-color: rgba(253, 127, 76, 0.1); }
.info-label { font-size: 12px; color: var(--color-text-muted); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 4px; }
.info-value { font-size: 15px; font-weight: 600; color: var(--color-text); }
/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .login-card { padding: 32px 24px; border-radius: var(--radius-xl); }
    .login-step h2 { font-size: 20px; }
    .code-input { width: 44px; height: 52px; font-size: 20px; }
    .cv-grid { grid-template-columns: 1fr; }
    .cv-detail-header { flex-direction: column; text-align: center; padding: 32px 24px; }
    .cv-detail-meta { justify-content: center; }
    .cv-section { padding: 24px 20px; }
    .page-header h1 { font-size: 24px; }
    .header-content { height: 56px; }
    .user-name { display: none; }
    .info-grid { grid-template-columns: 1fr 1fr; }
    .bg-shape-1 { width: 350px; height: 350px; }
    .bg-shape-2 { width: 280px; height: 280px; }
    .bg-shape-3 { width: 200px; height: 200px; }
}

@media (max-width: 380px) {
    .code-inputs { gap: 4px; }
    .code-input { width: 40px; height: 48px; font-size: 18px; }
}