/* 费用介绍横幅区 - 复用首页hero样式 */
.pricing-hero-bg {
    background: url('../images/hero-bg.png') center/cover no-repeat;
    padding: 120px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* 移动端覆盖固定高度 */
@media screen and (max-width: 767px) {
    .pricing-hero-bg {
        height: auto !important;
        min-height: 500px !important;
        padding: 100px 0 80px !important;
    }
}

@media screen and (max-width: 480px) {
    .pricing-hero-bg {
        height: auto !important;
        min-height: 400px !important;
        padding: 80px 0 60px !important;
    }
}

@media screen and (max-width: 320px) {
    .pricing-hero-bg {
        height: auto !important;
        min-height: 350px !important;
        padding: 70px 0 50px !important;
    }
}
.pricing-hero-bg .hero-title {
    color: #EE46BC;
    font-weight: 750;
}

/* 英文版pricing页面标题加粗 */
[lang="en"] .pricing-hero-bg .hero-title {
    font-weight: 800;
}
.pricing-hero-bg .hero-description {
    max-width: 580px;
}
[lang="en"] .pricing-hero-bg .hero-content {
    max-width: 700px;
}
[lang="en"] .pricing-hero-bg .hero-description {
    max-width: 700px;
}

/* 收费包含项目模块区 */
.pricing-includes {
    padding: 24px 0 32px 0;
}
.pricing-includes-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 32px;
    text-align: left;
}
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(5, 200px);
    gap: 24px;
    justify-content: space-between;
}
.pricing-card {
    background: #FFF0F7;
    border-radius: 16px;
    padding: 20px;
    text-align: left;
    transition: all 0.3s ease;
}
.pricing-card:hover {
    background: #FFE0EF;
    transform: translateY(-2px);
}
.pricing-card-icon {
    height: 40px;
    width: auto;
    margin: 0 0 12px 0;
    display: block;
}
.pricing-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #EE46BC;
    margin-bottom: 8px;
}
.pricing-card-desc {
    font-size: 14px;
    color: #05073C;
    line-height: 1.6;
}

/* 僱主需承担责任模块区 */
.employer-responsibilities {
    padding: 32px 0;
    margin-top: 40px;
}
.responsibilities-content {
    display: flex;
    align-items: center;
    gap: 60px;
}
.responsibilities-left {
    flex: 1.2;
}
.responsibilities-title {
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 16px;
}
.responsibilities-desc {
    font-size: 16px;
    color: #EE46BC;
    margin-bottom: 24px;
}
.responsibility-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 24px;
}
.responsibility-icon {
    height: 28px;
    width: 28px;
    object-fit: contain;
    flex-shrink: 0;
}
.responsibility-text {
    font-size: 16px;
    color: #05073C;
    white-space: normal;
    line-height: 28px;
    word-wrap: break-word;
    max-width: 100%;
}
.responsibilities-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}
.responsibilities-img {
    width: 100%;
    max-width: 440px;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

/* 常见问题模块区 */
.faq-section {
    padding: 48px 0 0 0;
}
.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}
.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #05073C;
}
.faq-view-all {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 20px;
    color: #EE46BC;
    text-decoration: none;
    font-weight: 700;
}
.faq-arrow { display: none; }
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.faq-item {
    background: #FCEEF5;
    border-radius: 16px;
    padding: 24px;
}
.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: #EE46BC;
    margin-bottom: 12px;
}
.faq-answer {
    font-size: 16px;
    color: #05073C;
    line-height: 1.8;
}

/* 行动号召模块区 */
.pricing-cta {
    padding: 0;
}
.pricing-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0;
}
.pricing-cta-left {
    flex: 0.9;
}
.pricing-cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #323651;
    margin-bottom: 24px;
    line-height: 1.3;
}
.pricing-cta-btn {
    background: #FF5CA8;
    color: #FFFFFF;
    font-size: 16px;
    padding: 14px 28px;
    border-radius: 28px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pricing-cta-btn:hover {
    transform: scale(0.98);
}
.pricing-cta-right {
    flex: 1.1;
    display: flex;
    justify-content: flex-end;
}
.pricing-cta-img {
    width: 720px;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* 僅在收費頁調整頁腳上移，與上方圖片更貼近 */
.footer {
    margin-top: -48px;
    position: relative;
    z-index: 2;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-hero-content,
    .responsibilities-content,
    .pricing-cta-content {
        flex-direction: column;
    }
    .pricing-hero-right,
    .responsibilities-right,
    .pricing-cta-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}
