/**
 * 陪诊师入驻页面样式
 * 包含：Hero区域、入驻优势、入驻要求、入驻流程、陪诊师职责、入驻申请、常见问题、CTA区域、页脚等
 */

/* ==================== Hero区域样式 ==================== */
.hero {
    /* 多层渐变背景，增强视觉深度 */
    background: linear-gradient(135deg, #22d3ee 0%, #0891b2 50%, #0e7490 100%);
    padding: 80px 0 var(--spacing-md) 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 500px !important;
    display: flex;
    align-items: center;
}

/* 背景装饰性渐变层 - 增强动态效果 */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 8s ease-in-out infinite;
}

/* 第二层背景装饰 - 增强层次感 */
.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroFloat 10s ease-in-out infinite reverse;
}

/* 粒子效果容器 */
.hero .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* 粒子元素 */
.hero .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: particleFloat 15s infinite ease-in-out;
}

/* 多个粒子 - 不同大小、位置和动画延迟 */
.hero .particle:nth-child(1) {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.hero .particle:nth-child(2) {
    width: 12px;
    height: 12px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.hero .particle:nth-child(3) {
    width: 6px;
    height: 6px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.hero .particle:nth-child(4) {
    width: 10px;
    height: 10px;
    top: 30%;
    left: 70%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.hero .particle:nth-child(5) {
    width: 14px;
    height: 14px;
    top: 50%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 14s;
}

/* Hero浮动动画 - 更平滑的上下移动 */
@keyframes heroFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg) scale(1);
    }
    33% {
        transform: translateY(-30px) rotate(3deg) scale(1.05);
    }
    66% {
        transform: translateY(-15px) rotate(-3deg) scale(0.95);
    }
}

/* 粒子浮动动画 - 包含位移和缩放 */
@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-50px) translateX(20px) scale(1.2);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) translateX(-30px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-60px) translateX(10px) scale(1.1);
        opacity: 0.5;
    }
}

/* ==================== 波浪效果样式 ==================== */
.hero .wave-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 0;
}

.hero .wave-effect::before,
.hero .wave-effect::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-size: 50% 100%;
    animation: wave 10s linear infinite;
}

.hero .wave-effect::after {
    bottom: 10px;
    opacity: 0.5;
    animation: wave 15s linear infinite reverse;
}

@keyframes wave {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==================== Hero内容样式 ==================== */
.hero .hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Hero标题样式 - 增强视觉效果 */
.hero .hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: titleFadeIn 1s ease-out;
}

/* Hero副标题样式 - 增强可读性 */
.hero .hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
    animation: titleFadeIn 1s ease-out 0.2s backwards;
}

/* Hero描述文本样式 - 优化行高和颜色 */
.hero .hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
    animation: titleFadeIn 1s ease-out 0.4s backwards;
}

/* Hero按钮区域样式 */
.hero .hero-cta {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    animation: titleFadeIn 1s ease-out 0.6s backwards;
}

/* Hero按钮基础样式 */
.hero .hero-cta .btn {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* 主按钮样式 - 白色背景 */
.hero .hero-cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

/* 主按钮悬停效果 */
.hero .hero-cta .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 次按钮样式 - 透明背景 */
.hero .hero-cta .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

/* 次按钮悬停效果 */
.hero .hero-cta .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Hero图标区域 */
.hero .hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: iconFloat 3s ease-in-out infinite;
}

/* Hero图标样式 */
.hero .hero-icon {
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: iconPulse 3s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.hero .hero-icon i {
    font-size: 6rem;
    color: white;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}

/* 图标浮动动画 */
@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* 图标脉冲动画 - 增强动态效果 */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    }
}

/* 标题淡入动画 */
@keyframes titleFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== 品牌实力样式 ==================== */
.brand-strength {
    padding: 100px 0;
    background: white;
}

.brand-strength .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.brand-strength .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}

.brand-strength .section-subtitle {
    font-size: 1.125rem;
    color: #666;
}

.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.strength-item {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.strength-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.strength-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.strength-item h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: #333;
}

.strength-item p {
    color: #666;
    line-height: 1.6;
}

