/* ========== RESET & BASE ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #06060f;
    color: #c8cad0;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Subtle grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(6, 6, 15, 0.7);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 0 2rem;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.3px;
}

.nav-logo i {
    font-size: 1.3rem;
    color: #7c8aff;
}

.nav-links {
    display: flex;
    gap: 2.2rem;
}

.nav-link {
    color: #6b6f80;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.25s;
    position: relative;
    letter-spacing: 0.1px;
}

.nav-link:hover,
.nav-link.active {
    color: #e0e2ea;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    height: 1.5px;
    background: #7c8aff;
    border-radius: 2px;
}

.nav-cta {
    background: linear-gradient(135deg, #7c8aff, #6a79f5);
    color: #fff;
    border: none;
    padding: 9px 22px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: box-shadow 0.3s, transform 0.3s;
    letter-spacing: 0.2px;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(124, 138, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #e0e2ea;
    font-size: 1.3rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

.mobile-menu.active {
    display: flex;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 2rem 40px;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.08;
}

.shape-1 {
    width: 700px;
    height: 700px;
    background: #5b6abf;
    top: -300px;
    right: -200px;
    animation: float 20s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: #8b5fbf;
    bottom: -200px;
    left: -200px;
    animation: float 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: #5b9fbf;
    top: 40%;
    left: 45%;
    animation: float 18s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(-15px, 15px); }
    75% { transform: translate(15px, 8px); }
}

.hero-content {
    flex: 1;
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(124, 138, 255, 0.08);
    border: 1px solid rgba(124, 138, 255, 0.15);
    padding: 7px 16px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #8b96ff;
    font-weight: 600;
    margin-bottom: 1.8rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { border-color: rgba(124, 138, 255, 0.15); box-shadow: 0 0 0 0 rgba(124, 138, 255, 0); }
    50% { border-color: rgba(124, 138, 255, 0.35); box-shadow: 0 0 20px -5px rgba(124, 138, 255, 0.15); }
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.5rem;
    color: #f0f1f5;
    letter-spacing: -1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, #7c8aff 0%, #a78bfa 50%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #7a7e8f;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, #7c8aff, #6a79f5);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: box-shadow 0.3s, transform 0.3s;
    letter-spacing: 0.1px;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(124, 138, 255, 0.35);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    color: #c8cad0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s, border-color 0.25s;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.14);
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f0f1f5;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #e0e2ea, #7c8aff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    color: #5c5f6e;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.radar-preview {
    width: 380px;
    height: 380px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    position: relative;
    animation: radarFloat 6s ease-in-out infinite;
}

@keyframes radarFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

.radar-preview::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(124, 138, 255, 0.2), transparent 40%, rgba(167, 139, 250, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    animation: borderGlow 4s ease-in-out infinite alternate;
}

@keyframes borderGlow {
    0% { background: linear-gradient(135deg, rgba(124, 138, 255, 0.2), transparent 40%, rgba(167, 139, 250, 0.15)); }
    100% { background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), transparent 40%, rgba(124, 138, 255, 0.15)); }
}

/* ========== FEATURES SECTION ========== */
.features-section {
    padding: 60px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(124, 138, 255, 0.08);
    border: 1px solid rgba(124, 138, 255, 0.15);
    padding: 5px 14px;
    border-radius: 6px;
    font-size: 0.72rem;
    color: #8b96ff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    letter-spacing: -0.8px;
    background: linear-gradient(135deg, #f0f1f5 0%, #c8cad0 60%, #a0a3b0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: #6b6f80;
    font-size: 0.95rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0), transparent);
    transition: background 0.4s;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(124, 138, 255, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(124, 138, 255, 0.2);
    background: rgba(124, 138, 255, 0.03);
    box-shadow: 0 25px 60px -15px rgba(124, 138, 255, 0.12), 0 20px 40px -20px rgba(0, 0, 0, 0.5);
}

