/* 页面通用样式 */
.page-header {
    padding: 140px 0 70px;
    text-align: center;
    background: var(--bg-dark);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(217, 119, 6, 0.3), transparent);
}

.page-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.page-description {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

.nav-menu .active {
    color: var(--primary-light);
    font-weight: 500;
}

/* 职位列表页面 */
.jobs-filter {
    padding: 36px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.filter-bar {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.search-box {
    flex: 1;
    display: flex;
    gap: 10px;
}

.search-input {
    flex: 1;
    padding: 11px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s;
}

.search-input:focus {
    border-color: var(--primary);
}

.btn-search {
    padding: 11px 22px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.25s;
}

.btn-search:hover {
    background: var(--primary-light);
}

.filter-group {
    display: flex;
    gap: 12px;
}

.filter-select {
    padding: 11px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 13px;
    cursor: pointer;
    outline: none;
    min-width: 140px;
}

.filter-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tag {
    padding: 7px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 18px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s;
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* 职位列表 */
.jobs-list-section {
    padding: 56px 0;
    background: var(--bg-dark);
}

.jobs-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}

.jobs-list-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 13px;
}

.sort-select {
    padding: 7px 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    cursor: pointer;
    outline: none;
    font-size: 13px;
}

.jobs-list {
    display: grid;
    gap: 18px;
}

.job-list-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.job-list-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.job-list-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.job-list-icon {
    font-size: 40px;
}

.job-list-badges {
    display: flex;
    gap: 6px;
}

.badge {
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

.badge.hot {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
}

.badge.urgent {
    background: rgba(236, 72, 153, 0.12);
    color: #f472b6;
}

.badge.new {
    background: rgba(34, 197, 94, 0.12);
    color: #4ade80;
}

.job-list-title {
    font-size: 21px;
    margin-bottom: 10px;
    font-weight: 600;
}

.job-list-description {
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
    font-size: 14px;
}

.job-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}

.job-list-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    margin-bottom: 12px;
}

.job-list-info {
    display: flex;
    gap: 18px;
    color: var(--text-muted);
    font-size: 13px;
}

.job-list-salary {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-light);
}

.job-list-link {
    color: var(--primary-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.25s;
}

.job-list-link:hover {
    color: var(--primary);
}

/* 分页 */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 52px;
}

.pagination-btn {
    padding: 9px 18px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.25s;
    font-size: 13px;
}

.pagination-btn:hover:not(:disabled) {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 6px;
}

.pagination-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.25s;
    font-size: 13px;
}

.pagination-number:hover,
.pagination-number.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.pagination-dots {
    display: flex;
    align-items: center;
    color: var(--text-muted);
}

/* 职位详情页面 */
.job-detail-header {
    padding: 110px 0 52px;
    background: var(--bg-dark);
}

.breadcrumb {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 28px;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s;
}

.breadcrumb a:hover {
    color: var(--primary-light);
}

.job-detail-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
}

.job-detail-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.job-detail-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
}

.job-detail-meta {
    display: flex;
    gap: 22px;
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 22px;
}

.job-detail-salary {
    margin-bottom: 28px;
}

.salary-range {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-light);
}

.salary-extra {
    font-size: 15px;
    color: var(--text-secondary);
    margin-left: 8px;
}

.job-detail-actions {
    display: flex;
    gap: 12px;
}

.btn-icon-large {
    width: 46px;
    height: 46px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s;
}

.btn-icon-large:hover {
    background: var(--bg-elevated);
    border-color: rgba(255, 255, 255, 0.15);
}

.job-detail-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.job-detail-card h3 {
    font-size: 17px;
    margin-bottom: 18px;
    font-weight: 600;
}

.highlights-list {
    list-style: none;
}

.highlights-list li {
    padding: 11px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 14px;
    color: var(--text-secondary);
}

.highlights-list li:last-child {
    border-bottom: none;
}

/* 职位详情内容 */
.job-detail-content {
    padding: 52px 0;
    background: var(--bg-card);
}

.job-detail-content .container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 36px;
}

.job-detail-section {
    background: var(--bg-dark);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 22px;
}

.job-detail-section h2 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
}

.job-detail-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 14px;
}

.job-detail-section ul {
    color: var(--text-secondary);
    line-height: 1.8;
    padding-left: 20px;
    font-size: 14px;
}

.job-detail-section ul li {
    margin-bottom: 8px;
}

/* 技术栈 */
.tech-stack {
    display: grid;
    gap: 22px;
}

.tech-category h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--primary-light);
    font-weight: 500;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    padding: 7px 14px;
    background: rgba(217, 119, 6, 0.08);
    border: 1px solid rgba(217, 119, 6, 0.15);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 13px;
}

