/* ========================================
   恒创新域建站 - 内部页面样式
   ======================================== */

/* ===== custom-development.html 专属样式 ===== */

/* 代码背景头部 */
.code-bg-section {
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 50%, #fff5f7 100%);
    padding: 100px 60px;
    position: relative;
    overflow: hidden;
}

.code-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 40px,
            rgba(196, 248, 110, 0.03) 40px,
            rgba(196, 248, 110, 0.03) 41px
        );
    pointer-events: none;
}

.badge-pink {
    display: inline-block;
    padding: 8px 20px;
    background: var(--color-pink);
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.gradient-text {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-dark) 0%, #666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 25px;
    line-height: 1.2;
}

.lead-text {
    font-size: 20px;
    color: var(--color-text);
    max-width: 650px;
    line-height: 1.8;
}

.code-snippet-decoration {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 14px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(196, 248, 110, 0.2);
}

.code-line {
    margin-bottom: 8px;
    white-space: nowrap;
}

.c-purple { color: #9b59b6; }
.c-blue { color: #3498db; }
.c-green { color: #27ae60; }
.c-orange { color: #e67e22; }

/* 开发流程部分 */
.dev-process-section {
    padding: 80px 60px;
}

.section-title-block {
    margin-bottom: 60px;
}

.section-title-block h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.section-title-block.center {
    text-align: center;
}

.title-line {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    border-radius: 3px;
}

.section-title-block.center .title-line {
    margin: 0 auto;
}

.process-grid-unique {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
}

.process-card {
    background: var(--color-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, var(--color-lime), var(--color-pink));
    transition: height 0.4s ease;
}

.process-card:hover::before {
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(196, 248, 110, 0.25);
}

.card-large {
    grid-column: 1 / 2;
}

.card-offset {
    grid-column: 2 / 3;
}

.card-wide {
    grid-column: 1 / 3;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.card-offset-right {
    grid-column: 2 / 3;
    margin-top: 40px;
}

.card-icon-box {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.lime-bg {
    background: linear-gradient(135deg, var(--color-lime), #d4fc79);
}

.pink-bg {
    background: linear-gradient(135deg, var(--color-pink), #ffc3d6);
}

.process-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 14px;
    color: var(--color-text);
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-lime);
    font-weight: 900;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.tech-tags span {
    padding: 6px 15px;
    background: var(--color-gray);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
}

.code-preview-mini {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding: 12px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 13px;
}

.cp-tag {
    color: #e74c3c;
}

.cp-status {
    color: #27ae60;
    font-weight: 700;
}

/* 技术栈气泡 */
.tech-stack-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fff9 100%);
}

.tech-bubble-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.tech-bubble {
    padding: 15px 30px;
    background: var(--color-white);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: default;
}

.tech-bubble:hover {
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    transform: scale(1.1) rotate(-3deg);
    box-shadow: 0 15px 40px rgba(196, 248, 110, 0.4);
}

.b1 { animation: float 3s ease-in-out infinite; }
.b2 { animation: float 3.5s ease-in-out infinite 0.5s; }
.b3 { animation: float 4s ease-in-out infinite 1s; }
.b4 { animation: float 3.2s ease-in-out infinite 1.5s; }
.b5 { animation: float 3.8s ease-in-out infinite 2s; }
.b6 { animation: float 4.2s ease-in-out infinite 2.5s; }
.b7 { animation: float 3.3s ease-in-out infinite 3s; }
.b8 { animation: float 3.7s ease-in-out infinite 3.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 对比部分 */
.comparison-section {
    padding: 0;
    display: flex;
    min-height: 500px;
}

.comp-split {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.left-side {
    background: #f5f5f5;
}

.right-side {
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
}

.comp-label {
    display: inline-block;
    padding: 10px 25px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 30px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.comp-label.bad {
    background: #e0e0e0;
    color: #777;
}

.comp-label.good {
    background: var(--color-lime);
    color: var(--color-dark);
}

.cross-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cross-list li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    color: #666;
}

.cross-list li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: 900;
}

.check-list-white {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list-white li {
    padding: 15px 0;
    padding-left: 35px;
    position: relative;
    font-size: 16px;
    color: var(--color-dark);
    font-weight: 600;
}

.check-list-white li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-lime);
    font-weight: 900;
    font-size: 18px;
}

/* CTA 部分 */
.cta-dev-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--color-dark) 0%, #333 100%);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-box h2 {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 40px;
}

.btn-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(196, 248, 110, 0.7); }
    70% { box-shadow: 0 0 0 20px rgba(196, 248, 110, 0); }
    100% { box-shadow: 0 0 0 0 rgba(196, 248, 110, 0); }
}

/* 响应式调整 */
@media (max-width: 992px) {
    .code-snippet-decoration {
        display: none;
    }
    
    .process-grid-unique {
        grid-template-columns: 1fr;
    }
    
    .card-large,
    .card-offset,
    .card-wide,
    .card-offset-right {
        grid-column: 1 / -1;
        margin-top: 0;
    }
    
    .card-wide {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .comparison-section {
        flex-direction: column;
    }
    
    .gradient-text {
        font-size: 38px;
    }
}

@media (max-width: 768px) {
    .code-bg-section,
    .dev-process-section,
    .tech-stack-section,
    .cta-dev-section {
        padding: 50px 25px;
    }
    
    .comp-split {
        padding: 50px 25px;
    }
    
    .gradient-text {
        font-size: 32px;
    }
    
    .cta-box h2 {
        font-size: 32px;
    }
}

/* 页面头部 */
.page-header {
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-white) 100%);
    padding: 80px 60px;
    border-radius: 30px;
    margin-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 18px;
    color: var(--color-text);
    max-width: 700px;
    position: relative;
    z-index: 2;
}

/* 面包屑导航 */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: #999;
}

.breadcrumb a {
    color: var(--color-lime);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-pink);
}

.breadcrumb span {
    color: #ccc;
}

/* 内容区块 */
.content-block {
    background: var(--color-white);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-card);
}

.content-block h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--color-lime);
}

.content-block p {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 20px;
}

/* 特性列表 */
.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    background: var(--color-gray);
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-white) 100%);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--color-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
}

/* 服务流程 */
.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '→';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: var(--color-pink);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--color-dark);
}

.process-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 10px;
}

/* 案例展示 */
.case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.case-item {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.case-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 30px 70px rgba(196, 248, 110, 0.35);
}

.case-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-info {
    padding: 30px;
}

.case-category {
    display: inline-block;
    padding: 6px 15px;
    background: var(--color-lime);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.case-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.case-desc {
    font-size: 14px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 20px;
}

.case-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.case-tag {
    padding: 5px 12px;
    background: var(--color-gray);
    border-radius: 15px;
    font-size: 12px;
    color: var(--color-text);
}

/* 团队展示 */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background: var(--color-white);
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 181, 197, 0.3);
}

.team-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-info {
    padding: 25px;
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.team-role {
    font-size: 14px;
    color: var(--color-pink);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    font-size: 13px;
    color: var(--color-text);
    line-height: 1.6;
}

/* 联系表单 */
.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--color-gray);
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
    background: var(--color-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-lime);
    box-shadow: 0 0 0 4px rgba(196, 248, 110, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    display: inline-block;
    padding: 16px 50px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.3);
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(196, 248, 110, 0.5);
}

/* FAQ 样式 */
.faq-list {
    margin-top: 40px;
}

.faq-item {
    background: var(--color-white);
    border-radius: 18px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.faq-question {
    padding: 25px 30px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--color-gray);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
}

/* 价格表 */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.pricing-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--color-lime) 0%, var(--color-white) 100%);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 70px rgba(196, 248, 110, 0.35);
}

.pricing-card.featured:hover {
    transform: translateY(-15px) scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--color-pink);
    color: var(--color-dark);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
}

.pricing-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-pink);
    margin-bottom: 30px;
}

.pricing-price span {
    font-size: 16px;
    color: var(--color-text);
}

.pricing-features {
    text-align: left;
    margin-bottom: 35px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px dashed var(--color-gray);
    font-size: 15px;
    color: var(--color-text);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    display: inline-block;
    padding: 15px 40px;
    background: var(--color-dark);
    color: var(--color-white);
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
}

.pricing-btn:hover {
    background: var(--color-lime);
    color: var(--color-dark);
}

/* 新闻详情页 */
.article-content {
    font-size: 17px;
    line-height: 2;
    color: var(--color-text);
}

