.careers-hero {
    padding: 150px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
}

.careers-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.careers-hero p {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.jobs-section {
    padding: 80px 0;
}

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

.job-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.job-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

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

.job-header h3 {
    font-size: 1.75rem;
    color: var(--text);
}

.job-badge {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-location {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.job-description {
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.job-details {
    margin-bottom: 2rem;
}

.job-details h4 {
    color: var(--primary);
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.job-details ul {
    list-style: none;
    padding-left: 0;
}

.job-details li {
    color: var(--text-muted);
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.job-details li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.apply-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.apply-btn:hover {
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: var(--dark-light);
    margin: 5% auto;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

.close {
    color: var(--text-muted);
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close:hover {
    color: var(--primary);
}

.modal-content h2 {
    margin-bottom: 2rem;
    color: var(--text);
}

.modal-content form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-content input,
.modal-content textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem;
    color: var(--text);
    font-family: inherit;
    font-size: 1rem;
}

.modal-content input:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.file-upload {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.file-upload label {
    color: var(--text);
    font-weight: 600;
}

.file-upload input[type="file"] {
    padding: 0.75rem;
}

@media (max-width: 768px) {
    .careers-hero {
        padding: 120px 0 60px;
    }
    
    .careers-hero h1 {
        font-size: 2.5rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .job-card {
        padding: 1.5rem;
    }
    
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .job-header h3 {
        font-size: 1.3rem;
    }

    .modal-content {
        width: 95%;
        padding: 2rem;
        margin: 20% auto;
    }
    
    .modal-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .careers-hero {
        padding: 100px 0 40px;
    }
    
    .careers-hero h1 {
        font-size: 1.75rem;
    }
    
    .careers-hero p {
        font-size: 1rem;
    }
    
    .jobs-grid {
        gap: 1rem;
    }
    
    .job-card {
        padding: 1rem;
    }
    
    .job-header h3 {
        font-size: 1.1rem;
    }
    
    .job-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
    }
    
    .job-location {
        font-size: 0.9rem;
    }
    
    .job-description {
        font-size: 0.9rem;
    }
    
    .job-details h4 {
        font-size: 0.95rem;
    }
    
    .job-details li {
        font-size: 0.85rem;
    }
    
    .apply-btn {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .modal-content {
        width: 95%;
        padding: 1.5rem;
        margin: 30% auto;
    }
    
    .close {
        font-size: 1.5rem;
    }
    
    .modal-content input,
    .modal-content textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
}