/* 福利待遇 */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.benefit-item h4 {
    font-size: 15px;
    margin-bottom: 6px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 13px;
}

/* 工作地点 */
.location-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.location-text h4 {
    font-size: 17px;
    margin-bottom: 12px;
}

.location-text p {
    margin-bottom: 8px;
}

.map-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 180px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* 申请流程 */
.process-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.process-step {
    text-align: center;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    font-weight: 600;
    margin: 0 auto 12px;
}

.process-step h4 {
    font-size: 15px;
    margin-bottom: 6px;
}

.process-step p {
    font-size: 13px;
    color: var(--text-muted);
}

.process-arrow {
    font-size: 20px;
    color: var(--text-muted);
    padding: 0 14px;
}

/* 申请CTA */
.job-apply-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 44px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
}

.job-apply-cta h3 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 700;
}

.job-apply-cta p {
    font-size: 15px;
    margin-bottom: 24px;
    color: rgba(255, 255, 255, 0.8);
}

.job-apply-cta .btn-primary {
    background: white;
    color: var(--primary-dark);
}

.job-apply-cta .btn-primary:hover {
    background: #fef3c7;
    box-shadow: none;
}

/* 侧边栏 */
.sidebar-card {
    background: var(--bg-dark);
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: 22px;
}

.sidebar-card h3 {
    font-size: 17px;
    margin-bottom: 16px;
    font-weight: 600;
}

.recruiter-info {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.recruiter-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid rgba(217, 119, 6, 0.3);
    object-fit: cover;
}

.recruiter-info h4 {
    font-size: 15px;
    margin-bottom: 3px;
}

.recruiter-info p {
    font-size: 13px;
    color: var(--text-muted);
}

.recruiter-desc {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.65;
    margin-bottom: 16px;
}

.btn-block {
    width: 100%;
}

.company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 16px;
}

.company-stat {
    text-align: center;
    padding: 14px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.company-stat strong {
    display: block;
    font-size: 18px;
    margin-bottom: 4px;
    color: var(--primary-light);
}

.company-stat span {
    font-size: 12px;
    color: var(--text-muted);
}

.similar-jobs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.similar-job {
    padding: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.25s;
}

.similar-job:hover {
    border-color: rgba(217, 119, 6, 0.25);
}

.similar-job h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.similar-job p {
    font-size: 13px;
    color: var(--primary-light);
}

.share-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.share-btn {
    padding: 9px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.25s;
    font-size: 13px;
}

.share-btn:hover {
    border-color: rgba(217, 119, 6, 0.3);
    color: var(--primary-light);
}

/* 响应式 */
@media (max-width: 1024px) {
    .job-detail-hero {
        grid-template-columns: 1fr;
    }

    .job-detail-content .container {
        grid-template-columns: 1fr;
    }

    .filter-bar {
        flex-direction: column;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .location-info {
        grid-template-columns: 1fr;
    }

    .process-steps {
        flex-direction: column;
        gap: 18px;
    }

    .process-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .page-title {
        font-size: 28px;
    }

    .job-detail-title {
        font-size: 26px;
    }

    .salary-range {
        font-size: 24px;
    }

    .job-detail-actions {
        flex-direction: column;
    }

    .company-stats {
        grid-template-columns: 1fr;
    }
}

/* 关于我们页面样式 */
.about-intro {
    padding: 72px 0;
    background: var(--bg-card);
}

.about-intro-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
}

.about-intro-text h2 {
    font-size: 30px;
    margin-bottom: 22px;
    font-weight: 700;
}

.about-intro-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 14px;
}

.about-intro-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.stat-card {
    background: var(--bg-dark);
    padding: 26px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
    transform: translateY(-2px);
}

.stat-card-number {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-light);
    margin-bottom: 6px;
}

.stat-card-label {
    color: var(--text-muted);
    font-size: 13px;
}

/* 使命愿景 */
.mission-vision {
    padding: 72px 0;
    background: var(--bg-dark);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.mission-card {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 18px;
}

.mission-card h3 {
    font-size: 19px;
    margin-bottom: 12px;
    font-weight: 600;
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 14px;
}

/* 时间线 */
.timeline-section {
    padding: 72px 0;
    background: var(--bg-card);
}

.timeline {
    max-width: 720px;
    margin: 52px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 86px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, var(--primary), transparent);
}

.timeline-item {
    display: flex;
    gap: 36px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    width: 86px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-light);
    text-align: right;
}

.timeline-year::after {
    content: '';
    position: absolute;
    left: 81px;
    top: 7px;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(217, 119, 6, 0.4);
}

.timeline-content {
    flex: 1;
    background: var(--bg-dark);
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.timeline-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 600;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.65;
    font-size: 14px;
}

/* 领导团队 */
.leadership-section {
    padding: 72px 0;
    background: var(--bg-dark);
}