.article-content img {
    max-width: 100%;
    border-radius: 15px;
    margin: 30px 0;
}

.article-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--color-gray);
}

.article-meta span {
    font-size: 14px;
    color: #999;
}

.related-news {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid var(--color-gray);
}

/* 响应式调整 */
@media (max-width: 992px) {
    .page-header {
        padding: 50px 30px;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .content-block {
        padding: 30px;
    }
    
    .process-step::after {
        display: none;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .case-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
}

/* ===== design-service.html 专属样式 ===== */

/* 头部飞盘轨迹区 */
.header-disc-zone {
    position: relative;
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 50%, #fff5f7 100%);
    border-radius: 0 0 60px 60px;
    overflow: hidden;
}

.disc-trajectory {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.trajectory-dot {
    width: 16px;
    height: 16px;
    background: var(--color-pink);
    border-radius: 50%;
    animation: pulseDot 2s infinite;
}

.trajectory-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    margin: 0 15px;
    border-radius: 2px;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.gradient-title {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-dark) 0%, #ff8fa3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.subtitle-fly {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.deco-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape-circle {
    position: absolute;
    top: -30px;
    right: 10%;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(196, 248, 110, 0.3);
    border-radius: 50%;
    animation: floatShape 6s infinite ease-in-out;
}

.shape-blob {
    position: absolute;
    bottom: -20px;
    left: 15%;
    width: 100px;
    height: 100px;
    background: rgba(255, 143, 163, 0.1);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: floatShape 8s infinite ease-in-out reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* 设计哲学卡片 */
.design-philosophy-zone {
    padding: 60px 40px;
}

.philosophy-card {
    background: #fff;
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid #f0f0f0;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.philosophy-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
}

.card-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: var(--color-lime);
    color: var(--color-dark);
    padding: 6px 18px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(196, 248, 110, 0.4);
}

.philosophy-card h2 {
    font-size: 36px;
    color: var(--color-dark);
    margin-bottom: 20px;
    font-weight: 800;
}

.lead-text {
    font-size: 18px;
    color: var(--color-dark);
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.7;
}

.philosophy-card > p:not(.lead-text) {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.philosophy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.philosophy-tags .tag {
    background: linear-gradient(135deg, #f0fff0, #fff5f7);
    color: var(--color-dark);
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(196, 248, 110, 0.3);
    transition: all 0.3s ease;
}

.philosophy-tags .tag:hover {
    background: var(--color-pink);
    color: #fff;
    transform: translateY(-3px);
}

/* 阶梯式案例展示区 */
.case-showcase-zone {
    padding: 60px 40px;
    background: #fafafa;
}

.zone-title {
    text-align: center;
    margin-bottom: 50px;
}

.title-tag {
    display: inline-block;
    background: var(--color-dark);
    color: #fff;
    padding: 5px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 15px;
    margin-bottom: 15px;
}

.zone-title h3 {
    font-size: 32px;
    color: var(--color-dark);
    font-weight: 800;
}

.staircase-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stair-item {
    transition: transform 0.4s ease;
}

.stair-item:hover {
    transform: translateX(10px);
}

.stair-right {
    align-self: flex-end;
    padding-left: 80px;
}

.stair-center-wide {
    align-self: center;
    width: 100%;
    max-width: 900px;
}

.case-fly-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.case-fly-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.case-fly-card.wide-card {
    display: flex;
    flex-direction: row;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
}

.case-fly-card .case-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.case-fly-card:hover .case-img {
    transform: scale(1.08);
}

.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 248, 110, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-fly-card:hover .hover-overlay {
    opacity: 1;
}

.overlay-icon {
    font-size: 48px;
    animation: bounceIn 0.6s ease;
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.card-content {
    padding: 30px;
}

.wide-card .card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-pill {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.category-pill.manufacturing {
    background: #e8f5e9;
    color: #2e7d32;
}

.category-pill.medical {
    background: #e3f2fd;
    color: #1976d2;
}

.category-pill.education {
    background: #fce4ec;
    color: #c2185b;
}

.card-content h4 {
    font-size: 22px;
    color: var(--color-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-link {
    display: inline-block;
    color: var(--color-pink);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: var(--color-lime);
    transform: translateX(5px);
}

/* 微缩流程区 */
.mini-process-zone {
    padding: 60px 40px;
}

.process-flow-horizontal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: linear-gradient(135deg, var(--color-dark), #333);
    border-radius: 30px;
    color: #fff;
}

.flow-step {
    text-align: center;
    flex: 1;
    min-width: 120px;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--color-lime);
    color: var(--color-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    margin: 0 auto 12px;
    box-shadow: 0 8px 20px rgba(196, 248, 110, 0.4);
}

.flow-step.highlight .step-number {
    background: var(--color-pink);
    box-shadow: 0 8px 20px rgba(255, 143, 163, 0.4);
}

.flow-step h5 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
}

.flow-step p {
    font-size: 12px;
    opacity: 0.8;
}

.flow-arrow {
    font-size: 24px;
    color: var(--color-lime);
    opacity: 0.6;
}

@media (max-width: 768px) {
    .gradient-title {
        font-size: 32px;
    }
    
    .stair-right {
        padding-left: 0;
    }
    
    .case-fly-card.wide-card {
        flex-direction: column;
    }
    
    .process-flow-horizontal {
        flex-direction: column;
        gap: 30px;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
}

/* ===== case-show.html 专属样式 ===== */

/* 聚光灯头部 */
.header-spotlight {
    position: relative;
    text-align: center;
    padding: 100px 40px;
    background: linear-gradient(135deg, #fff5f7 0%, #ffffff 50%, #f0fff0 100%);
    border-radius: 0 0 80px 80px;
    overflow: hidden;
}

.spotlight-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border: 2px dashed rgba(255, 143, 163, 0.3);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.spotlight-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.spotlight-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.float-star, .float-circle, .float-triangle {
    position: absolute;
    font-size: 24px;
    opacity: 0.6;
    animation: floatElement 4s infinite ease-in-out;
}

.float-star { top: 20%; left: 15%; color: var(--color-lime); animation-delay: 0s; }
.float-circle { top: 30%; right: 20%; color: var(--color-pink); animation-delay: 1s; }
.float-triangle { bottom: 25%; left: 25%; color: var(--color-dark); animation-delay: 2s; }

@keyframes floatElement {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* 筛选栏 */
.filter-bar-zone {
    padding: 40px;
    background: #fafafa;
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.filter-btn {
    padding: 12px 28px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-lime);
    border-color: var(--color-lime);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(196, 248, 110, 0.4);
}

/* 案例矩阵区 */
.case-matrix-zone {
    padding: 60px 40px;
}

.matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.item-large {
    grid-column: span 2;
}

.case-showcase-card {
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.case-showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.card-image-wrap {
    position: relative;
    overflow: hidden;
}

.card-image-wrap .case-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.case-showcase-card:hover .case-img {
    transform: scale(1.05);
}

.card-badge-top {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--color-dark);
    color: #fff;
    padding: 6px 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 20px;
    z-index: 2;
}

.card-badge-top.hot {
    background: var(--color-pink);
}

.card-hover-actions {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-showcase-card:hover .card-hover-actions {
    opacity: 1;
}

.action-btn {
    padding: 10px 22px;
    background: #fff;
    color: var(--color-dark);
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--color-lime);
    transform: scale(1.05);
}

.card-info-panel {
    padding: 30px;
}

.industry-tag {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tag-manufacturing { background: #e8f5e9; color: #2e7d32; }
.tag-medical { background: #e3f2fd; color: #1976d2; }
.tag-education { background: #fce4ec; color: #c2185b; }

.card-info-panel h3 {
    font-size: 22px;
    color: var(--color-dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.card-info-panel p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.stack-item {
    padding: 5px 12px;
    background: #f5f5f5;
    border-radius: 15px;
    font-size: 11px;
    color: #666;
    font-weight: 600;
}

.case-meta {
    display: flex;
    gap: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.meta-item {
    font-size: 13px;
    color: #888;
}

/* 数据统计栏 */
.stats-bar-zone {
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--color-dark), #333);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

.stat-label {
    color: #ccc;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--color-lime), var(--color-pink));
    opacity: 0.5;
}

@media (max-width: 1024px) {
    .item-large {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .spotlight-title {
        font-size: 36px;
    }
    
    .filter-container {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .matrix-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-container {
        flex-direction: column;
    }
    
    .stat-divider {
        width: 60px;
        height: 2px;
    }
}


/* ========================================
   about.html 专属样式 - 小众不撞款设计
   ======================================== */

/* Hero 区域 */
.about-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 40%, #fff5f7 100%);
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 60px;
}

.hero-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    opacity: 0.6;
}

.wave-path {
    fill: var(--color-lime);
    opacity: 0.3;
}

.wave-1 { animation: waveMove 8s ease-in-out infinite; }
.wave-2 { animation: waveMove 10s ease-in-out infinite reverse; opacity: 0.2; }
.wave-3 { animation: waveMove 12s ease-in-out infinite 1s; opacity: 0.15; }

@keyframes waveMove {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-20px) scaleY(1.1); }
}

.about-hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 40px;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--color-pink), #ffc3d6);
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 25px;
    box-shadow: 0 8px 30px rgba(255, 181, 197, 0.3);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hero-title-glitch {
    font-size: 72px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 20px;
    position: relative;
    letter-spacing: 5px;
    text-shadow: 3px 3px 0 var(--color-lime), -2px -2px 0 var(--color-pink);
}

.hero-subtitle {
    font-size: 22px;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 300;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: #999;
    font-size: 13px;
    letter-spacing: 2px;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--color-pink);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: var(--color-lime);
    border-radius: 3px;
    animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(25px); }
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: floatShape 6s ease-in-out infinite;
}

.shape-circle {
    width: 80px;
    height: 80px;
    background: var(--color-lime);
    top: 15%;
    left: 10%;
    border-radius: 50%;
    animation-delay: 0s;
}

.shape-square {
    width: 60px;
    height: 60px;
    background: var(--color-pink);
    bottom: 25%;
    right: 15%;
    border-radius: 15px;
    animation-delay: 1.5s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 70px solid var(--color-lime);
    top: 60%;
    left: 20%;
    opacity: 0.3;
    animation-delay: 3s;
}

.shape-diamond {
    width: 50px;
    height: 50px;
    background: var(--color-pink);
    top: 30%;
    right: 25%;
    transform: rotate(45deg);
    opacity: 0.35;
    animation-delay: 2s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(180deg); }
}

.about-intro-section { padding: 40px 0; }

.intro-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: stretch;
}

.intro-card-main {
    background: var(--color-white);
    border-radius: 30px;
    padding: 60px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.intro-card-main:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(196, 248, 110, 0.25);
}

.card-header-decorative {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 35px;
}

.decorative-line {
    flex: 1;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-lime), transparent);
}

.decorative-dot {
    width: 12px;
    height: 12px;
    background: var(--color-pink);
    border-radius: 50%;
    flex-shrink: 0;
}

.intro-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--color-dark);
    letter-spacing: 2px;
}

.card-body-content .intro-lead {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 4px solid var(--color-lime);
}

.card-body-content .intro-text {
    font-size: 16px;
    line-height: 2;
    color: var(--color-text);
    margin-bottom: 35px;
}

.card-body-content .intro-text strong {
    color: var(--color-dark);
    font-weight: 700;
    position: relative;
}

.card-body-content .intro-text strong::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    opacity: 0.5;
}

.mission-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f0fff0 0%, #fff5f7 100%);
    border-radius: 20px;
    border: 2px dashed var(--color-pink);
}

.mission-icon { font-size: 42px; flex-shrink: 0; }
.mission-text strong { display: block; font-size: 18px; color: var(--color-dark); margin-bottom: 8px; }
.mission-text p { font-size: 15px; color: var(--color-text); line-height: 1.6; margin: 0; }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-item {
    background: var(--color-white);
    border-radius: 24px;
    padding: 35px 35px;
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-item:hover::before { transform: scaleX(1); }
.stat-item:hover { transform: translateY(-6px); }

.stat-number {
    font-size: 52px;
    font-weight: 900;
    color: var(--color-dark);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-unit {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-pink);
    margin-left: 5px;
}

.stat-label {
    font-size: 14px;
    color: #999;
    font-weight: 600;
    letter-spacing: 1px;
}

.values-section { padding: 80px 0; }

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 24px;
    background: var(--color-lime);
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.section-heading {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.heading-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    border-radius: 3px;
    margin: 0 auto;
}

.values-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.value-card {
    background: var(--color-white);
    border-radius: 28px;
    padding: 45px 45px;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 181, 197, 0.1);
}

.value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 248, 110, 0.05), rgba(255, 181, 197, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.value-card:hover::before { opacity: 1; }
.value-card:hover { transform: translateY(-12px) scale(1.02); box-shadow: 0 35px 80px rgba(196, 248, 110, 0.3); }

.value-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-lime), #d4fc79);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 38px;
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.3);
    position: relative;
    z-index: 1;
}

.value-card-2 .value-icon-box { background: linear-gradient(135deg, var(--color-pink), #ffc3d6); }
.value-card-3 .value-icon-box { background: linear-gradient(135deg, #a8e6cf, var(--color-lime)); }
.value-card-4 .value-icon-box { background: linear-gradient(135deg, #ffd3b6, var(--color-pink)); }

.value-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.value-desc {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text);
    position: relative;
    z-index: 1;
}

.value-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--color-pink) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: 50%;
}

.philosophy-section { padding: 80px 0; }

.philosophy-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--color-white);
    border-radius: 35px;
    padding: 70px;
    box-shadow: var(--shadow-card);
}

.philosophy-left { position: relative; }

.quote-mark-large {
    font-size: 120px;
    line-height: 1;
    color: var(--color-lime);
    opacity: 0.3;
    position: absolute;
    top: -40px;
    left: -30px;
    font-family: Georgia, serif;
}

.philosophy-quote {
    margin: 0;
    padding: 30px 0 30px 40px;
    border-left: 5px solid var(--color-pink);
    background: linear-gradient(135deg, #f9f9f9 0%, #fff5f7 100%);
    border-radius: 0 20px 20px 0;
}

.philosophy-quote p {
    font-size: 18px;
    line-height: 2;
    color: var(--color-text);
    font-style: italic;
    margin: 0;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
    padding-left: 40px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--color-dark);
}

.author-info { display: flex; flex-direction: column; }
.author-info strong { font-size: 18px; color: var(--color-dark); }
.author-info span { font-size: 13px; color: #999; }

.commitment-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 25px 30px;
    border-radius: 18px;
    transition: var(--transition);
}

.commitment-item:hover {
    background: linear-gradient(135deg, #f0fff0 0%, #fff5f7 100%);
    transform: translateX(10px);
}

.commitment-check {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-weight: 900;
    font-size: 16px;
    flex-shrink: 0;
}

.commitment-content { display: flex; flex-direction: column; }
.commitment-content strong { font-size: 17px; color: var(--color-dark); margin-bottom: 5px; }
.commitment-content span { font-size: 14px; color: var(--color-text); line-height: 1.5; }

.cta-about-section { padding: 60px 0 100px; }

.cta-container {
    position: relative;
    background: linear-gradient(135deg, var(--color-dark) 0%, #1a1a1a 100%);
    border-radius: 35px;
    padding: 80px 60px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cta-content-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 42px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.cta-subtitle {
    font-size: 18px;
    color: #ccc;
    margin-bottom: 45px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--color-lime), #d4fc79);
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 15px 40px rgba(196, 248, 110, 0.4);
}

.btn-cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(196, 248, 110, 0.6);
}

.btn-arrow {
    width: 22px;
    height: 22px;
    stroke: var(--color-dark);
    transition: var(--transition);
}

.btn-cta-primary:hover .btn-arrow { transform: translateX(5px); }

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    padding: 18px 40px;
    background: transparent;
    color: var(--color-white);
    font-size: 17px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: var(--transition);
}

.btn-cta-secondary:hover {
    border-color: var(--color-lime);
    color: var(--color-lime);
    transform: translateY(-3px);
}

.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(196, 248, 110, 0.2);
}

.deco-1 { width: 200px; height: 200px; top: -80px; right: -60px; }
.deco-2 { width: 150px; height: 150px; bottom: -50px; left: -40px; border-color: rgba(255, 181, 197, 0.2); }
.deco-3 { width: 100px; height: 100px; top: 50%; right: 10%; border-color: rgba(255, 255, 255, 0.1); }

@media (max-width: 1024px) {
    .hero-title-glitch { font-size: 56px; }
    .intro-container { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 30px; }
    .philosophy-wrapper { grid-template-columns: 1fr; gap: 40px; padding: 50px; }
}

@media (max-width: 768px) {
    .about-hero-section { min-height: 70vh; border-radius: 20px; }
    .hero-title-glitch { font-size: 40px; text-shadow: 2px 2px 0 var(--color-lime), -1px -1px 0 var(--color-pink); }
    .hero-subtitle { font-size: 17px; }
    .floating-elements { display: none; }
    .intro-card-main { padding: 40px 30px; }
    .intro-title { font-size: 28px; }
    .stats-grid { grid-template-columns: 1fr 1fr; gap: 15px; }
    .stat-item { padding: 25px 20px; }
    .stat-number { font-size: 40px; }
    .values-showcase { grid-template-columns: 1fr; }
    .philosophy-wrapper { padding: 35px; }
    .quote-mark-large { font-size: 80px; top: -20px; left: -15px; }
    .philosophy-quote { padding: 20px 0 20px 25px; }
    .quote-author { padding-left: 25px; }
    .cta-container { padding: 50px 30px; border-radius: 25px; }
    .cta-title { font-size: 28px; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; }
}

/* ========================================
   design-service.html 专属样式
   ======================================== */

/* Hero 区域 */
.design-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 60px;
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 50%, #fff5f7 100%);
    border-radius: 30px;
    margin-bottom: 80px;
    overflow: hidden;
}

