/* ========================================
   SCI全程协助服务 - 现代化样式 v2
   与翻译页面风格完全统一
   ======================================== */

/* ===== 全局容器设置 ===== */
.scifull-page {
    width: 100%;
    overflow: hidden;
}

/* 覆盖全局container，确保页面宽度一致 */
.cases-section .container,
.scifull-page .container {
    max-width: 1200px !important;
    margin: 0 auto;
    padding: 0 20px;
}

/* 覆盖Swiper全局样式，严格限制宽度 */
.cases-section .swiper-container.case-swiper,
.cases-section .swiper-container.case-swiper .swiper-wrapper {
    width: 100% !important;
    max-width: 1200px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
}

/* 强制覆盖所有可能的Swiper分页样式 - 最高优先级 */
.cases-section .swiper-container.case-swiper .case-pagination,
.cases-section.swiper-container-horizontal > .case-pagination,
.case-swiper-wrapper .case-pagination,
.case-swiper .case-pagination {
    position: absolute !important;
    bottom: -50px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    text-align: center !important;
    z-index: 999 !important;
    margin: 80px 0 0 0 !important;
    padding: 30px 0 !important;
}

/* ===== Hero Banner Section - 与翻译页面风格统一（简洁版）===== */
.scifull-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    position: relative;
}

.scifull-hero .hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;  /* 左侧文字稍宽 */
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.scifull-hero .hero-content {
    color: white;
}

.scifull-hero .hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.scifull-hero .highlight {
    color: #FFD700;
}

.scifull-hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 22px;
    opacity: 0.95;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.scifull-hero .hero-description {
    max-width: 600px;
    font-size: 1rem;
    line-height: 1.85;
    opacity: 0.92;
    font-weight: 400;
    margin-bottom: 30px;
}

/* Hero按钮 - 与翻译页面一致 */
.hero-buttons {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 38px;
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255,141,58,0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255,141,58,0.5);
    background: linear-gradient(135deg, #E5732A, #d66a25);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 38px;
    background: rgba(255,255,255,0.15);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.05rem;
    border: 2px solid rgba(255,255,255,0.4);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-3px);
}

/* 右侧图片 - 与翻译页面布局一致（稍小版） */
.hero-image {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.22);
    transition: all 0.5s ease;
    max-width: 480px;  /* 限制最大宽度 */
    margin: 0 auto;     /* 居中显示 */
}

.hero-image:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 56px rgba(0,0,0,0.28);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

/* ===== 适合人群 Section ===== */
.target-audience-section {
    background: white;
    padding: 80px 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 35px 28px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.07);
    border: 2px solid #e8ecf1;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(102,126,234,0.18);
    border-color: rgba(102,126,234,0.2);
}

.audience-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8ecf5 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 4px 14px rgba(102,126,234,0.15);
    border: 2px solid rgba(102,126,234,0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.audience-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.audience-card:hover .audience-icon {
    transform: translateY(-5px) scale(1.08);
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 8px 24px rgba(102,126,234,0.35);
    border-color: transparent;
}

.audience-card:hover .audience-icon img {
    transform: scale(1.1) rotate(-8deg);
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.audience-card:hover h3 {
    color: #667eea;
}

.audience-card p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.75;
    margin: 0;
}

/* ===== 服务特点 Section ===== */

/* 第7个特殊项 - 跨列显示，突出显示 */
.feature-highlight {
    background: linear-gradient(135deg, #fff5eb 0%, #ffe8d5 100%);
    border: none;
    border-radius: 16px;
    grid-column: 1 / -1;
    max-width: 100%;
    padding: 35px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 30px;
    box-shadow: 0 6px 24px rgba(255,141,58,0.12);
}

.guarantee-stamp {
    margin-left: auto;  /* 推到右侧 */
    flex-shrink: 0;     /* 不压缩 */
}

.stamp-image {
    width: 140px;
    height: auto;
    transform: rotate(-12deg);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: stamp-appear 0.8s ease-out;
    filter: drop-shadow(0 4px 12px rgba(231, 76, 60, 0.3));
}

@keyframes stamp-appear {
    0% {
        opacity: 0;
        transform: rotate(-12deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(-12deg) scale(1);
    }
}

.stamp-image:hover {
    transform: rotate(0deg) scale(1.08);
    filter: drop-shadow(0 8px 20px rgba(231, 76, 60, 0.45));
}

.features-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 26px;
    margin-top: 50px;
}

.feature-item {
    background: white;
    border-radius: 16px;
    padding: 30px 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    border: none;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(102,126,234,0.15);
}

.feature-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: 0 6px 16px rgba(102,126,234,0.3);
    transition: all 0.4s ease;
}

/* 服务特点图标 - 使用系统图片 */
.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow:
        0 4px 16px rgba(102,126,234,0.12),
        0 2px 6px rgba(0,0,0,0.05);
    border: 2px solid #e8ecf5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.feature-item:hover .feature-number {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
    box-shadow: 0 8px 20px rgba(255,141,58,0.4);
}