.feature-card:hover::before {
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.4), transparent);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 30px -6px rgba(124, 138, 255, 0.25);
}

.feature-step {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    font-size: 2.8rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.025);
    letter-spacing: -2px;
}

.feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #e0e2ea;
    margin-bottom: 0.6rem;
    letter-spacing: -0.2px;
}

.feature-card p {
    color: #6b6f80;
    font-size: 0.88rem;
    line-height: 1.65;
}

/* ========== UPLOAD SECTION ========== */
.upload-section {
    padding: 60px 2rem;
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}

.upload-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.3);
}

.upload-container::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(180deg, rgba(124, 138, 255, 0.1), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.upload-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.upload-tab {
    flex: 1;
    background: transparent;
    border: none;
    color: #6b6f80;
    padding: 11px;
    border-radius: 7px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    transition: all 0.25s;
}

.upload-tab.active {
    background: rgba(124, 138, 255, 0.12);
    color: #c8ceff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.upload-tab:hover:not(.active) {
    color: #a0a3b0;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Dropzone */
.dropzone {
    border: 1.5px dashed rgba(124, 138, 255, 0.2);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
    background: rgba(124, 138, 255, 0.02);
    position: relative;
}

.dropzone:hover,
.dropzone.dragover {
    border-color: rgba(124, 138, 255, 0.5);
    background: rgba(124, 138, 255, 0.05);
    box-shadow: inset 0 0 40px rgba(124, 138, 255, 0.04);
}

.dropzone-icon {
    font-size: 2.5rem;
    color: #7c8aff;
    margin-bottom: 1rem;
    opacity: 0.7;
    transition: transform 0.3s, opacity 0.3s;
}

.dropzone:hover .dropzone-icon {
    transform: translateY(-4px) scale(1.1);
    opacity: 1;
}

.dropzone h3 {
    color: #e0e2ea;
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.dropzone p {
    color: #6b6f80;
    font-size: 0.85rem;
}

.dropzone-formats {
    display: block;
    margin-top: 1rem;
    font-size: 0.75rem;
    color: #4a4d5a;
}

.file-info {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(124, 138, 255, 0.06);
    border: 1px solid rgba(124, 138, 255, 0.12);
    padding: 12px 16px;
    border-radius: 10px;
    margin-top: 1rem;
    color: #8b96ff;
    font-weight: 500;
    font-size: 0.88rem;
}

.file-info span {
    flex: 1;
}

.remove-file {
    background: none;
    border: none;
    color: #ef6b73;
    cursor: pointer;
    font-size: 0.95rem;
    padding: 4px;
    transition: color 0.25s;
}

.remove-file:hover {
    color: #ff8a90;
}

/* CV Textarea */
.cv-textarea {
    width: 100%;
    min-height: 200px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 1.2rem;
    color: #c8cad0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    resize: vertical;
    transition: border-color 0.25s, box-shadow 0.25s;
    line-height: 1.6;
}

.cv-textarea:focus {
    outline: none;
    border-color: rgba(124, 138, 255, 0.3);
    box-shadow: 0 0 0 3px rgba(124, 138, 255, 0.06);
}

.cv-textarea::placeholder {
    color: #3d3f4a;
}

/* LinkedIn Input */
.linkedin-input-group {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    padding: 0 1.2rem;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.linkedin-input-group:focus-within {
    border-color: rgba(10, 102, 194, 0.4);
    box-shadow: 0 0 0 3px rgba(10, 102, 194, 0.06);
}

.linkedin-input-group i {
    color: #0a66c2;
    font-size: 1.2rem;
    opacity: 0.8;
}

.linkedin-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 16px 12px;
    color: #c8cad0;
    font-size: 0.9rem;
    font-family: 'Inter', sans-serif;
}

.linkedin-input:focus {
    outline: none;
}

.linkedin-input::placeholder {
    color: #3d3f4a;
}

.linkedin-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #4a4d5a;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Target Role */
.target-role-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.role-label {
    display: block;
    color: #a0a3b0;
    font-weight: 600;
    margin-bottom: 1.2rem;
    font-size: 0.85rem;
    letter-spacing: 0.1px;
}

.role-category {
    margin-bottom: 1.2rem;
}

.role-category-title {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #6b6f80;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.6rem;
    padding-left: 2px;
}

.role-category-title i {
    color: #7c8aff;
    font-size: 0.7rem;
    opacity: 0.7;
}

.role-select-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.role-chip {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #7a7e8f;
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
}

.role-chip:hover {
    border-color: rgba(124, 138, 255, 0.25);
    color: #c8cad0;
    background: rgba(124, 138, 255, 0.06);
    transform: translateY(-1px);
}

.role-chip.selected {
    background: rgba(124, 138, 255, 0.12);
    border-color: rgba(124, 138, 255, 0.3);
    color: #c8ceff;
    box-shadow: 0 4px 16px rgba(124, 138, 255, 0.15);
    transform: translateY(-1px);
}

/* Analyze Button */
.analyze-btn {
    width: 100%;
    margin-top: 2rem;
    background: linear-gradient(135deg, #7c8aff 0%, #6a79f5 50%, #8b5cf6 100%);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: box-shadow 0.3s, transform 0.3s;
    letter-spacing: 0.2px;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.analyze-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.08), transparent);
    transform: rotate(45deg) translateX(-100%);
    transition: transform 0.6s;
}

.analyze-btn:hover::before {
    transform: rotate(45deg) translateX(100%);
}

.analyze-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(124, 138, 255, 0.35);
}

.analyze-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 6, 15, 0.96);
    backdrop-filter: blur(16px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 80px;
    height: 80px;
    position: relative;
    margin: 0 auto 2rem;
}