.hero-wave-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23C4F86E' fill-opacity='0.1' d='M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.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'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    animation: waveMove 15s ease-in-out infinite;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0) scaleY(1); }
    50% { transform: translateX(-20px) scaleY(1.05); }
}

.floating-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    opacity: 0.15;
    animation: floatShape 8s ease-in-out infinite;
}

.shape-circle {
    width: 120px;
    height: 120px;
    border: 3px solid var(--color-lime);
    border-radius: 50%;
    top: 15%;
    right: 12%;
    animation-delay: 0s;
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 90px solid var(--color-pink);
    top: 60%;
    left: 8%;
    animation-delay: 2s;
    opacity: 0.1;
}

.shape-square {
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-pink);
    top: 25%;
    left: 15%;
    animation-delay: 4s;
    transform: rotate(45deg);
}

.shape-diamond {
    width: 100px;
    height: 100px;
    border: 3px solid var(--color-lime);
    bottom: 20%;
    right: 20%;
    animation-delay: 6s;
    transform: rotate(45deg);
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-25px) rotate(10deg); }
}

.hero-content-wrapper {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

.badge-animated {
    display: inline-block;
    padding: 10px 28px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    color: var(--color-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    border-radius: 50px;
    margin-bottom: 30px;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(196, 248, 110, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(196, 248, 110, 0); }
}

.hero-main-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 19px;
    color: var(--color-text);
    line-height: 1.9;
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    padding: 18px 45px;
    background: linear-gradient(135deg, var(--color-lime), #d4fc79);
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(196, 248, 110, 0.6);
}

.btn-hero-secondary {
    padding: 18px 45px;
    background: transparent;
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid var(--color-pink);
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--color-pink);
    color: var(--color-white);
    transform: translateY(-5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.scroll-indicator span {
    width: 8px;
    height: 8px;
    background: var(--color-pink);
    border-radius: 50%;
    animation: scrollDot 1.5s ease-in-out infinite;
}

.scroll-indicator span:nth-child(2) { animation-delay: 0.2s; }
.scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollDot {
    0%, 100% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}

/* 设计理念部分 */
.philosophy-section {
    padding: 80px 60px;
}

.section-header-alt {
    text-align: center;
    margin-bottom: 60px;
}

.label-tag {
    display: inline-block;
    padding: 8px 22px;
    background: rgba(196, 248, 110, 0.15);
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.heading-display {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.divider-custom {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    border-radius: 3px;
    margin: 0 auto;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.philo-card {
    background: var(--color-white);
    padding: 45px 40px;
    border-radius: 28px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.philo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 0;
    background: linear-gradient(180deg, var(--color-lime), var(--color-pink));
    transition: height 0.4s ease;
}

.philo-card:hover::before {
    height: 100%;
}

.philo-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(196, 248, 110, 0.25);
}

.philo-large {
    grid-column: 1 / 2;
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 100%);
}

.philo-medium {
    grid-column: auto;
}

.philo-icon-wrap {
    width: 75px;
    height: 75px;
    border-radius: 22px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
}

.philo-icon-wrap svg {
    width: 38px;
    height: 38px;
    stroke: var(--color-dark);
}

.philo-card h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 18px;
}

.philo-card p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--color-text);
    margin-bottom: 22px;
}

.feature-dots {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-dots li {
    padding: 8px 0 8px 22px;
    position: relative;
    font-size: 14px;
    color: var(--color-text);
}

.feature-dots li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-lime);
    font-size: 18px;
    line-height: 1;
}