.feature-item:hover .feature-icon {
    transform: scale(1.08) rotate(-5deg);
    border-color: transparent;
    box-shadow:
        0 8px 24px rgba(102,126,234,0.25),
        0 4px 12px rgba(0,0,0,0.08);
}

.feature-item:hover .feature-icon::before {
    opacity: 1;
}

.feature-item:hover .feature-icon img {
    filter: brightness(1.15) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.feature-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 10px;
    line-height: 1.4;
}

.feature-content p {
    font-size: 0.93rem;
    color: #636e72;
    line-height: 1.7;
    margin: 0;
}

/* 添加装饰性背景图案 */
.feature-highlight::before {
    content: '★';
    position: absolute;
    right: -10px;
    bottom: -15px;
    font-size: 180px;
    color: rgba(255,141,58,0.06);
    pointer-events: none;
    z-index: 0;
}

.feature-highlight .feature-number {
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
    width: 60px;
    height: 60px;
    min-width: 60px;
    font-size: 1.5rem;
    box-shadow: 0 8px 24px rgba(255,141,58,0.45);
}

/* 第7个特殊图标 */
.feature-icon-special {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, #fff5eb, #ffe8d5);
    border-color: #FFB366;
    box-shadow:
        0 6px 20px rgba(255,141,58,0.18),
        0 2px 8px rgba(0,0,0,0.05);
}

.feature-icon-special::before {
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
}

.feature-highlight:hover .feature-number {
    transform: scale(1.15) rotate(-5deg);
}

.feature-highlight:hover .feature-icon-special {
    transform: scale(1.12) rotate(-5deg);
    border-color: transparent;
    box-shadow:
        0 10px 28px rgba(255,141,58,0.3),
        0 4px 12px rgba(0,0,0,0.08);
}

.feature-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255,141,58,0.2);
}

.feature-highlight .feature-content {
    position: relative;
    z-index: 1;
}

.feature-highlight .feature-content h4 {
    font-size: 1.3rem;
    color: #E5732A;
    font-weight: 800;
}

.feature-highlight .feature-content p {
    font-size: 1rem;
    color: #555;
    font-weight: 500;
    line-height: 1.75;
}

.feature-highlight .feature-number {
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
}

