.careers-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.intro-content p {
    color: var(--muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.benefits-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.01);
}

.benefits-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.benefit-item {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--muted);
    font-size: 0.9rem;
}

.openings-section {
    padding: 4rem 2rem;
}

.openings-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.department-filter {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 3rem;
}

.dept-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--muted);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.dept-btn:hover {
    border-color: var(--primary);
    color: var(--light);
}

.dept-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

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

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

.job-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-3px);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-header h3 {
    font-size: 1.25rem;
}

.job-location {
    color: var(--muted);
    font-size: 0.9rem;
}

.job-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.tag {
    padding: 0.25rem 0.75rem;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
}

.job-description {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.job-apply {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.job-apply:hover {
    color: var(--secondary);
}

.culture-section {
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.01);
}

.culture-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.culture-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.culture-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.culture-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.culture-card p {
    color: var(--muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .job-header {
        flex-direction: column;
    }
}