/* 时间轴流程部分 */
.process-timeline-section {
    padding: 80px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fff9 100%);
}

.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-lime), var(--color-pink));
    transform: translateX(-50%);
    border-radius: 3px;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    color: var(--color-dark);
    z-index: 5;
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.4);
}

.timeline-content {
    display: flex;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.timeline-item:nth-child(odd) .timeline-content {
    flex-direction: row-reverse;
}

.content-inner {
    flex: 1;
    background: var(--color-white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.content-inner:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196, 248, 110, 0.2);
}

.content-inner h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.content-inner p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: 20px;
}

.deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.deli-tag {
    padding: 8px 18px;
    background: rgba(196, 248, 110, 0.2);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-dark);
}

.timeline-visual {
    flex: 1;
}

.timeline-visual img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.timeline-visual img:hover {
    transform: scale(1.03);
}

/* 画廊案例部分 */
.portfolio-gallery-section {
    padding: 80px 60px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 50px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.gallery-large {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-img-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.gallery-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img-wrap img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 35px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    color: var(--color-white);
}

.overlay-category {
    display: inline-block;
    padding: 6px 16px;
    background: var(--color-lime);
    color: var(--color-dark);
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    margin-bottom: 12px;
}

.overlay-content h4 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.overlay-content p {
    font-size: 14px;
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
}

.btn-gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: transparent;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 700;
    border: 2px solid var(--color-lime);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-gallery-more svg {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.btn-gallery-more:hover {
    background: var(--color-lime);
    transform: translateX(10px);
}

.btn-gallery-more:hover svg {
    transform: translateX(5px);
}

/* CTA 最终区域 */
.cta-final-section {
    position: relative;
    padding: 100px 60px;
    background: var(--color-dark);
    border-radius: 30px;
    margin: 80px 60px;
    overflow: hidden;
}

.cta-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(196, 248, 110, 0.1) 0%, rgba(255, 181, 197, 0.1) 100%);
}

.cta-final-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 20px;
}

.cta-final-desc {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 45px;
}

.cta-final-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-final {
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.4);
}

.btn-cta-final:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(196, 248, 110, 0.6);
}

.btn-cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: transparent;
    color: var(--color-white);
    font-size: 17px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-phone svg {
    width: 22px;
    height: 22px;
}

.btn-cta-phone:hover {
    background: var(--color-white);
    color: var(--color-dark);
    border-color: var(--color-white);
    transform: translateY(-5px);
}

/* ========================================
   advantage.html 专属样式 - 核心优势专题
   ======================================== */

/* Hero 头部区域 */
.page-header {
    background: linear-gradient(135deg, #f0fff0 0%, #ffffff 50%, #fff5f7 100%);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 248, 110, 0.15) 0%, transparent 70%);
    animation: floatHero 8s ease-in-out infinite;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 181, 197, 0.12) 0%, transparent 70%);
    animation: floatHero 10s ease-in-out infinite reverse;
}

.page-header h1 {
    font-size: 56px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 20px;
    color: #666;
    position: relative;
    z-index: 1;
}

@keyframes floatHero {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* 六大优势卡片矩阵布局 */
.advantage-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 30px;
    padding: 60px;
}

.adv-card-1 {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    background: linear-gradient(145deg, #ffffff 0%, #f8fff8 100%);
    border: 2px solid rgba(196, 248, 110, 0.3);
    position: relative;
    overflow: visible;
}

.adv-card-1::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink), var(--color-lime));
    background-size: 200% 200%;
    z-index: -1;
    border-radius: inherit;
    animation: gradientBorder 4s ease infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.adv-card-1:hover::before {
    opacity: 1;
}