/* ===== 服务流程 Section - 全新流程图布局 ===== */
.process-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(102,126,234,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(118,75,162,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.process-flow {
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
    animation: fadeInUp 0.6s ease-out backwards;
}

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

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

.step-left {
    flex-direction: row;
}

.step-right {
    flex-direction: row-reverse;
}

.step-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow:
        0 8px 24px rgba(102,126,234,0.15),
        0 2px 8px rgba(0,0,0,0.05);
    border: 3px solid #e8ecf5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.step-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 20px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.flow-step:hover .step-icon::before {
    opacity: 1;
}

.flow-step:hover .step-icon {
    border-color: transparent;
    transform: scale(1.08) rotate(-5deg);
    box-shadow:
        0 12px 32px rgba(102,126,234,0.25),
        0 4px 12px rgba(0,0,0,0.08);
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.flow-step:hover .step-icon img {
    filter: brightness(1.1);
}

.step-info {
    flex: 1;
    background: white;
    border-radius: 18px;
    padding: 25px 30px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border-left: 5px solid #667eea;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.step-right .step-info {
    border-left: none;
    border-right: 5px solid #764ba2;
}

.flow-step:hover .step-info {
    transform: translateX(8px);
    box-shadow: 0 12px 36px rgba(102,126,234,0.18);
    border-left-color: #FF8D3A;
}

.step-right:hover .step-info {
    transform: translateX(-8px);
    border-right-color: #FF8D3A;
    border-left-color: transparent;
}

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(102,126,234,0.3);
}

.step-info h4 {
    font-size: 1.35rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 10px;
    line-height: 1.3;
}

.step-info p {
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.7;
    margin: 0;
}

.highlight-text {
    color: #FF8D3A;
    font-weight: 700;
    background: linear-gradient(120deg, rgba(255,141,58,0.1) 0%, rgba(255,141,58,0.2) 100%);
    padding: 2px 8px;
    border-radius: 4px;
}

.step-arrow {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, #f8f9ff, #e8ecf5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 900;
    color: #667eea;
    box-shadow: 0 4px 16px rgba(102,126,234,0.15);
    transition: all 0.4s ease;
    animation: arrow-pulse 2s ease-in-out infinite;
}

@keyframes arrow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

.flow-step:hover .step-arrow {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(102,126,234,0.35);
}

/* 后续流程分支 */
.flow-process-branch {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(135deg, #fff9f0 0%, #fff5eb 100%);
    border-radius: 20px;
    border: 3px dashed #FFB366;
    position: relative;
    animation: branch-appear 0.8s ease-out 0.7s backwards;
}

@keyframes branch-appear {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.branch-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 800;
    color: #E5732A;
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 15px;
}

.branch-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #FF8D3A, transparent);
    border-radius: 2px;
}

.branch-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.branch-item {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 6px 20px rgba(255,141,58,0.1);
    border: 2px solid #ffe8d5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.branch-item:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 14px 36px rgba(255,141,58,0.2);
    border-color: #FFB366;
}

.branch-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #FFB366, #FF9933);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 1.3rem;
    box-shadow: 0 6px 18px rgba(255,153,51,0.35);
    transition: all 0.4s ease;
}

/* 后续流程图标 - 使用sci07-09图片 */
.branch-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: white;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow:
        0 4px 16px rgba(255,153,51,0.15),
        0 2px 6px rgba(0,0,0,0.05);
    border: 2px solid #ffe8d5;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.branch-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FFB366, #FF9933);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.branch-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

.branch-item:hover .branch-number {
    transform: rotate(360deg) scale(1.15);
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
}

.branch-item:hover .branch-icon {
    transform: scale(1.1) rotate(-5deg);
    border-color: transparent;
    box-shadow:
        0 8px 24px rgba(255,141,58,0.25),
        0 4px 12px rgba(0,0,0,0.08);
}

.branch-item:hover .branch-icon::before {
    opacity: 1;
}

.branch-item:hover .branch-icon img {
    filter: brightness(1.15) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.branch-guarantee {
    background: linear-gradient(135deg, #fff0f0 0%, #ffe8e8 100%);
    border: 2px solid #ffb3b3;
}

.branch-guarantee:hover {
    border-color: #e74c3c;
    box-shadow: 0 14px 36px rgba(231,76,60,0.2);
}

.branch-guarantee .branch-number {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 6px 18px rgba(231,76,60,0.4);
}

.branch-guarantee:hover .branch-number {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

/* 第09个退款保障特殊图标 */
.branch-icon-special {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: linear-gradient(135deg, #fff0f0, #ffe8e8);
    border-color: #ffb3b3;
    box-shadow:
        0 6px 20px rgba(231,76,60,0.18),
        0 2px 8px rgba(0,0,0,0.05);
}

.branch-icon-special::before {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.branch-guarantee:hover .branch-icon-special {
    transform: scale(1.15) rotate(-5deg);
    border-color: transparent;
    box-shadow:
        0 10px 28px rgba(231,76,60,0.3),
        0 4px 12px rgba(0,0,0,0.08);
}

.branch-content h5 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #2d3436;
    margin-bottom: 8px;
}

.branch-guarantee .branch-content h5 {
    color: #e74c3c;
}

.branch-content p {
    font-size: 0.93rem;
    color: #636e72;
    line-height: 1.7;
    margin: 0;
}

/* ===== CTA Buttons Section ===== */
.cta-buttons-section {
    background:
        radial-gradient(ellipse at top, rgba(102,126,234,0.18) 0%, transparent 65%),
        radial-gradient(ellipse at bottom, rgba(255,141,58,0.12) 0%, transparent 65%),
        linear-gradient(180deg, #e8ecf5 0%, #dde4f1 50%, #e8ecf5 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.cta-buttons-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(102,126,234,0.08) 0%, transparent 55%),
        radial-gradient(circle at 80% 70%, rgba(255,141,58,0.08) 0%, transparent 55%);
    pointer-events: none;
}

.cta-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 35px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.cta-primary {
    background: white;
    color: #2d3436;
}

.cta-primary:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
}

.cta-secondary {
    background: rgba(255,255,255,0.95);
    color: #2d3436;
}

.cta-secondary:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,0.25);
    background: white;
}

.cta-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-shadow: 0 6px 16px rgba(102,126,234,0.3);
    transition: all 0.4s ease;
}

.cta-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.4s ease;
}