/* ==================== 市场机遇样式 ==================== */
.market-opportunity {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.opportunity-visual {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.chart-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.chart-title {
    text-align: center;
    margin-bottom: 10px;
}

.chart-title h3 {
    font-size: 1.25rem;
    color: #333;
    margin-bottom: 5px;
}

.chart-unit {
    font-size: 0.875rem;
    color: #999;
}

.chart-body {
    display: flex;
    align-items: flex-end;
    height: 350px;
    position: relative;
    padding-left: 50px;
    padding-right: 20px;
    padding-bottom: 40px;
}

.chart-y-axis {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0 40px 0;
}

.y-label {
    font-size: 0.75rem;
    color: #999;
    text-align: right;
    padding-right: 10px;
    height: 0;
    line-height: 0;
}

.chart-grid {
    position: absolute;
    left: 50px;
    right: 20px;
    top: 20px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: none;
}

.grid-line {
    width: 100%;
    height: 1px;
    background: #e8e8e8;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    flex: 1;
    height: 100%;
    padding: 20px 0;
}

.chart-bar {
    flex: 1;
    margin: 0 12px;
    text-align: center;
    max-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    position: relative;
}

.bar-value-top {
    font-size: 0.875rem;
    font-weight: 600;
    color: #00c4a7;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bar-fill {
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    border-radius: 6px 6px 0 0;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 196, 167, 0.3);
    opacity: 0;
    animation: growUp 0.8s ease forwards;
}

@keyframes growUp {
    from {
        opacity: 0;
        transform: scaleY(0);
    }
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

.chart-bar:nth-child(1) .bar-fill { animation-delay: 0.1s; }
.chart-bar:nth-child(2) .bar-fill { animation-delay: 0.2s; }
.chart-bar:nth-child(3) .bar-fill { animation-delay: 0.3s; }
.chart-bar:nth-child(4) .bar-fill { animation-delay: 0.4s; }
.chart-bar:nth-child(5) .bar-fill { animation-delay: 0.5s; }
.chart-bar:nth-child(6) .bar-fill { animation-delay: 0.6s; }

.chart-bar:nth-child(1) .bar-value-top { animation-delay: 0.7s; }
.chart-bar:nth-child(2) .bar-value-top { animation-delay: 0.8s; }
.chart-bar:nth-child(3) .bar-value-top { animation-delay: 0.9s; }
.chart-bar:nth-child(4) .bar-value-top { animation-delay: 1.0s; }
.chart-bar:nth-child(5) .bar-value-top { animation-delay: 1.1s; }
.chart-bar:nth-child(6) .bar-value-top { animation-delay: 1.2s; }

.chart-bar:hover .bar-fill {
    transform: scaleY(1.05);
    box-shadow: 0 6px 20px rgba(0, 196, 167, 0.4);
    filter: brightness(1.1);
}

.chart-bar:hover .bar-value-top {
    color: #00a888;
    transform: translateY(-2px);
}

.bar-label {
    margin-top: 12px;
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
}

.opportunity-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.opportunity-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00d4aa 0%, #00c4a7 100%);
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.item-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    color: #333;
}

.item-content p {
    color: #666;
    line-height: 1.6;
}

/* ==================== 区块通用样式 ==================== */
.join-advantages,
.join-requirements,
.join-process,
.doctor-responsibilities,
.doctor-join-application,
.join-faq {
    padding: var(--spacing-2xl) 0;
}

.join-process,
.doctor-responsibilities,
.doctor-join-application {
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-tag {
    display: inline-block;
    padding: var(--spacing-xs) var(--spacing-md);
    background: var(--gradient-primary);
    color: white;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 2rem;
    margin-bottom: var(--spacing-md);
}

.section-title {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ==================== 入驻优势样式 ==================== */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.advantage-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: white;
    transition: all var(--transition-normal);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.advantage-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== 入驻要求样式 ==================== */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.requirement-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.requirement-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.requirement-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: white;
    transition: all var(--transition-normal);
}

.requirement-card:hover .requirement-icon {
    transform: scale(1.1);
}

.requirement-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.requirement-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== 入驻流程样式 ==================== */
.process-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-lg) 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.process-line {
    position: absolute;
    top: 40px;
    left: 50px;
    right: 50px;
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    z-index: 0;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-md);
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 0;
}

.step-number {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--text-light);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 2rem;
    color: white;
    transition: all var(--transition-normal);
    flex-shrink: 0;
}

.process-step:hover .step-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 16px rgba(34, 211, 238, 0.3);
}

.process-step h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-xs);
}

.process-step p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* ==================== 陪诊师职责样式 ==================== */
.responsibilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.responsibility-card {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.responsibility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.responsibility-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
    font-size: 2rem;
    color: white;
    transition: all var(--transition-normal);
}

.responsibility-card:hover .responsibility-icon {
    transform: scale(1.1) rotate(5deg);
}

.responsibility-card h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.responsibility-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==================== 入驻申请样式 ==================== */
.application-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.application-info {
    background: var(--gradient-primary);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    color: white;
}

.application-info h2 {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

.application-info > p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.benefits-list {
    margin-bottom: var(--spacing-xl);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.benefit-item i {
    color: #fbbf24;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
}

.contact-item i {
    font-size: 1.5rem;
}

.contact-text h4 {
    font-size: 0.875rem;
    margin-bottom: var(--spacing-xs);
    opacity: 0.8;
}

.contact-text p {
    font-size: 1.125rem;
    font-weight: 600;
}

.application-form {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-sm);
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius-md);
    font-size: 1rem;
    transition: border-color var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.form-group label input[type="checkbox"] {
    width: auto;
    margin-right: var(--spacing-sm);
}

.form-group label span {
    font-weight: 400;
    color: var(--text-secondary);
}

.application-form .btn {
    width: 100%;
    padding: var(--spacing-md);
    font-size: 1.125rem;
    font-weight: 600;
}

/* ==================== 常见问题样式 ==================== */
.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--border-radius-lg);
    margin-bottom: var(--spacing-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: background-color var(--transition-normal);
}