.adv-card-2 {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    background: linear-gradient(145deg, #fffbff 0%, #ffffff 100%);
    border-left: 4px solid var(--color-pink);
}

.adv-card-3 {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    background: linear-gradient(145deg, #f0fff0 0%, #ffffff 100%);
    border-left: 4px solid var(--color-lime);
}

.adv-card-4 {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.adv-card-4::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 248, 110, 0.2) 0%, transparent 70%);
}

.adv-card-4 h3,
.adv-card-4 p {
    color: #fff;
}

.adv-card-5 {
    background: linear-gradient(145deg, #fff9f0 0%, #ffffff 100%);
    border-top: 4px solid #ffa500;
}

.adv-card-6 {
    background: linear-gradient(145deg, #f0f8ff 0%, #ffffff 100%);
    border-top: 4px solid #4169e1;
}

/* 卡片通用增强样式 */
.advantage-layout .card {
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.advantage-layout .card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.advantage-layout .card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    color: var(--color-dark);
    font-size: 18px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(196, 248, 110, 0.4);
}

.advantage-layout .card-icon-box {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.advantage-layout .card:hover .card-icon-box {
    transform: scale(1.2) rotate(10deg);
}

.advantage-layout .card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--color-dark);
    line-height: 1.3;
}

.advantage-layout .card-desc {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
}

/* 技术栈标签 */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-tag {
    padding: 8px 16px;
    background: rgba(196, 248, 110, 0.2);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(196, 248, 110, 0.4);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: var(--color-lime);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* 检查列表 */
.check-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.check-list li {
    padding: 10px 0;
    font-size: 14px;
    color: #555;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.08);
    transition: padding-left 0.3s ease;
}

.check-list li:last-child {
    border-bottom: none;
}

.check-list li:hover {
    padding-left: 10px;
    color: var(--color-dark);
}

/* 数据实力见证区域 */
.stats-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 60px;
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 30px,
            rgba(196, 248, 110, 0.03) 30px,
            rgba(196, 248, 110, 0.03) 31px
        );
    pointer-events: none;
}

.stats-section .section-title {
    color: #fff;
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.stats-section .section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    margin: 20px auto 0;
    border-radius: 2px;
}

.stats-grid {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-row {
    display: grid;
    grid-template-columns: 140px 1fr 80px;
    align-items: center;
    gap: 30px;
    margin-bottom: 35px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-row:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.stat-bar {
    height: 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    border-radius: 6px;
    position: relative;
    animation: fillBar 1.5s ease-out forwards;
    min-width: 0;
}

.stat-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 30px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes fillBar {
    from { width: 0; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.stat-value {
    font-size: 22px;
    font-weight: 900;
    color: var(--color-lime);
    text-align: right;
    min-width: 80px;
}

/* 荣誉资质墙 */
.badge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 20px;
}

.badge-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.badge-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.badge-item:hover::before {
    transform: scaleX(1);
}

.badge-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: rgba(196, 248, 110, 0.3);
}

.badge-emoji {
    font-size: 56px;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.badge-item:hover .badge-emoji {
    transform: scale(1.3) rotate(15deg);
}

.badge-item p {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    line-height: 1.5;
}

/* CTA 行动号召区块增强 */
.cta-block {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 80px 60px;
    text-align: center;
    border-radius: 30px;
    margin: 60px;
    position: relative;
    overflow: hidden;
}

.cta-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 248, 110, 0.1) 0%, transparent 50%);
    animation: rotateBg 20s linear infinite;
}

@keyframes rotateBg {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-block h2 {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-block p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.cta-block .btn-main {
    position: relative;
    z-index: 1;
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    color: var(--color-dark);
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.4);
}

.cta-block .btn-main:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(196, 248, 110, 0.6);
}