.spinner-ring {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(124, 138, 255, 0.1);
    border-top-color: #7c8aff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loading-brain {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.6rem;
    color: #7c8aff;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.loading-content h3 {
    color: #f0f1f5;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.loading-content p {
    color: #6b6f80;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.loading-bar {
    width: 280px;
    height: 3px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loading-progress {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #7c8aff, #a78bfa);
    border-radius: 3px;
    transition: width 0.3s;
}

/* ========== RESULTS SECTION ========== */
.results-section {
    padding: 60px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Score Overview */
.score-overview {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.score-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.3), transparent);
}

.score-overview::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 138, 255, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.score-circle-container {
    flex-shrink: 0;
}

.score-circle {
    width: 180px;
    height: 180px;
    position: relative;
}

.score-circle svg {
    width: 100%;
    height: 100%;
}

.score-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.score-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #f0f1f5;
    display: block;
    letter-spacing: -1px;
}

.score-label {
    font-size: 0.75rem;
    color: #6b6f80;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.score-details {
    flex: 1;
}

.score-details h3 {
    color: #e0e2ea;
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.score-details p {
    color: #7a7e8f;
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.score-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.score-badge {
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1px;
}

.score-badge.good {
    background: rgba(52, 211, 153, 0.08);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.15);
}

.score-badge.warn {
    background: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.15);
}

.score-badge.danger {
    background: rgba(248, 113, 113, 0.08);
    color: #f87171;
    border: 1px solid rgba(248, 113, 113, 0.15);
}