.cta-btn:hover .cta-icon {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
}

.cta-btn:hover .cta-icon img {
    filter: brightness(1.1) invert(1) drop-shadow(0 2px 4px rgba(255,255,255,0.4));
}

.cta-text h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: inherit;
}

.cta-text p {
    font-size: 0.92rem;
    margin: 0;
    opacity: 0.85;
    color: inherit;
}

/* ===== 独特之处 Section ===== */
.advantages-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 80px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    border-radius: 16px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102,126,234,0.08);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 36px rgba(102,126,234,0.15);
    border-color: transparent;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-number {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 4px 14px rgba(102,126,234,0.25);
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-number {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
}

.advantage-content {
    flex: 1;
}

.advantage-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
    line-height: 1.4;
}

.advantage-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #636e72;
    line-height: 1.7;
}

.advantage-guarantee-card {
    background: linear-gradient(135deg, #fff9f0 0%, #ffe8d5 100%);
    border: 2px solid #FFB366;
    grid-column: 1 / -1;
    max-width: 100%;
}

.advantage-guarantee-card::before {
    background: linear-gradient(180deg, #FF8D3A, #E5732A);
    opacity: 1;
}

.advantage-number-special {
    width: 58px;
    height: 58px;
    font-size: 1.25rem;
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
    box-shadow: 0 6px 18px rgba(255,141,58,0.35);
}

.advantage-guarantee-card:hover {
    box-shadow: 0 16px 44px rgba(255,141,58,0.25);
    border-color: #FF9933;
}

.advantage-guarantee-card:hover .advantage-number-special {
    transform: scale(1.15) rotate(360deg);
}
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
}

.advantages-image img:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 40px rgba(102,126,234,0.2);
}

/* ===== 编辑团队 Section ===== */
.team-section {
    background: white;
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-section .text-center {
    margin-top: 50px;
}

.team-member-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    border: 2px solid #eef1f6;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(102,126,234,0.18);
    border-color: rgba(102,126,234,0.25);
}

.member-photo {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa, #e8ecf1);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.team-member-card:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    padding: 24px;
    text-align: center;
}

.member-info h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 8px;
}

.member-title {
    font-size: 0.98rem;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 10px !important;
}

.member-desc {
    font-size: 0.9rem;
    color: #636e72;
    line-height: 1.65;
    margin-bottom: 18px !important;
}

.btn-consult {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(102,126,234,0.3);
}

.btn-consult:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(102,126,234,0.45);
    background: linear-gradient(135deg, #FF8D3A, #E5732A);
}