/* 响应式适配 */
@media (max-width: 1024px) {
    .advantage-layout {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        padding: 40px;
        gap: 25px;
    }
    
    .adv-card-1 {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    
    .adv-card-2 {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    
    .adv-card-3 {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    
    .adv-card-4 {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }
    
    .adv-card-5 {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
    }
    
    .adv-card-6 {
        grid-column: 2 / 3;
        grid-row: 3 / 4;
    }
    
    .page-header h1 {
        font-size: 42px;
    }
    
    .stats-section {
        padding: 60px 40px;
    }
    
    .stat-row {
        grid-template-columns: 100px 1fr 70px;
        gap: 20px;
        padding: 20px;
    }
    
    .badge-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-block {
        margin: 40px;
        padding: 60px 40px;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 25px;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .advantage-layout {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 20px;
    }
    
    .adv-card-1,
    .adv-card-2,
    .adv-card-3,
    .adv-card-4,
    .adv-card-5,
    .adv-card-6 {
        grid-column: 1 / 2;
        grid-row: auto;
    }
    
    .advantage-layout .card {
        padding: 30px 25px;
    }
    
    .stats-section {
        padding: 50px 25px;
        margin: 40px 0;
    }
    
    .stats-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
    
    .stat-row {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .stat-value {
        text-align: left;
        margin-top: 10px;
    }
    
    .badge-grid {
        grid-template-columns: 1fr;
        padding: 10px;
    }
    
    .cta-block {
        margin: 25px;
        padding: 50px 25px;
    }
    
    .cta-block h2 {
        font-size: 28px;
    }
    
    .cta-block p {
        font-size: 16px;
    }
}

/* 响应式调整 */
@media (max-width: 1024px) {
    .design-hero-section { min-height: 75vh; padding: 80px 40px; }
    .hero-main-title { font-size: 48px; }
    .philosophy-grid { grid-template-columns: 1fr; gap: 30px; }
    .philo-large { grid-column: auto; }
    .timeline-line { left: 40px; }
    .timeline-marker { left: 40px; }
    .timeline-item:nth-child(odd) .timeline-content { flex-direction: row; }
    .timeline-content { flex-direction: column; gap: 30px; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
    .gallery-large { grid-column: auto; grid-row: auto; }
    .cta-final-section { margin: 60px 40px; }
}

@media (max-width: 768px) {
    .design-hero-section { padding: 60px 25px; border-radius: 20px; }
    .hero-main-title { font-size: 36px; }
    .hero-description { font-size: 16px; }
    .hero-cta-group { flex-direction: column; align-items: center; }
    .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 280px; }
    .floating-shapes { display: none; }
    .philosophy-section, .process-timeline-section, .portfolio-gallery-section { padding: 60px 25px; }
    .heading-display { font-size: 36px; }
    .timeline-line { display: none; }
    .timeline-marker { position: relative; left: auto; transform: none; margin-bottom: 20px; }
    .timeline-item { flex-direction: column; align-items: flex-start; }
    .content-inner { padding: 30px; }
    .cta-final-section { padding: 60px 25px; margin: 40px 25px; border-radius: 20px; }
    .cta-final-title { font-size: 32px; }
    .cta-final-actions { flex-direction: column; align-items: center; }
    .btn-cta-final, .btn-cta-phone { width: 100%; max-width: 280px; justify-content: center; }
}

/* ========================================
   process.html 专属样式 - 时空流转流程设计
   ======================================== */

/* Hero 区域 - 沉浸式流体背景 */
.process-hero-section {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 50%, #0f2027 100%);
}

.hero-bg-animation {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatOrb 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #C4F86E 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #FFB5C5 0%, transparent 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #6ED8F8 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.05); }
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(196, 248, 110, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(196, 248, 110, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.process-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(196, 248, 110, 0.15);
    border: 1px solid rgba(196, 248, 110, 0.3);
    border-radius: 50px;
    color: #C4F86E;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #C4F86E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.arrow-down {
    width: 24px;
    height: 24px;
    border-right: 2px solid #C4F86E;
    border-bottom: 2px solid #C4F86E;
    transform: rotate(45deg);
    animation: bounceArrow 2s ease-in-out infinite;
}

@keyframes bounceArrow {
    0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
    50% { transform: rotate(45deg) translate(10px, 10px); opacity: 0.5; }
}

/* 核心流程区 - 螺旋时间轴 */
.process-core-section {
    padding: 100px 40px;
    background: #f8fafc;
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a2744;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C4F86E, #FFB5C5);
    border-radius: 2px;
}

.section-desc {
    font-size: 18px;
    color: #64748b;
    margin-top: 20px;
}

.spiral-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.spiral-step {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeInStep 0.8s ease-out forwards;
}

.spiral-step:nth-child(1) { animation-delay: 0.2s; }
.spiral-step:nth-child(2) { animation-delay: 0.4s; }
.spiral-step:nth-child(3) { animation-delay: 0.6s; }
.spiral-step:nth-child(4) { animation-delay: 0.8s; }
.spiral-step:nth-child(5) { animation-delay: 1s; }

@keyframes fadeInStep {
    to { opacity: 1; transform: translateY(0); }
}

.step-connector {
    position: absolute;
    left: 50px;
    top: 80px;
    bottom: -60px;
    width: 3px;
    background: linear-gradient(180deg, #C4F86E 0%, #FFB5C5 100%);
    border-radius: 2px;
}

.spiral-step:last-child .step-connector {
    display: none;
}

.step-main-card {
    margin-left: 120px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(196, 248, 110, 0.1);
}

.step-main-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(196, 248, 110, 0.15);
}

.final-step {
    border: 2px solid #C4F86E;
    background: linear-gradient(135deg, #ffffff 0%, #f9fff5 100%);
}

.step-header {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-bottom: 1px solid #e2e8f0;
}

.step-number-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #C4F86E 0%, #A8E05C 100%);
    color: #1a2744;
    font-size: 28px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    box-shadow: 0 8px 24px rgba(196, 248, 110, 0.4);
    flex-shrink: 0;
}

.step-title-group h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 6px;
}

.step-tag {
    display: inline-block;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.step-tag.discovery { background: rgba(100, 149, 237, 0.15); color: #6495ed; }
.step-tag.design { background: rgba(255, 181, 197, 0.2); color: #d65db1; }
.step-tag.develop { background: rgba(196, 248, 110, 0.2); color: #8bc34a; }
.step-tag.integrate { background: rgba(110, 216, 248, 0.2); color: #00bcd4; }
.step-tag.launch { background: rgba(255, 152, 0, 0.2); color: #ff9800; }

.step-body {
    padding: 35px 40px;
}

.step-duration-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    padding: 16px 20px;
    background: #f8fafc;
    border-radius: 12px;
}

.duration-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.duration-progress {
    flex: 1;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #C4F86E, #8bc34a);
    border-radius: 4px;
    transition: width 1s ease-out;
}

.duration-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a2744;
    min-width: 70px;
}

.step-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid #f1f5f9;
}

.step-feature-list li:last-child {
    border-bottom: none;
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: 12px;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.feature-text strong {
    font-size: 16px;
    font-weight: 600;
    color: #1a2744;
}

.feature-text span {
    font-size: 14px;
    color: #64748b;
}

.step-footer {
    padding: 20px 40px;
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.deliverable-box {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(196, 248, 110, 0.1);
    border: 1px dashed rgba(196, 248, 110, 0.4);
    border-radius: 12px;
}

.deliverable-icon {
    font-size: 20px;
}

.deliverable-text {
    font-size: 14px;
    font-weight: 600;
    color: #1a2744;
}

/* 服务保障区 - 三柱支撑 */
.guarantee-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.guarantee-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: #ffffff;
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C4F86E, #FFB5C5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.pillar-card:hover::before {
    transform: scaleX(1);
}

.pillar-card.featured {
    background: linear-gradient(135deg, #f9fff5 0%, #ffffff 100%);
    border: 2px solid #C4F86E;
    transform: scale(1.05);
}

.pillar-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 16px;
    background: #C4F86E;
    color: #1a2744;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.pillar-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
}

.pillar-icon {
    font-size: 48px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #C4F86E 0%, #A8E05C 100%);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pillar-ring {
    position: absolute;
    inset: -10px;
    border: 2px dashed rgba(196, 248, 110, 0.4);
    border-radius: 50%;
    animation: rotateRing 20s linear infinite;
}

@keyframes rotateRing {
    to { transform: rotate(360deg); }
}

.pillar-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a2744;
    margin-bottom: 16px;
}

.pillar-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #C4F86E, #FFB5C5);
    margin: 0 auto 20px;
    border-radius: 2px;
}

.pillar-card p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 8px;
    line-height: 1.6;
}

.pillar-card p.highlight {
    font-weight: 600;
    color: #1a2744;
    margin-top: 12px;
}

/* CTA 区域 */
.cta-process-section {
    position: relative;
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a2744 0%, #0f2027 100%);
    overflow: hidden;
}

.cta-glow-effect {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(196, 248, 110, 0.15) 0%, transparent 70%);
    filter: blur(60px);
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-left h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-left > p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-stats {
    display: flex;
    gap: 40px;
}

.cta-stats .stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #C4F86E;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.cta-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #C4F86E 0%, #A8E05C 100%);
    color: #1a2744;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(196, 248, 110, 0.4);
}

.btn-arrow {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.cta-btn-primary:hover .btn-arrow {
    transform: translateX(6px);
}

.cta-btn-secondary {
    display: inline-block;
    padding: 16px 36px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-btn-secondary:hover {
    border-color: #C4F86E;
    color: #C4F86E;
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .hero-title { font-size: 42px; }
    .guarantee-pillars { grid-template-columns: 1fr; max-width: 500px; }
    .pillar-card.featured { transform: none; }
    .pillar-card.featured:hover { transform: translateY(-12px); }
    .cta-content-wrapper { grid-template-columns: 1fr; gap: 60px; text-align: center; }
    .cta-right { align-items: center; }
    .cta-stats { justify-content: center; }
}

@media (max-width: 768px) {
    .process-hero-section { padding: 60px 25px; min-height: 70vh; }
    .hero-title { font-size: 32px; }
    .hero-subtitle { font-size: 16px; }
    .process-core-section, .guarantee-section, .cta-process-section { padding: 60px 25px; }
    .section-title { font-size: 32px; }
    .step-main-card { margin-left: 0; }
    .step-connector { display: none; }
    .step-header { flex-direction: column; text-align: center; padding: 25px; }
    .step-number-circle { margin-right: 0; margin-bottom: 16px; }
    .step-body, .step-footer { padding: 25px; }
    .cta-stats { flex-wrap: wrap; gap: 30px; }
    .stat-number { font-size: 36px; }
    .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; }
}

/* ========================================
   team.html - 星图引力·人才星系 专属样式
   ======================================== */

/* Hero 区域：人才星系背景 */
.team-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #2d1b3a 100%);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(196, 248, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 181, 197, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(100, 200, 255, 0.05) 0%, transparent 40%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(196, 248, 110, 0.3), rgba(255, 181, 197, 0.3));
    backdrop-filter: blur(10px);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 15%;
    animation-delay: 3s;
}

.shape-3 {
    width: 40px;
    height: 40px;
    bottom: 20%;
    left: 20%;
    animation-delay: 6s;
}

.shape-4 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 25%;
    animation-delay: 9s;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(-15px) rotate(180deg); }
    75% { transform: translateY(-40px) rotate(270deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-title {
    margin-bottom: 24px;
}

.title-line {
    display: block;
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(135deg, #C4F86E 0%, #ffffff 50%, #FFB5C5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 8px;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.title-sub {
    display: block;
    font-size: 28px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 16px;
    letter-spacing: 4px;
}

.hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 40px;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-badge:hover {
    transform: translateY(-8px) scale(1.05);
    background: rgba(196, 248, 110, 0.1);
    border-color: #C4F86E;
    box-shadow: 0 20px 40px rgba(196, 248, 110, 0.2);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #C4F86E, #FFB5C5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* 核心领军者区域 */
.core-team-section {
    padding: 100px 40px;
    background: #fafafa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    position: relative;
    display: inline-block;
}

.title-decoration {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #C4F86E, #FFB5C5);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    overflow: hidden;
}

.title-decoration::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: shineDecor 2s infinite;
}

@keyframes shineDecor {
    0% { left: -100%; }
    100% { left: 100%; }
}

.core-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.core-member-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.core-member-card.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b3a 100%);
    color: #ffffff;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 30px 60px rgba(26, 31, 58, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 248, 110, 0.1) 0%, transparent 70%);
    animation: glowRotate 10s linear infinite;
    pointer-events: none;
}

@keyframes glowRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.core-member-card:hover {
    transform: translateY(-16px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
}

.core-member-card.featured:hover {
    transform: translateY(-16px) scale(1.05);
    box-shadow: 0 50px 100px rgba(196, 248, 110, 0.3);
}

.member-avatar-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
    margin: 0 auto 24px;
}

.member-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.core-member-card.featured .member-avatar {
    border-color: #C4F86E;
}

.avatar-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 2px dashed rgba(196, 248, 110, 0.5);
    animation: ringRotate 20s linear infinite;
    z-index: 1;
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.member-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.core-member-card.featured .member-name {
    color: #ffffff;
}

.member-role {
    font-size: 14px;
    color: #C4F86E;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.core-member-card:not(.featured) .member-role {
    color: #FF6B9D;
}

.member-bio {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.8;
    margin-bottom: 20px;
}

.core-member-card.featured .member-bio {
    color: rgba(255, 255, 255, 0.7);
}

.skill-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.skill-tag {
    font-size: 12px;
    padding: 6px 14px;
    background: rgba(196, 248, 110, 0.15);
    color: #7cb342;
    border-radius: 20px;
    font-weight: 600;
}

.core-member-card.featured .skill-tag {
    background: rgba(255, 255, 255, 0.15);
    color: #C4F86E;
}

/* 团队文化基因区域 */
.culture-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.culture-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.culture-item {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.culture-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C4F86E, #FFB5C5);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.culture-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.culture-item:hover::before {
    transform: scaleX(1);
}

.culture-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.culture-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.energy-bar {
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 16px;
    position: relative;
}

.energy-fill {
    height: 100%;
    background: linear-gradient(90deg, #C4F86E, #FFB5C5);
    border-radius: 4px;
    position: relative;
    animation: energyFlow 2s ease-out forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes energyFlow {
    to { transform: scaleX(1); }
}

.energy-fill::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6));
    animation: energyPulse 1.5s ease-in-out infinite;
}

@keyframes energyPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.culture-desc {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* 加入我们区域 */
.join-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a1f3a 0%, #2d1b3a 100%);
    position: relative;
    overflow: hidden;
}

.join-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 70%, rgba(196, 248, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 181, 197, 0.1) 0%, transparent 50%);
    animation: auroraFlow 10s ease-in-out infinite;
}

@keyframes auroraFlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.join-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.join-title {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: 4px;
}

.join-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 48px;
    line-height: 1.8;
}

.join-benefits {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(196, 248, 110, 0.15);
    border-color: #C4F86E;
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 24px;
}

.benefit-item span:last-child {
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
}

.join-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #C4F86E, #a8e05c);
    color: #1a1f3a;
    border: none;
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(196, 248, 110, 0.5);
}

.btn-glow {
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    animation: btnGlow 3s linear infinite;
    pointer-events: none;
}

@keyframes btnGlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: #C4F86E;
    color: #C4F86E;
    background: rgba(196, 248, 110, 0.1);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .core-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .core-member-card.featured {
        grid-column: span 2;
        transform: none;
    }
    
    .culture-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .title-line {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 60px 20px;
        min-height: 70vh;
    }
    
    .title-line {
        font-size: 36px;
        letter-spacing: 4px;
    }
    
    .title-sub {
        font-size: 18px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-badge {
        padding: 16px 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .core-team-section,
    .culture-section,
    .join-section {
        padding: 60px 20px;
    }
    
    .core-team-grid {
        grid-template-columns: 1fr;
    }
    
    .core-member-card.featured {
        grid-column: span 1;
    }
    
    .culture-grid {
        grid-template-columns: 1fr;
    }
    
    .join-title {
        font-size: 32px;
    }
    
    .join-benefits {
        flex-direction: column;
        align-items: center;
    }
    
    .join-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== pricing.html 专属样式 - 价格星云·价值引力 ===== */

/* Hero 区域 */
.pricing-hero-section {
    position: relative;
    padding: 100px 40px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow: hidden;
    border-radius: 0 0 40px 40px;
}

.pricing-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-symbol {
    position: absolute;
    font-size: 80px;
    font-weight: 900;
    opacity: 0.08;
    animation: floatSymbol 8s ease-in-out infinite;
    color: var(--color-lime);
}

.symbol-1 { top: 10%; left: 5%; animation-delay: 0s; }
.symbol-2 { top: 20%; right: 10%; animation-delay: 1.5s; color: var(--color-pink); }
.symbol-3 { bottom: 30%; left: 15%; animation-delay: 3s; }
.symbol-4 { bottom: 15%; right: 5%; animation-delay: 4.5s; color: var(--color-pink); }
.symbol-5 { top: 50%; left: 50%; animation-delay: 6s; font-size: 120px; }

@keyframes floatSymbol {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
    75% { transform: translateY(-25px) rotate(3deg); }
}

.pricing-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-hero-title {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -2px;
    text-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-hero-subtitle {
    font-size: 20px;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.pricing-hero-note {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-white);
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-size: 15px;
    color: var(--color-text);
}

.note-icon {
    font-size: 20px;
}

.pricing-hero-decoration {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 1;
}

.deco-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-lime) 0%, transparent 100%);
    opacity: 0.3;
    animation: pulseCircle 3s ease-in-out infinite;
}

.deco-1 { width: 60px; height: 60px; animation-delay: 0s; }
.deco-2 { width: 100px; height: 100px; animation-delay: 1s; background: linear-gradient(135deg, var(--color-pink) 0%, transparent 100%); }
.deco-3 { width: 70px; height: 70px; animation-delay: 2s; }

@keyframes pulseCircle {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.5; }
}