/* Radar Section */
.radar-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.radar-card,
.skills-breakdown {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.radar-card h3,
.skills-breakdown h3 {
    color: #e0e2ea;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.radar-card h3 i,
.skills-breakdown h3 i {
    color: #7c8aff;
    font-size: 0.9rem;
}

.radar-chart-container {
    width: 100%;
    max-width: 380px;
    margin: 0 auto;
}

/* Skills List */
.skills-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-height: 380px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.skills-list::-webkit-scrollbar {
    width: 3px;
}

.skills-list::-webkit-scrollbar-track {
    background: transparent;
}

.skills-list::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
}

.skill-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.skill-name {
    width: 120px;
    font-size: 0.8rem;
    color: #a0a3b0;
    font-weight: 500;
    flex-shrink: 0;
}

.skill-bar-container {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
    overflow: hidden;
}

.skill-bar {
    height: 100%;
    border-radius: 3px;
    transition: width 1s ease;
    width: 0%;
    position: relative;
    overflow: hidden;
}

.skill-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.skill-percent {
    width: 40px;
    font-size: 0.8rem;
    font-weight: 700;
    text-align: right;
}

/* CV Errors */
.cv-errors-section {
    margin-bottom: 2rem;
}

.cv-errors-section h3 {
    color: #e0e2ea;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.cv-errors-section h3 i {
    color: #ef4444;
    font-size: 0.95rem;
}

.cv-errors-subtitle {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
}

.cv-errors-summary {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.cv-error-count {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.cv-error-count.error {
    background: rgba(239, 68, 68, 0.12);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.25);
}

.cv-error-count.warning {
    background: rgba(251, 191, 36, 0.12);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.25);
}

.cv-error-count.info {
    background: rgba(124, 138, 255, 0.12);
    color: #7c8aff;
    border: 1px solid rgba(124, 138, 255, 0.25);
}

.cv-errors-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cv-error-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.cv-error-card:hover {
    transform: translateX(4px);
}

.cv-error-card.error {
    background: rgba(239, 68, 68, 0.06);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.cv-error-card.warning {
    background: rgba(251, 191, 36, 0.06);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.cv-error-card.info {
    background: rgba(124, 138, 255, 0.06);
    border: 1px solid rgba(124, 138, 255, 0.2);
}

.cv-error-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.cv-error-icon.error {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
}

.cv-error-icon.warning {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.cv-error-icon.info {
    background: rgba(124, 138, 255, 0.15);
    color: #7c8aff;
}

.cv-error-content h4 {
    color: #e0e2ea;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cv-error-content p {
    color: #9ca3af;
    font-size: 0.8rem;
    line-height: 1.5;
}

.cv-no-errors {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: #22c55e;
    font-size: 0.9rem;
    font-weight: 500;
}

.cv-no-errors i {
    font-size: 1.4rem;
}

/* Missing Skills */
.missing-skills-section {
    margin-bottom: 1.5rem;
}

.missing-skills-section h3 {
    color: #e0e2ea;
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.missing-skills-section h3 i {
    color: #fbbf24;
    font-size: 0.95rem;
}

.missing-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.missing-skill-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.4rem;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.missing-skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, #fbbf24, #f59e0b);
    border-radius: 0 0 3px 3px;
    transition: height 0.4s;
}

.missing-skill-card:hover::before {
    height: 100%;
}

.missing-skill-card:hover {
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: 0 10px 40px -15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.missing-skill-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.missing-skill-name {
    color: #e0e2ea;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: -0.1px;
}

.missing-skill-priority {
    padding: 3px 10px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.priority-high {
    background: rgba(248, 113, 113, 0.08);
    color: #f87171;
}

.priority-medium {
    background: rgba(251, 191, 36, 0.08);
    color: #fbbf24;
}

.priority-low {
    background: rgba(52, 211, 153, 0.08);
    color: #34d399;
}

.missing-skill-desc {
    color: #6b6f80;
    font-size: 0.82rem;
    margin-bottom: 1rem;
    line-height: 1.55;
}

.missing-skill-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #7c8aff;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.25s;
}

.missing-skill-link:hover {
    color: #a0aaff;
}

/* Recommendations */
.recommendations-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.recommendations-section h3 {
    color: #e0e2ea;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.recommendations-section h3 i {
    color: #60a5fa;
    font-size: 0.95rem;
}

.rec-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 4px;
    border-radius: 9px;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.rec-tab {
    background: transparent;
    border: none;
    color: #6b6f80;
    padding: 8px 18px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.25s;
}

.rec-tab.active {
    background: rgba(124, 138, 255, 0.12);
    color: #c8ceff;
}

.rec-content {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.rec-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 1.4rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s, background 0.3s;
    position: relative;
    overflow: hidden;
}

.rec-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #7c8aff, #a78bfa, #c084fc);
    transform: scaleX(0);
    transition: transform 0.4s;
    transform-origin: left;
}

.rec-card:hover::before {
    transform: scaleX(1);
}

.rec-card:hover {
    border-color: rgba(124, 138, 255, 0.15);
    transform: translateY(-4px);
    background: rgba(124, 138, 255, 0.02);
    box-shadow: 0 15px 50px -15px rgba(0, 0, 0, 0.4);
}

.rec-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0.8rem;
}

.rec-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    flex-shrink: 0;
}

.rec-card-title {
    color: #e0e2ea;
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: -0.1px;
}

.rec-card-provider {
    color: #6b6f80;
    font-size: 0.75rem;
}

.rec-card-desc {
    color: #6b6f80;
    font-size: 0.82rem;
    margin-bottom: 0.8rem;
    line-height: 1.55;
}

.rec-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.rec-meta-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: #4a4d5a;
}

.rec-meta-item i {
    color: #7c8aff;
    font-size: 0.7rem;
}

.rec-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.8rem;
    color: #7c8aff;
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
}

