/* Careers Page - Modern Job Board Style */

.careers-hero {
    padding: 140px 0 80px;
    background: linear-gradient(180deg, 
        rgba(34, 197, 94, 0.08) 0%, 
        rgba(16, 185, 129, 0.05) 50%, 
        transparent 100%
    );
    text-align: center;
}

.careers-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.careers-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.careers-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2.5rem;
}

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

.career-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 0.25rem;
}

.career-stat .stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Why Join Section */
.why-join {
    padding: 5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Open Positions */
.open-positions {
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -1rem;
    margin-bottom: 3rem;
}

.positions-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.position-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    padding: 1.75rem;
    transition: all 0.3s ease;
}

.position-card:hover {
    transform: translateX(8px);
    border-color: rgba(34, 197, 94, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.position-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
}

.position-badge {
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.position-badge.engineering {
    background: rgba(59, 130, 246, 0.15);
    color: #3b82f6;
}

.position-badge.design {
    background: rgba(236, 72, 153, 0.15);
    color: #ec4899;
}

.position-badge.content {
    background: rgba(234, 179, 8, 0.15);
    color: #eab308;
}

.position-badge.customer {
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
}

.position-badge.marketing {
    background: rgba(139, 92, 246, 0.15);
    color: #8b5cf6;
}

.position-desc {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.position-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.position-apply {
    font-weight: 600;
    color: #22c55e;
    transition: gap 0.2s ease;
}

.position-apply:hover {
    color: #16a34a;
}

/* Culture Section */
.culture-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(16, 185, 129, 0.05));
}

.culture-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.culture-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.culture-content > p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.culture-values {
    text-align: left;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.culture-values li {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.culture-values strong {
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-values {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .careers-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .position-header {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .position-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}