/* 价格卡片区 */
.pricing-cards-section {
    padding: 80px 40px;
}

.pricing-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: start;
}

.pricing-card {
    background: var(--color-white);
    border-radius: 24px;
    padding: 40px 35px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.card-float:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(196, 248, 110, 0.25);
}

.card-scale-up {
    transform: scale(1.08);
    z-index: 2;
}

.card-scale-up:hover {
    transform: scale(1.08) translateY(-15px);
}

.card-glow {
    background: linear-gradient(135deg, #fff 0%, #f8fff9 100%);
    border: 2px solid var(--color-lime);
}

.card-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 248, 110, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

@keyframes glowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.recommended-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, var(--color-pink), #ff8fa3);
    color: var(--color-dark);
    padding: 5px 40px;
    font-size: 12px;
    font-weight: 700;
    transform: rotate(45deg);
    box-shadow: 0 5px 15px rgba(255, 181, 197, 0.4);
}

.badge-star {
    margin-right: 5px;
}

.plan-icon {
    margin-bottom: 20px;
}

.plan-name {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 8px;
}

.plan-slogan {
    font-size: 14px;
    color: #999;
    margin-bottom: 25px;
    font-style: italic;
}

.card-price {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px dashed var(--color-gray);
}

.price-value {
    font-size: 48px;
    font-weight: 900;
    color: var(--color-pink);
    letter-spacing: -2px;
}

.price-unit {
    font-size: 14px;
    color: #999;
    margin-left: 5px;
}

.card-features {
    margin-bottom: 30px;
}

.feature-item {
    padding: 12px 0;
    font-size: 15px;
    color: var(--color-text);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item.checked {
    color: var(--color-dark);
}

.feature-item.disabled {
    color: #ccc;
}

.check-mark {
    color: var(--color-lime);
    font-weight: 900;
    font-size: 16px;
}

.cross-mark {
    color: #ddd;
    font-size: 14px;
}

.card-action {
    text-align: center;
}

.btn-outline,
.btn-filled,
.btn-outline-dark {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-lime);
    border-color: var(--color-lime);
    color: var(--color-dark);
}

.btn-filled {
    background: linear-gradient(135deg, var(--color-lime), #a8e063);
    color: var(--color-dark);
    border: none;
    box-shadow: 0 5px 20px rgba(196, 248, 110, 0.4);
}

.btn-filled:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.6);
}

.btn-outline-dark {
    border: 2px solid var(--color-dark);
    color: var(--color-dark);
    background: transparent;
}

.btn-outline-dark:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

