.hradt-services-category-5m8k {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.hradt-category-card-9j3x {
    background: white;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.hradt-category-card-9j3x:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hradt-category-icon-7k2m {
    font-size: 48px;
    margin-bottom: 20px;
}

.hradt-category-card-9j3x h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.hradt-category-card-9j3x > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.hradt-feature-list-4w6n {
    list-style: none;
}

.hradt-feature-list-4w6n li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-gray);
    padding-left: 20px;
    position: relative;
}

.hradt-feature-list-4w6n li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.hradt-pricing-section-6w9k {
    margin: 80px 0;
}

.hradt-pricing-grid-8m5x {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.hradt-price-card-3k7n {
    background: white;
    padding: 40px 32px;
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.hradt-price-card-3k7n:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.hradt-featured-plan-6k9m {
    border-color: var(--primary-color);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
}

.hradt-plan-badge-5j2m {
    display: inline-block;
    padding: 8px 20px;
    background: var(--bg-light);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.hradt-plan-price-9w4k {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hradt-plan-price-9w4k span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
}

.hradt-plan-features-7k3m {
    list-style: none;
    margin-bottom: 32px;
}

.hradt-plan-features-7k3m li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-gray);
}

.hradt-plan-btn-4m8x {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hradt-plan-btn-4m8x:hover {
    background: var(--secondary-color);
}

.hradt-faq-section-5w8k {
    margin-top: 80px;
}

.hradt-faq-list-7m4x {
    max-width: 800px;
    margin: 0 auto;
}

.hradt-faq-item-9k3n {
    background: white;
    padding: 28px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.hradt-faq-item-9k3n h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.hradt-faq-item-9k3n p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .hradt-services-category-5m8k,
    .hradt-pricing-grid-8m5x {
        grid-template-columns: 1fr;
    }
}
/* 为所有页面添加平滑滚动和更好的过渡效果 */

html {
    scroll-behavior: smooth;
}

/* 增强卡片阴影和悬停效果 */
.hradt-category-card-9j3x {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.hradt-category-card-9j3x:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.hradt-benefit-card-6w9x {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.hradt-benefit-card-6w9x:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.hradt-step-card-4w8x {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.hradt-step-card-4w8x:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hradt-step-number-8k2m {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.hradt-price-card-3k7n {
    background: white;
    padding: 44px 36px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.hradt-price-card-3k7n:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.hradt-featured-plan-6k9m {
    border-color: var(--primary-color);
    box-shadow: 0 16px 40px rgba(37, 99, 235, 0.18);
    transform: scale(1.05);
}

.hradt-featured-plan-6k9m:hover {
    transform: scale(1.05) translateY(-8px);
}

.hradt-plan-price-9w4k {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.hradt-faq-item-9k3n {
    background: white;
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.hradt-faq-item-9k3n:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateX(4px);
}

.hradt-success-stories-5w9k {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 80px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.hradt-story-card-3k7n {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.hradt-story-card-3k7n:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* 服务中心文字内容优化 */
.hradt-category-card-9j3x h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.hradt-category-card-9j3x > p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 24px;
    text-align: justify;
}

.hradt-feature-list-4w6n li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-dark);
    padding-left: 28px;
    position: relative;
    font-weight: 500;
    line-height: 1.8;
}

.hradt-feature-list-4w6n li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 900;
    font-size: 12px;
    background: var(--success-color);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.3);
}

/* 价格卡片文字优化 */
.hradt-price-card-3k7n h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.hradt-plan-badge-5j2m {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.hradt-plan-price-9w4k {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hradt-plan-price-9w4k span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-gray);
    margin-left: 4px;
}

.hradt-plan-features-7k3m li {
    padding: 14px 0;
    font-size: 15px;
    color: var(--text-gray);
    padding-left: 28px;
    position: relative;
    line-height: 1.6;
}

.hradt-plan-features-7k3m li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 12px;
}

/* FAQ区域文字优化 */
.hradt-faq-item-9k3n h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
    line-height: 1.4;
}

.hradt-faq-item-9k3n p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-gray);
    text-align: justify;
}

/* 服务介绍区域 */
.hradt-service-intro-box-8k3m {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    padding: 40px;
    border-radius: 16px;
    margin: 40px 0;
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.hradt-service-intro-box-8k3m h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hradt-service-intro-box-8k3m p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-gray);
    text-align: justify;
}

@media (max-width: 768px) {
    .hradt-category-card-9j3x h3 {
        font-size: 22px;
    }

    .hradt-plan-price-9w4k {
        font-size: 44px;
    }

    .hradt-category-card-9j3x > p,
    .hradt-faq-item-9k3n p {
        text-align: left;
    }
}