.faq-question:hover {
    background-color: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--text-secondary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ==================== CTA区域样式 ==================== */
.cta-section {
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    text-align: center;
}

.cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-lg);
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cta-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all var(--transition-normal);
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary-color);
    border: 2px solid white;
}

.cta-section .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ==================== 响应式设计 ==================== */

/* 1024px以下 */
@media (max-width: 1024px) {
    /* Hero区域 */
    .hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* 品牌实力 */
    .strength-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 市场机遇 */
    .opportunity-content {
        grid-template-columns: 1fr;
    }

    .chart-body {
        height: 280px;
        padding-left: 40px;
    }

    .chart-y-axis {
        padding: 15px 0 35px 0;
    }

    .y-label {
        font-size: 0.7rem;
    }

    .chart-bar {
        max-width: 60px;
        margin: 0 8px;
    }

    .bar-value-top {
        font-size: 0.75rem;
    }
    
    .hero .hero-cta {
        justify-content: center;
    }
    
    .hero .hero-icon {
        font-size: 8rem;
        margin-top: var(--spacing-lg);
    }
    
    /* 入驻优势 */
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 入驻要求 */
    .requirements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 陪诊师职责 */
    .responsibilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 入驻申请 */
    .application-content {
        grid-template-columns: 1fr;
    }
}

/* 768px以下 */
@media (max-width: 768px) {
    /* Hero区域 - 参考join.html的处理方式 */
    .hero {
        padding: 120px 0 var(--spacing-md) 0 !important;
        min-height: 500px !important;
    }
    
    .hero .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 16px;
        line-height: 1.2;
    }
    
    .hero .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .hero .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: var(--spacing-md);
    }
    
    .hero .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }
    
    .hero .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero .hero-icon {
        font-size: 8rem;
        margin-top: var(--spacing-lg);
    }
    
    /* 隐藏粒子效果以提升性能 */
    .hero .particles {
        display: none;
    }
    
    /* 简化波浪效果 */
    .hero .wave-effect {
        opacity: 0.3;
    }

    /* 市场机遇 */
    .chart-body {
        height: 240px;
        padding-left: 35px;
        padding-right: 15px;
    }

    .chart-y-axis {
        padding: 12px 0 30px 0;
    }

    .y-label {
        font-size: 0.65rem;
    }

    .chart-bar {
        max-width: 50px;
        margin: 0 6px;
    }

    .bar-value-top {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }

    .bar-label {
        font-size: 0.75rem;
        margin-top: 10px;
    }
    
    /* 入驻流程 - 改为垂直布局 */
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .process-line {
        left: 50%;
        transform: translateX(-50%);
        top: 40px;
        width: 4px;
        height: calc(100% - 80px);
        right: auto;
    }
    
    .process-step {
        padding: var(--spacing-md);
        min-width: auto;
        width: 100%;
    }
    
    /* 入驻要求 */
    .requirements-grid {
        grid-template-columns: 1fr;
    }
    
    /* 陪诊师职责 */
    .responsibilities-grid {
        grid-template-columns: 1fr;
    }
    
    /* 入驻申请 */
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* 480px以下 */
@media (max-width: 480px) {
    /* Hero区域 - 参考join.html的处理方式 */
    .hero {
        min-height: 450px !important;
        padding: 100px 0 40px 0 !important;
    }
    
    .hero .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    
    .hero .hero-subtitle {
        font-size: 0.875rem;
        margin-bottom: 10px;
    }
    
    .hero .hero-description {
        font-size: 0.8125rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }
    
    .hero .hero-cta .btn-primary,
    .hero .hero-cta .btn-outline {
        padding: 10px 20px;
        font-size: 0.875rem;
        max-width: 240px;
    }
    
    .hero .hero-icon {
        font-size: 6rem;
        margin-top: var(--spacing-md);
    }

    /* 市场机遇 */
    .chart-body {
        height: 200px;
        padding-left: 30px;
        padding-right: 10px;
        padding-bottom: 35px;
    }

    .chart-y-axis {
        padding: 10px 0 30px 0;
    }

    .y-label {
        font-size: 0.6rem;
    }

    .chart-bar {
        max-width: 40px;
        margin: 0 4px;
    }

    .bar-value-top {
        font-size: 0.65rem;
        margin-bottom: 4px;
    }

    .bar-label {
        font-size: 0.7rem;
        margin-top: 8px;
    }

    .chart-title h3 {
        font-size: 1.125rem;
    }

    .chart-unit {
        font-size: 0.75rem;
    }
    
    /* 入驻优势 */
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA区域 */
    .cta-section h2 {
        font-size: 1.75rem;
    }

    .cta-section p {
        font-size: 1rem;
    }
}