.careers-hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 150px 20px 100px;
    text-align: center;
}

.careers-content {
    padding: 80px 20px;
    background: var(--wfs-darker);
}

/* Benefits */
.why-section {
    margin-bottom: 100px;
}

.why-section h2 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 20px;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--wfs-yellow);
}

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

.benefit-card h3 {
    color: var(--wfs-white);
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
}

/* Positions */
.positions-section {
    margin-bottom: 100px;
}

.positions-section h2 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 15px;
}

.section-intro {
    text-align: center;
    color: var(--wfs-light-gray);
    margin-bottom: 50px;
}

.positions-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.position-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s;
}

.position-card:hover {
    border-color: var(--wfs-yellow);
}

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

.position-header h3 {
    color: var(--wfs-white);
    font-size: 1.3rem;
}

.location {
    color: var(--wfs-yellow);
    font-size: 0.9rem;
    padding: 5px 12px;
    background: rgba(229, 199, 56, 0.1);
    border-radius: 20px;
}

.position-card p {
    color: var(--wfs-light-gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.position-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.tag {
    padding: 5px 12px;
    background: rgba(229, 199, 56, 0.05);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
    color: var(--wfs-light-gray);
    font-size: 0.85rem;
}

/* Culture */
.culture-section {
    margin-bottom: 100px;
}

.culture-section h2 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 50px;
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.culture-item {
    padding: 30px;
    background: rgba(229, 199, 56, 0.03);
    border: 1px solid rgba(229, 199, 56, 0.1);
    border-radius: 15px;
}

.culture-item h3 {
    color: var(--wfs-white);
    margin-bottom: 15px;
}

.culture-item p {
    color: var(--wfs-light-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Process */
.process-section {
    margin-bottom: 100px;
}

.process-section h2 {
    text-align: center;
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 50px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--wfs-yellow) 0%, var(--wfs-gold) 100%);
    color: var(--wfs-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
    color: var(--wfs-white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.process-step p {
    color: var(--wfs-light-gray);
    font-size: 0.9rem;
}

/* CTA */
.careers-cta {
    text-align: center;
    padding: 60px;
    background: rgba(229, 199, 56, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(229, 199, 56, 0.1);
}

.careers-cta h2 {
    color: var(--wfs-white);
    font-size: 2rem;
    margin-bottom: 20px;
}

.careers-cta p {
    color: var(--wfs-light-gray);
    margin-bottom: 30px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .benefits-grid,
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .positions-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