/* 对比表 */
.pricing-comparison-section {
    padding: 80px 40px;
    background: #fafafa;
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.comparison-table th,
.comparison-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.comparison-table th {
    background: var(--color-dark);
    color: var(--color-white);
    font-size: 16px;
    font-weight: 700;
}

.comparison-table th.pro-col {
    background: linear-gradient(135deg, var(--color-lime), #a8e063);
    color: var(--color-dark);
}

.comparison-table .feature-col {
    text-align: left;
    font-weight: 600;
    color: var(--color-dark);
    background: #f8f9fa;
}

.comparison-table .pro-cell {
    background: #f8fff9;
    font-weight: 600;
    color: var(--color-dark);
}

.comparison-table tr:hover .pro-cell {
    background: #e8f9e9;
}

/* FAQ */
.pricing-faq-section {
    padding: 80px 40px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark);
}

.q-icon {
    font-size: 20px;
}

.q-toggle {
    margin-left: auto;
    font-size: 24px;
    color: var(--color-lime);
    transition: transform 0.3s ease;
}

.faq-item:hover .q-toggle {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 20px 30px 30px;
    margin: 0;
    color: var(--color-text);
    line-height: 1.8;
}

/* CTA */
.pricing-cta-section {
    padding: 80px 40px 100px;
}

.cta-box-gradient {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--color-dark) 0%, #2d2d2d 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box-gradient::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 248, 110, 0.1) 0%, transparent 60%);
    animation: ctaGlow 6s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-10%, -10%) scale(1.1); }
}

.cta-title-gradient {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.cta-desc-gradient {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.cta-button-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--color-lime), #a8e063);
    color: var(--color-dark);
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 17px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(196, 248, 110, 0.4);
    position: relative;
    z-index: 2;
}

.cta-button-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(196, 248, 110, 0.6);
}

.btn-arrow-large {
    transition: transform 0.3s ease;
}

.cta-button-large:hover .btn-arrow-large {
    transform: translateX(8px);
}

/* 响应式 */
@media (max-width: 1024px) {
    .pricing-wrapper {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .card-scale-up {
        transform: scale(1);
    }
    
    .card-scale-up:hover {
        transform: translateY(-15px);
    }
    
    .pricing-hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .pricing-hero-section {
        padding: 60px 20px 50px;
    }
    
    .pricing-hero-title {
        font-size: 32px;
    }
    
    .pricing-hero-subtitle {
        font-size: 16px;
    }
    
    .floating-symbol {
        font-size: 50px;
    }
    
    .pricing-cards-section,
    .pricing-comparison-section,
    .pricing-faq-section,
    .pricing-cta-section {
        padding: 50px 20px;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 15px 10px;
        font-size: 14px;
    }
    
    .cta-title-gradient {
        font-size: 28px;
    }
    
    .cta-button-large {
        padding: 15px 35px;
        font-size: 15px;
    }
}

/* ========================================
   contact.html 专属样式 - 流体连接·多维触点
   ======================================== */

/* Hero 区域：涟漪背景动画 */
.contact-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fff8 0%, #ffffff 50%, #fff5f8 100%);
}

.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(196, 248, 110, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(255, 181, 197, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 40%, rgba(196, 248, 110, 0.08) 0%, transparent 30%);
    animation: bgPulse 8s ease-in-out infinite;
}

@keyframes bgPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
}

.floating-shapes .shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    opacity: 0.1;
    animation: floatShape 15s infinite ease-in-out;
}

.shape-1 { width: 80px; height: 80px; top: 10%; left: 10%; animation-delay: 0s; }
.shape-2 { width: 60px; height: 60px; top: 60%; right: 15%; animation-delay: -5s; }
.shape-3 { width: 100px; height: 100px; bottom: 20%; left: 20%; animation-delay: -10s; }
.shape-4 { width: 40px; height: 40px; top: 30%; right: 40%; animation-delay: -7s; }

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 20px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: var(--color-dark);
    margin-bottom: 20px;
    letter-spacing: -2px;
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-text::before {
    animation: glitch-1 2s infinite;
    color: var(--color-lime);
    z-index: -1;
}

.glitch-text::after {
    animation: glitch-2 3s infinite;
    color: var(--color-pink);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(2px, -2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(2px, 2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(-2px, 2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(-2px, -2px); }
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 3px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.scroll-indicator span {
    width: 8px;
    height: 8px;
    background: var(--color-lime);
    border-radius: 50%;
    animation: scrollDot 2s infinite;
}

.scroll-indicator span:nth-child(2) { animation-delay: 0.2s; background: var(--color-pink); }
.scroll-indicator span:nth-child(3) { animation-delay: 0.4s; }

@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* 联系表单区：悬浮玻璃态 */
.contact-form-section {
    padding: 100px 60px;
    background: #ffffff;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 60px;
}

.form-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.form-header p {
    font-size: 18px;
    color: #666;
    font-weight: 300;
}

.floating-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 0, 0, 0.02);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
}

.input-group.full-width {
    grid-column: 1 / -1;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    padding: 20px 20px 20px 0;
    border: none;
    border-bottom: 2px solid #e0e0e0;
    background: transparent;
    font-size: 16px;
    color: var(--color-dark);
    transition: all 0.3s ease;
    outline: none;
}

.input-group textarea {
    min-height: 150px;
    resize: vertical;
    font-family: inherit;
}

.input-group label {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 16px;
    color: #999;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus,
.input-group select:focus {
    border-bottom-color: var(--color-lime);
}

.input-group input:focus ~ label,
.input-group textarea:focus ~ label,
.input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:not(:placeholder-shown) ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--color-lime);
    font-weight: 600;
}

.input-group select:focus ~ label,
.input-group select:not([value=""]) ~ label {
    top: -10px;
    font-size: 12px;
    color: var(--color-lime);
    font-weight: 600;
}

.input-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    transition: width 0.4s ease;
}

.input-group input:focus ~ .input-border,
.input-group textarea:focus ~ .input-border,
.input-group select:focus ~ .input-border {
    width: 100%;
}

.submit-btn-glow {
    width: 100%;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--color-lime) 0%, #a8e060 100%);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-dark);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 248, 110, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.submit-btn-glow:hover .btn-icon {
    transform: translateX(5px);
}

.btn-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.submit-btn-glow:active .btn-glow-effect {
    width: 300px;
    height: 300px;
}

/* 联系方式卡片区：非对称网格 */
.contact-cards-section {
    padding: 100px 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fff8 100%);
}

.cards-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 25px;
}

.contact-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--color-lime), var(--color-pink));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
}

.card-medium {
    grid-column: span 1;
    grid-row: span 1;
}

.card-small {
    grid-column: span 1;
    grid-row: span 1;
}

.card-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(196, 248, 110, 0.2), rgba(255, 181, 197, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.contact-card:hover .card-icon-box {
    background: linear-gradient(135deg, var(--color-lime), var(--color-pink));
    transform: rotate(-5deg) scale(1.1);
}

.card-icon-box svg {
    width: 35px;
    height: 35px;
    color: var(--color-dark);
    transition: color 0.4s ease;
}

.contact-card:hover .card-icon-box svg {
    color: #ffffff;
}

.contact-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-detail {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-lime);
    margin-bottom: 10px;
}

.contact-desc {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
    flex-grow: 1;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: var(--color-lime);
}

.card-link .arrow {
    transition: transform 0.3s ease;
}

.card-link:hover .arrow {
    transform: translateX(5px);
}

.qr-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.qr-placeholder {
    width: 100%;
    height: 100%;
    border: 3px dashed var(--color-lime);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fff8;
}

.qr-placeholder svg {
    width: 80px;
    height: 80px;
    color: var(--color-lime);
}

.qr-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(196, 248, 110, 0.95);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.qr-wrapper:hover .qr-overlay {
    opacity: 1;
}

.qr-overlay span {
    color: var(--color-dark);
    font-weight: 700;
    font-size: 12px;
    text-align: center;
    padding: 10px;
}

/* FAQ 折叠区：手风琴 */
.contact-faq-section {
    padding: 100px 60px;
    background: #ffffff;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #f8fff8;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(196, 248, 110, 0.3);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.question-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-dark);
}

.faq-icon {
    width: 30px;
    height: 30px;
    background: var(--color-lime);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-weight: 700;
    font-size: 20px;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--color-pink);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

/* CTA 行动号召区 */
.contact-cta-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.cta-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.cta-content p {
    font-size: 18px;
    color: #aaa;
}

.cta-actions {
    display: flex;
    gap: 20px;
}

.cta-btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-lime) 0%, #a8e060 100%);
    color: var(--color-dark);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(196, 248, 110, 0.4);
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-pink);
    color: var(--color-pink);
    transform: translateY(-3px);
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }
    
    .card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .cta-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        height: 60vh;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .contact-form-section,
    .contact-cards-section,
    .contact-faq-section,
    .contact-cta-section {
        padding: 60px 20px;
    }
    
    .floating-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card-large,
    .card-medium,
    .card-small {
        grid-column: span 1;
    }
    
    .section-header h2,
    .form-header h2 {
        font-size: 32px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}