/* ========== CAREER SECTION ========== */
.career-section {
    padding: 60px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.career-path-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 1.5rem;
    min-height: 280px;
}

.career-select-prompt {
    text-align: center;
    padding: 2.5rem;
    color: #4a4d5a;
}

.career-select-prompt i {
    font-size: 2.5rem;
    color: #2d2f3a;
    margin-bottom: 0.8rem;
    display: block;
    animation: bounce 2.5s ease-in-out infinite;
}

.career-select-prompt h3 {
    color: #6b6f80;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
}

.career-select-prompt p {
    color: #4a4d5a;
    font-size: 0.88rem;
}

/* Career Timeline */
.career-timeline {
    position: relative;
    padding-left: 40px;
}

.career-timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #7c8aff, #a78bfa, #c084fc);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
}

.timeline-dot {
    position: absolute;
    left: -33px;
    top: 0;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #06060f;
    border: 2px solid #7c8aff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot.active {
    background: #7c8aff;
    box-shadow: 0 0 12px rgba(124, 138, 255, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(124, 138, 255, 0.3); }
    50% { box-shadow: 0 0 20px rgba(124, 138, 255, 0.5); }
}

.timeline-dot i {
    font-size: 0.5rem;
    color: #fff;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.4rem;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.timeline-content:hover {
    border-color: rgba(124, 138, 255, 0.18);
    transform: translateX(6px);
    box-shadow: 0 8px 30px -10px rgba(124, 138, 255, 0.1);
}

.timeline-year {
    display: inline-block;
    background: rgba(124, 138, 255, 0.08);
    color: #8b96ff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 5px;
    margin-bottom: 0.7rem;
    letter-spacing: 0.3px;
}

.timeline-title {
    color: #e0e2ea;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    letter-spacing: -0.2px;
}

.timeline-desc {
    color: #6b6f80;
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.timeline-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.timeline-skill-tag {
    background: rgba(255, 255, 255, 0.04);
    color: #7a7e8f;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 0.7rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.timeline-salary {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.8rem;
    color: #34d399;
    font-weight: 700;
    font-size: 0.88rem;
}

/* Salary Section */
.salary-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
}

.salary-section h3 {
    color: #e0e2ea;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.salary-section h3 i {
    color: #34d399;
    font-size: 0.95rem;
}

.salary-chart-container {
    width: 100%;
    max-width: 650px;
    margin: 0 auto 2rem;
}

