/* Recruit Page Styles */

.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.page-label {
    font-family: var(--font-en);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--accent-blue);
    display: block;
    margin-bottom: 24px;
    font-weight: 600;
}

.page-title {
    font-size: clamp(3rem, 10vw, 6rem);
    line-height: 1;
    margin-bottom: 32px;
    color: var(--text-main);
}

.page-lead {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}

/* Culture Section */
.culture-section {
    padding: 100px 0;
}

.culture-content {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 32px;
    border: 1px solid var(--border-light);
}

.culture-content h2 {
    font-size: 2rem;
    margin-bottom: 32px;
    color: var(--text-main);
}

.culture-content p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

/* Jobs Section */
.jobs-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-head {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-family: var(--font-en);
    letter-spacing: 0.2em;
    color: var(--accent-blue);
    font-weight: 600;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-main);
}

.jobs-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.job-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    transition: transform 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.job-tag {
    padding: 6px 12px;
    background: #f0f4f8;
    color: var(--accent-blue);
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.job-card h3 {
    font-size: 1.8rem;
    color: var(--text-main);
}

.job-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.job-requirements {
    list-style: none;
    margin-bottom: 32px;
}

.job-requirements li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--text-muted);
}

.job-requirements li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

.job-apply {
    display: inline-block;
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s;
}

.job-apply:hover {
    opacity: 0.7;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.benefit-item {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border-light);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 24px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-main);
}

.benefit-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.cta-inner {
    background: linear-gradient(135deg, #0058a5 0%, #003366 100%);
    border-radius: 40px;
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-desc {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 40px;
}

.cta-inner .btn-primary {
    background: #fff;
    color: var(--accent-blue);
}

/* Responsive */
@media (max-width: 768px) {
    .culture-content {
        padding: 40px 30px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}