.section-description {
    text-align: center;
    color: var(--text-secondary);
    font-size: 15px;
    margin-top: 12px;
    margin-bottom: 52px;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.leader-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.leader-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.leader-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid rgba(217, 119, 6, 0.25);
    margin-bottom: 18px;
    object-fit: cover;
}

.leader-card h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.leader-title {
    color: var(--primary-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.leader-bio {
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 16px;
}

.leader-social {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.leader-social a {
    width: 32px;
    height: 32px;
    background: var(--bg-dark);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.25s;
    border: 1px solid var(--border);
}

.leader-social a:hover {
    background: rgba(217, 119, 6, 0.1);
    border-color: rgba(217, 119, 6, 0.2);
}

/* 办公室 */
.offices-section {
    padding: 72px 0;
    background: var(--bg-card);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.office-card {
    background: var(--bg-dark);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.office-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
    transform: translateY(-3px);
}

.office-image {
    height: 150px;
    margin: -36px -28px 20px -28px;
    overflow: hidden;
}

.office-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.office-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.office-card p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 4px;
}

.office-size {
    color: var(--primary-light);
    font-weight: 500;
    margin-top: 12px;
}

/* 公司文化页面 */
.core-values {
    padding: 72px 0;
    background: var(--bg-card);
}

.value-card-large {
    background: var(--bg-dark);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    position: relative;
    transition: all 0.3s ease;
}

.value-card-large:hover {
    border-color: rgba(217, 119, 6, 0.2);
}

.value-number {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 42px;
    font-weight: 700;
    color: rgba(217, 119, 6, 0.1);
}

.value-icon-large {
    font-size: 48px;
    margin-bottom: 18px;
}

.value-card-large h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-card-large > p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 14px;
}

.value-points {
    list-style: none;
    padding-left: 0;
}

.value-points li {
    padding: 9px 0;
    padding-left: 26px;
    position: relative;
    color: var(--text-secondary);
    font-size: 14px;
}

.value-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

/* 工作环境 */
.work-environment {
    padding: 72px 0;
    background: var(--bg-dark);
}

.environment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.environment-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    overflow: hidden;
}

.environment-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
    transform: translateY(-3px);
}

.environment-image {
    height: 150px;
    margin: -36px -28px 20px -28px;
    overflow: hidden;
}

.environment-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.environment-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
}

.environment-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

/* 福利待遇 */
.benefits-section {
    padding: 72px 0;
    background: var(--bg-card);
}

.benefits-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-category {
    background: var(--bg-dark);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.benefit-category:hover {
    border-color: rgba(217, 119, 6, 0.2);
}

.benefit-category h3 {
    font-size: 19px;
    margin-bottom: 18px;
    font-weight: 600;
}

.benefit-category ul {
    list-style: none;
    padding: 0;
}

.benefit-category ul li {
    padding: 11px 0;
    padding-left: 22px;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.benefit-category ul li:last-child {
    border-bottom: none;
}

.benefit-category ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-size: 18px;
}

/* 员工故事 */
.employee-stories {
    padding: 72px 0;
    background: var(--bg-dark);
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.story-card {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.story-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
}

.story-avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    border: 2px solid rgba(217, 119, 6, 0.25);
    margin-bottom: 18px;
    object-fit: cover;
}

.story-content h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.story-role {
    color: var(--primary-light);
    font-size: 13px;
    margin-bottom: 14px;
}

.story-text {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 14px;
}

/* 多样性 */
.diversity-section {
    padding: 72px 0;
    background: var(--bg-card);
}

.diversity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.diversity-text h2 {
    font-size: 30px;
    margin-bottom: 18px;
    font-weight: 700;
}

.diversity-text p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 14px;
}

.diversity-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 36px;
}

.diversity-stat {
    text-align: center;
}

.diversity-stat strong {
    display: block;
    font-size: 30px;
    color: var(--primary-light);
    margin-bottom: 6px;
    font-weight: 700;
}

.diversity-stat span {
    color: var(--text-muted);
    font-size: 13px;
}

.diversity-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.diversity-icon {
    font-size: 160px;
    opacity: 0.15;
}

/* 联系我们页面 */
.contact-info-section {
    padding: 72px 0;
    background: var(--bg-card);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-card {
    background: var(--bg-dark);
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
    transform: translateY(-3px);
}

.contact-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 4px;
}

.social-links-contact {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 10px;
}

.social-links-contact a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.25s;
}

.social-links-contact a:hover {
    color: var(--primary);
}

/* 联系表单 */
.contact-form-section {
    padding: 72px 0;
    background: var(--bg-dark);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
}