.salary-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.salary-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 1.4rem;
    text-align: center;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.salary-card:hover {
    border-color: rgba(52, 211, 153, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px -10px rgba(52, 211, 153, 0.1);
}

.salary-card-label {
    color: #6b6f80;
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.salary-card-value {
    color: #34d399;
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.3px;
}

.salary-card-period {
    color: #4a4d5a;
    font-size: 0.72rem;
    margin-top: 0.3rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== PDF DOWNLOAD BUTTON ========== */
.btn-pdf-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 9px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: transform 0.25s, box-shadow 0.25s;
    letter-spacing: 0.1px;
}

.btn-pdf-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(239, 68, 68, 0.3);
}

.btn-pdf-download:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ========== SECTOR STATISTICS SECTION ========== */
.sector-stats-section {
    padding: 60px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sector-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.sector-stat-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.5rem;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.sector-stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 138, 255, 0.18);
    box-shadow: 0 12px 40px -12px rgba(0, 0, 0, 0.4);
}

.sector-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.sector-stat-card h4 {
    color: #e0e2ea;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.2px;
}

.sector-stat-numbers {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.sector-stat-item {
    display: flex;
    flex-direction: column;
}

.sector-stat-value {
    font-size: 1.2rem;
    font-weight: 800;
    color: #f0f1f5;
    letter-spacing: -0.3px;
}

.sector-stat-label {
    font-size: 0.72rem;
    color: #5c5f6e;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

.sector-top-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.sector-skill-tag {
    background: rgba(255, 255, 255, 0.04);
    color: #7a7e8f;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 0.72rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.sector-chart-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ========== MARKET TREND SECTION ========== */
.market-trend-section {
    padding: 60px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trend-chart-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.trend-insights {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.trend-insight-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 1.3rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: border-color 0.3s, transform 0.3s;
}

.trend-insight-card:hover {
    border-color: rgba(124, 138, 255, 0.18);
    transform: translateY(-2px);
}

.trend-insight-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.trend-insight-card h5 {
    color: #e0e2ea;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.trend-insight-card p {
    color: #6b6f80;
    font-size: 0.82rem;
    line-height: 1.55;
}

/* ========== FOOTER ========== */
.footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 3rem 2rem 1.5rem;
    margin-top: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    color: #e0e2ea;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    letter-spacing: -0.2px;
}

.footer-brand h3 i {
    color: #7c8aff;
}

.footer-brand p {
    color: #4a4d5a;
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: #a0a3b0;
    font-size: 0.82rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.footer-links a {
    display: block;
    color: #4a4d5a;
    text-decoration: none;
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
    transition: color 0.25s;
}

.footer-links a:hover {
    color: #7c8aff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 1.5rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-bottom p {
    color: #2d2f3a;
    font-size: 0.8rem;
    letter-spacing: 0.1px;
}

/* ========== SECTION DIVIDER ========== */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
    padding: 0.5rem 0;
}

.divider-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(124, 138, 255, 0.15), transparent);
}

.divider-icon {
    color: rgba(124, 138, 255, 0.2);
    font-size: 0.7rem;
    animation: bounce 2.5s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 2.5rem;
    }

    .hero-subtitle {
        max-width: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .hero-visual {
        width: 100%;
    }

    .radar-preview {
        width: 280px;
        height: 280px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .radar-section {
        grid-template-columns: 1fr;
    }

    .score-overview {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand h3 {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .upload-tabs {
        flex-direction: column;
    }

    .upload-container {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.7rem;
    }

    .missing-skills-grid {
        grid-template-columns: 1fr;
    }

    .rec-content {
        grid-template-columns: 1fr;
    }

    .salary-cards {
        grid-template-columns: 1fr;
    }

    .sector-stats-grid {
        grid-template-columns: 1fr;
    }

    .trend-insights {
        grid-template-columns: 1fr;
    }

    .role-select-grid {
        justify-content: center;
    }

    .career-path-container {
        padding: 1.5rem;
    }

    .score-overview {
        padding: 1.5rem;
    }

    .recommendations-section {
        padding: 1.5rem;
    }
}
