/* Careers Page */
.careers-page {
    background-color: #f7f5ff;
    min-height: 100vh;
    padding: 80px 60px;
}

.careers-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.careers-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.careers-hero.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.careers-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #5b41b3;
    font-size: 14px;
}

.careers-title {
    font-size: 48px;
    font-weight: 700;
    color: #201448;
    margin: 0;
}

.careers-description {
    font-size: 17px;
    color: #5c5a73;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 760px;
}

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

.benefit-card {
    background-color: white;
    border-radius: 16px;
    padding: 26px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-card i {
    font-size: 24px;
    color: #5b41b3;
}

.benefit-card h3 {
    margin: 0;
    font-size: 20px;
    color: #201448;
}

.benefit-card p {
    margin: 0;
    font-size: 15px;
    color: #5c5a73;
    line-height: 1.6;
}

.careers-openings {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.opening-card {
    background-color: white;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
    align-items: center;
}

.opening-card h3 {
    margin: 0 0 8px 0;
    font-size: 22px;
    color: #201448;
}

.opening-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 14px;
    color: #5b41b3;
}

.opening-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.opening-description {
    margin: 12px 0 0;
    font-size: 15px;
    color: #5c5a73;
    line-height: 1.6;
}

.opening-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.opening-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opening-actions .btn-apply {
    background: linear-gradient(135deg, #5b41b3 0%, #8f6bed 100%);
    color: white;
}

.opening-actions .btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(95, 65, 179, 0.3);
}

.opening-actions .btn-details {
    background: none;
    border: 1px solid #5b41b3;
    color: #5b41b3;
}

.opening-actions .btn-details:hover {
    background-color: #5b41b3;
    color: white;
}

.careers-callout {
    background: linear-gradient(135deg, #5b41b3 0%, #8f6bed 100%);
    border-radius: 16px;
    padding: 40px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 55px rgba(95, 65, 179, 0.25);
}

.careers-callout h2 {
    margin: 0 0 12px 0;
    font-size: 32px;
}

.careers-callout p {
    margin: 0 0 20px 0;
    font-size: 16px;
    line-height: 1.7;
}

.careers-callout a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    background-color: white;
    color: #5b41b3;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.careers-callout a:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 255, 255, 0.35);
}

@media (max-width: 1024px) {
    .careers-benefits {
        grid-template-columns: repeat(2, 1fr);
    }

    .opening-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .careers-page {
        padding: 60px 25px;
    }

    .careers-title {
        font-size: 36px;
    }

    .careers-benefits {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .careers-page {
        padding: 50px 20px;
    }

    .careers-title {
        font-size: 32px;
    }
}