.contact-form-info h2 {
    font-size: 30px;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-form-info > p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
    font-size: 14px;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-feature {
    display: flex;
    gap: 16px;
}

.feature-icon {
    font-size: 26px;
    flex-shrink: 0;
}

.contact-feature h4 {
    font-size: 15px;
    margin-bottom: 4px;
    font-weight: 600;
}

.contact-feature p {
    color: var(--text-secondary);
    font-size: 13px;
}

.contact-form-container {
    background: var(--bg-card);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.form-group label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 11px 16px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

/* 办公地点地图 */
.offices-map-section {
    padding: 72px 0;
    background: var(--bg-card);
}

.offices-map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.offices-map-grid.offices-map-grid--single,
.offices-grid.offices-grid--cd {
    grid-template-columns: 1fr;
    max-width: 540px;
    margin: 0 auto;
}

.office-map-card {
    background: var(--bg-dark);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.office-map-card h3 {
    font-size: 17px;
    margin-bottom: 14px;
    font-weight: 600;
}

.office-address,
.office-transport {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
}

.office-hours {
    margin: 18px 0;
    padding: 14px;
    background: rgba(217, 119, 6, 0.06);
    border: 1px solid rgba(217, 119, 6, 0.12);
    border-radius: var(--radius);
}

.office-hours strong {
    display: block;
    margin-bottom: 4px;
    font-size: 13px;
}

.office-hours p {
    color: var(--text-secondary);
    font-size: 13px;
}

.map-placeholder-small {
    height: 150px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-top: 18px;
    overflow: hidden;
}

.map-placeholder-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* FAQ */
.faq-section {
    padding: 72px 0;
    background: var(--bg-dark);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: var(--bg-card);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(217, 119, 6, 0.15);
}

.faq-item h3 {
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 14px;
}

/* 博客页面 */
.blog-categories {
    padding: 36px 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
}

.category-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.category-tab {
    padding: 8px 20px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.25s;
    font-size: 13px;
}

.category-tab:hover,
.category-tab.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* 精选文章 */
.featured-post {
    padding: 52px 0;
    background: var(--bg-dark);
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
}

.featured-post-image {
    position: relative;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    overflow: hidden;
}

.featured-post-image .featured-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--primary);
    color: white;
    padding: 5px 14px;
    border-radius: 14px;
    font-size: 11px;
    font-weight: 500;
    z-index: 1;
}

.post-image-placeholder {
    font-size: 80px;
}

.featured-post-content {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: center;
}

.post-category {
    background: rgba(217, 119, 6, 0.1);
    color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
}

.post-date {
    color: var(--text-muted);
    font-size: 13px;
}

.featured-post-content h2 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.featured-post-content > p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 22px;
    font-size: 14px;
}

.post-author {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 22px;
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(217, 119, 6, 0.25);
    object-fit: cover;
}

.post-author strong {
    display: block;
    margin-bottom: 2px;
    font-size: 14px;
}

.post-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* 博客列表 */
.blog-list-section {
    padding: 52px 0;
    background: var(--bg-card);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 52px;
}

.blog-card {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    border-color: rgba(217, 119, 6, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.blog-image {
    position: relative;
    height: 190px;
    background: var(--bg-card);
    overflow: hidden;
}

.blog-image .blog-thumb {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-image-placeholder {
    font-size: 52px;
}

.blog-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 10px;
    font-size: 11px;
    font-weight: 500;
    z-index: 1;
}

.blog-content {
    padding: 22px;
}

.blog-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.blog-content > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
    font-size: 13px;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.blog-author-info {
    display: flex;
    gap: 8px;
    align-items: center;
}

.blog-author-info img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-author-info span {
    font-size: 12px;
    color: var(--text-muted);
}

.blog-date {
    font-size: 12px;
    color: var(--text-muted);
}

/* 订阅 */
.newsletter-section {
    padding: 72px 0;
    background: var(--bg-dark);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    padding: 52px;
    border-radius: var(--radius-lg);
    text-align: center;
    color: white;
}

.newsletter-card h2 {
    font-size: 30px;
    margin-bottom: 12px;
    font-weight: 700;
}

.newsletter-card p {
    font-size: 15px;
    margin-bottom: 28px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius);
    color: white;
    font-size: 14px;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

/* 响应式 - 其他页面 */
@media (max-width: 1024px) {
    .about-intro-content,
    .diversity-content,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }

    .mission-vision-grid,
    .leadership-grid,
    .offices-grid,
    .environment-grid,
    .benefits-categories,
    .stories-grid,
    .contact-grid,
    .offices-map-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-post-card {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mission-vision-grid,
    .leadership-grid,
    .offices-grid,
    .environment-grid,
    .benefits-categories,
    .stories-grid,
    .contact-grid,
    .offices-map-grid,
    .faq-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .about-intro-stats {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }
}