/* ===== 数据统计 Section ===== */
.stats-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 2px solid rgba(255,255,255,0.15);
    transition: all 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.25);
    box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.stat-number {
    font-size: 3.2rem;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.stat-unit {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 0.96rem;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    line-height: 1.5;
}

/* ===== 成功案例 Section - 复用translation-v2样式 ===== */

/* ===== 常见问题 Section - 复用translation-v2样式 ===== */

/* ===== CTA Section - 复用translation-v2样式 ===== */

/* ===== 响应式设计 ===== */
@media (max-width: 992px) {
    .scifull-hero .hero-container {
        grid-template-columns: 1fr;  /* 移动端单列：上图下文或上文下图 */
        gap: 40px;
    }

    .scifull-hero {
        padding: 60px 0;
    }

    .scifull-hero .hero-title {
        font-size: 2.4rem;
    }

    /* 移动端：图片放在文字上方 */
    .hero-image {
        order: -1;  /* 图片移到第一行 */
    }

    .advantages-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advantages-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .scifull-hero {
        padding: 50px 0;
    }

    .scifull-hero .hero-title {
        font-size: 2rem;
    }

    .scifull-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .scifull-hero .hero-description {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        padding: 14px 30px;
    }

    .audience-grid,
    .features-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .cta-buttons-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .target-audience-section,
    .features-section,
    .process-section,
    .advantages-section,
    .team-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .scifull-hero .hero-title {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .process-outcomes {
        grid-template-columns: 1fr;
    }
}

/* ===== 成功案例展示（现代化设计） ===== */

.cases-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 90px 0;
}

.case-swiper-wrapper {
    margin-top: 50px;
    max-width: 100%;
    width: 100%;
    overflow: hidden;
}

.case-swiper {
    overflow: visible !important;
    padding-bottom: 90px !important;
}

.case-swiper .swiper-slide {
    height: auto !important;
    width: 100% !important;
}

.case-swiper .case-pagination .swiper-pagination-switch {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #d5dae6;
    border-radius: 50%;
    margin: 0 8px !important;
    opacity: 1;
    transition: all 0.4s ease;
    cursor: pointer;
}

.case-swiper .case-pagination .swiper-pagination-switch:hover {
    background: #b8c1d4;
    transform: scale(1.15);
}

.case-swiper .case-pagination .swiper-active-switch {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 3px 12px rgba(102,126,234,0.35);
    transform: scale(1.25);
}

.case-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1200px;
}

.case-item {
    background: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 6px 28px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(102,126,234,0.06);
    position: relative;
    display: flex;
    flex-direction: column;
}

.case-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #FF8D3A);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-item:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 50px rgba(102,126,234,0.18);
    border-color: transparent;
}

.case-item:hover::before {
    opacity: 1;
}

.case-img {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.case-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(102,126,234,0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-item:hover .case-img::after {
    opacity: 1;
}

.case-img img {
    max-width: 160px;
    max-height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.1));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.case-item:hover .case-img img {
    transform: scale(1.1) rotate(-2deg);
    filter: drop-shadow(0 8px 24px rgba(102,126,234,0.2));
}

.case-info {
    flex: 1;
    padding: 20px 20px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: white;
}

.case-info h3 {
    font-size: 14px;
    color: #2d3436;
    line-height: 1.5;
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.case-info h3 span {
    font-weight: 700;
    color: #555;
    font-size: 13px;
    letter-spacing: 0.3px;
    flex-shrink: 0;
}

.case-info h3 em {
    color: #667eea;
    font-style: normal;
    font-weight: 600;
    word-break: break-word;
    transition: all 0.35s ease;
    line-height: 1.4;
}

.case-item:hover .case-info h3 em {
    color: #FF8D3A;
}

.case-info h5 {
    font-size: 12.5px;
    color: #444;
    line-height: 1.55;
    margin: 4px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
    font-weight: 400;
}

.case-info h5 i {
    font-style: normal;
    font-weight: 700;
    color: #333;
    margin-right: 4px;
}

.case-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid #f0f2f5;
}

.case-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.case-meta-item strong {
    color: #667eea;
    font-weight: 700;
    min-width: fit-content;
}

.case-impact {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 7px 14px;
    background: linear-gradient(135deg, #fff9f0 0%, #ffecd2 100%);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    color: #FF8D3A;
    letter-spacing: 0.5px;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(255,141,58,0.15);
    transition: all 0.35s ease;
}

.case-item:hover .case-impact {
    background: linear-gradient(135deg, #FF8D3A 0%, #E5732A 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(255,141,58,0.3);
}

.case-item-empty {
    text-align: center;
    padding: 80px 30px;
    color: #999;
    font-size: 16px;
    grid-column: 1 / -1;
    background: #fafbfc;
    border-radius: 20px;
    border: 2px dashed #d5dae6;
}

@media (max-width: 1100px) {
    .case-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
        max-width: 750px;
        margin: 0 auto;
    }
}

@media (max-width: 700px) {
    .case-list {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 420px;
        margin: 0 auto;
    }

    .case-img {
        height: 200px;
        padding: 18px;
    }

    .case-img img {
        max-width: 140px;
        max-height: 160px;
    }

    .case-info {
        padding: 20px 18px 18px 18px;
    }
}