/* ============================================
   EMPLOYERS PAGE - 2026 PORTAL GATEWAY
   Dashboard Preview, Signup CTAs
   ============================================ */

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

.hero-gradient-portal {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
}

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

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

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

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

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

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

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

.btn-portal-primary,
.btn-portal-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-portal-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(59, 130, 246, 0.5);
}

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

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

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

.hero-trust-badges {
    display: flex;
    gap: 2rem;
}

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

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

/* Dashboard Preview */
.hero-dashboard-preview {
    position: relative;
}

.dashboard-mockup {
    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);
}

.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
}

.mockup-logo {
    font-weight: 800;
    font-size: 1.25rem;
}

.mockup-actions {
    display: flex;
    gap: 0.5rem;
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-content {
    padding: 2rem;
}

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

.stat-card {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 1rem;
    border: 2px solid #e2e8f0;
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    height: 150px;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 1rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #3b82f6 0%, #8b5cf6 100%);
    border-radius: 0.5rem;
    animation: barGrow 1s ease forwards;
}

@keyframes barGrow {
    from { height: 0; }
}

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

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

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

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

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

.feature-card-portal {
    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-portal:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px -20px rgba(59, 130, 246, 0.3);
}

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

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

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

/* Success Metrics */
.success-metrics-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.metrics-content {
    text-align: center;
}

.metrics-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 4rem;
}

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

.metric-item {
    display: flex;
    flex-direction: column;
}

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

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

/* Pricing Section */
.pricing-section-portal {
    padding: 6rem 0;
    background: #f8fafc;
}

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

.pricing-card {
    position: relative;
    padding: 3rem 2rem;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #3b82f6;
    box-shadow: 0 20px 60px -20px rgba(59, 130, 246, 0.3);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    color: #fff;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-period {
    font-size: 1rem;
    color: #64748b;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #475569;
}

.pricing-features i {
    color: #10b981;
}

.btn-pricing {
    display: block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #fff;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -10px rgba(59, 130, 246, 0.4);
}

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

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

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

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

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

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

.btn-cta-portal-primary,
.btn-cta-portal-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-portal-primary {
    background: #fff;
    color: #3b82f6;
}

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

.btn-cta-portal-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-portal-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

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

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

    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

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

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

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

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

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