/* ============================================
   CANDIDATES PAGE - 2026 CAREER HUB GATEWAY
   Job Matcher, Profile Creation CTAs
   ============================================ */

/* Hero Section */
.candidates-hero-hub {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    overflow: hidden;
    padding: 6rem 0;
}

.hero-wave-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
}

.hero-split-hub {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content-hub {
    color: #fff;
}

.hero-badge-hub {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 9999px;
    color: #a78bfa;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
}

.hero-title-hub {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text-hub {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle-hub {
    font-size: 1.25rem;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 3rem;
}

.hero-ctas-hub {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.btn-hub-primary,
.btn-hub-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hub-primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(139, 92, 246, 0.5);
}

.btn-hub-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(139, 92, 246, 0.7);
}

.btn-hub-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-hub-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.hero-benefits-hub {
    display: flex;
    gap: 2rem;
}

.benefit-item-hub {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
}

.benefit-item-hub i {
    color: #10b981;
}

/* Job Matcher Preview */
.hero-matcher-preview {
    position: relative;
}

.matcher-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.matcher-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
}

.matcher-content {
    padding: 2rem;
}

.match-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.match-item:hover {
    transform: translateX(5px);
    border-color: #8b5cf6;
}

.match-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.match-info p {
    color: #64748b;
    font-size: 0.95rem;
}

.match-score {
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    font-weight: 800;
    font-size: 1.125rem;
}

.match-score.excellent {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.match-score.good {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
}

.matcher-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.matcher-cta:hover {
    background: linear-gradient(135deg, #7c3aed 0%, #6d28d9 100%);
}

/* Portal Features */
.portal-features-hub {
    padding: 6rem 0;
    background: #fff;
}

.section-header-hub {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-hub h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1rem;
}

.section-header-hub p {
    font-size: 1.25rem;
    color: #64748b;
}

.features-grid-hub {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-hub {
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 2px solid #e2e8f0;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.feature-card-hub:hover {
    transform: translateY(-5px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px -20px rgba(139, 92, 246, 0.3);
}

.feature-icon-hub {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card-hub h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.feature-card-hub p {
    color: #64748b;
    line-height: 1.6;
}

/* Success Stories */
.success-stories-hub {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.story-card {
    padding: 2.5rem;
    background: #fff;
    border-radius: 1.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.2);
}

.story-quote {
    margin-bottom: 2rem;
}

.story-quote i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.story-quote p {
    font-size: 1.125rem;
    color: #475569;
    line-height: 1.7;
    font-style: italic;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #64748b;
    font-size: 0.95rem;
}

/* How It Works */
.how-it-works-hub {
    padding: 6rem 0;
    background: #fff;
}

.steps-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.6;
}

.step-connector {
    width: 100px;
    height: 3px;
    background: linear-gradient(to right, #8b5cf6, #7c3aed);
    margin-bottom: 4rem;
}

/* Stats Section */
.stats-hub-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.stats-grid-hub {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.stat-item-hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number-hub {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label-hub {
    font-size: 1.125rem;
    color: #94a3b8;
}

/* CTA Section */
.cta-hub-section {
    position: relative;
    padding: 6rem 0;
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    overflow: hidden;
}

.cta-gradient-hub {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-content-hub {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.cta-content-hub h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-content-hub p {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons-hub {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.btn-cta-hub-primary,
.btn-cta-hub-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-cta-hub-primary {
    background: #fff;
    color: #8b5cf6;
}

.btn-cta-hub-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(255, 255, 255, 0.4);
}

.btn-cta-hub-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-cta-hub-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-split-hub {
        grid-template-columns: 1fr;
    }

    .features-grid-hub {
        grid-template-columns: repeat(2, 1fr);
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title-hub {
        font-size: 2.5rem;
    }

    .hero-ctas-hub {
        flex-direction: column;
    }

    .features-grid-hub {
        grid-template-columns: 1fr;
    }

    .steps-timeline {
        flex-direction: column;
    }

    .step-connector {
        width: 3px;
        height: 50px;
        margin: 0;
    }

    .stats-grid-hub {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons-hub {
        flex-direction: column;
    }
}
