/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --z8ffabprimary-color: #4a90e2;
    --z8ffabsecondary-color: #2c3e50;
    --z8ffabaccent-color: #e74c3c;
    --z8ffabtext-color: #333;
    --z8ffabtext-light: #666;
    --z8ffabbg-light: #f8f9fa;
    --z8ffabbg-dark: #1a1a2e;
    --z8ffabwhite: #ffffff;
    --z8ffabshadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --z8ffabshadow-hover: 0 8px 30px rgba(0, 0, 0, 0.15);
    --z8ffabgradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --z8ffabgradient-alt: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
    line-height: 1.6;
    color: var(--z8ffabtext-color);
    overflow-x: hidden;
}

/* 确保所有图片响应式 */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

.z8ffabcontainer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* 导航栏样式 */
.z8ffabnavbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.z8ffabnavbar.z8ffabscrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.z8ffabnav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.z8ffablogo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--z8ffabprimary-color);
    background: var(--z8ffabgradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.z8ffabnav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.z8ffabnav-link {
    text-decoration: none;
    color: var(--z8ffabtext-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.z8ffabnav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--z8ffabprimary-color);
    transition: width 0.3s ease;
}

.z8ffabnav-link:hover {
    color: var(--z8ffabprimary-color);
}

.z8ffabnav-link:hover::after {
    width: 100%;
}

.z8ffabmobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.z8ffabbar {
    width: 25px;
    height: 3px;
    background: var(--z8ffabtext-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* 主横幅样式 */
.z8ffabhero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--z8ffabgradient);
    color: var(--z8ffabwhite);
    padding-top: 80px;
    padding-bottom: 4rem;
    overflow: hidden;
}

.z8ffabhero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.z8ffabhero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.z8ffabhero-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    padding: 2rem 0;
}

.z8ffabhero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    padding: 2rem;
    animation: fadeInUp 1s ease;
}

.z8ffabhero-image {
    position: relative;
    z-index: 2;
    animation: fadeInRight 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z8ffabhero-image img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    object-fit: contain;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.z8ffabhero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    line-height: 1.2;
}

.z8ffabhero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.z8ffabhero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.z8ffabbtn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.z8ffabbtn-primary {
    background: var(--z8ffabwhite);
    color: var(--z8ffabprimary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.z8ffabbtn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.z8ffabbtn-secondary {
    background: transparent;
    color: var(--z8ffabwhite);
    border: 2px solid var(--z8ffabwhite);
}

.z8ffabbtn-secondary:hover {
    background: var(--z8ffabwhite);
    color: var(--z8ffabprimary-color);
    transform: translateY(-3px);
}

.z8ffabwave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: var(--z8ffabwhite);
    height: 120px;
    overflow: hidden;
}

.z8ffabwave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* 区块标题样式 */
.z8ffabsection-header {
    text-align: center;
    margin-bottom: 4rem;
}

.z8ffabsection-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--z8ffabsecondary-color);
    position: relative;
    display: inline-block;
}

.z8ffabsection-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--z8ffabgradient);
    border-radius: 2px;
}

.z8ffabsection-description {
    font-size: 1.1rem;
    color: var(--z8ffabtext-light);
    max-width: 600px;
    margin: 1.5rem auto 0;
}

/* 服务板块样式 */
.z8ffabservices {
    padding: 6rem 0;
    background: var(--z8ffabbg-light);
}

.z8ffabservice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z8ffabservice-card {
    background: var(--z8ffabwhite);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--z8ffabshadow);
    position: relative;
    overflow: hidden;
}

.z8ffabservice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--z8ffabgradient);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.z8ffabservice-card:hover::before {
    left: 0;
}

.z8ffabservice-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--z8ffabshadow-hover);
}

.z8ffabservice-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.z8ffabservice-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--z8ffabsecondary-color);
}

.z8ffabservice-text {
    color: var(--z8ffabtext-light);
    line-height: 1.8;
}

/* 优势板块样式 */
.z8ffabadvantages {
    padding: 6rem 0;
    background: var(--z8ffabwhite);
}

.z8ffabadvantage-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.z8ffabadvantage-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.z8ffabadvantage-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--z8ffabprimary-color);
    opacity: 0.2;
    min-width: 80px;
    line-height: 1;
}

.z8ffabadvantage-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--z8ffabsecondary-color);
}

.z8ffabadvantage-text p {
    color: var(--z8ffabtext-light);
    line-height: 1.8;
}

.z8ffabfeature-box {
    background: var(--z8ffabgradient);
    padding: 3rem;
    border-radius: 20px;
    color: var(--z8ffabwhite);
    box-shadow: var(--z8ffabshadow-hover);
}

.z8ffabfeature-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.z8ffabfeature-item:last-child {
    border-bottom: none;
}

.z8ffabfeature-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.z8ffabfeature-value {
    font-size: 1.5rem;
    font-weight: 700;
}

/* 统计数据样式 */
.z8ffabstats {
    padding: 5rem 0;
    background: var(--z8ffabgradient);
    color: var(--z8ffabwhite);
    position: relative;
    overflow: hidden;
}

.z8ffabstats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.z8ffabstats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.z8ffabstat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.z8ffabstat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.z8ffabstat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.z8ffabstat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* 价格参考样式 */
.z8ffabpricing {
    padding: 6rem 0;
    background: var(--z8ffabwhite);
}

.z8ffabprice-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.z8ffabprice-card {
    background: var(--z8ffabbg-light);
    padding: 2.5rem;
    border-radius: 15px;
    border-top: 4px solid var(--z8ffabprimary-color);
    transition: all 0.3s ease;
    box-shadow: var(--z8ffabshadow);
}

.z8ffabprice-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--z8ffabshadow-hover);
}

.z8ffabprice-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--z8ffabsecondary-color);
}

.z8ffabprice-list {
    list-style: none;
}

.z8ffabprice-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--z8ffabtext-light);
    line-height: 1.8;
}

.z8ffabprice-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--z8ffabprimary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.z8ffabprice-note {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--z8ffabaccent-color);
}

.z8ffabprice-note p {
    margin: 0;
    color: var(--z8ffabtext-color);
    line-height: 1.8;
}

/* 流程板块样式 */
.z8ffabprocess {
    padding: 6rem 0;
    background: var(--z8ffabbg-light);
}

.z8ffabprocess-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.z8ffabstep-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
}

.z8ffabstep-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--z8ffabgradient);
    color: var(--z8ffabwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.z8ffabstep-item:hover .z8ffabstep-number {
    transform: scale(1.1) rotate(5deg);
}

.z8ffabstep-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--z8ffabsecondary-color);
}

.z8ffabstep-content p {
    color: var(--z8ffabtext-light);
    line-height: 1.6;
}

.z8ffabstep-arrow {
    font-size: 2rem;
    color: var(--z8ffabprimary-color);
    font-weight: 700;
}

/* 联系方式板块样式 */
.z8ffabcontact {
    padding: 6rem 0;
    background: var(--z8ffabwhite);
}

.z8ffabcontact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.z8ffabcontact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.z8ffabcontact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: var(--z8ffabbg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.z8ffabcontact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--z8ffabshadow);
}

.z8ffabcontact-icon {
    font-size: 2.5rem;
    min-width: 60px;
}

.z8ffabcontact-details h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--z8ffabsecondary-color);
}

.z8ffabcontact-details p {
    color: var(--z8ffabtext-light);
}

.z8ffabcontact-form-wrapper {
    background: var(--z8ffabbg-light);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--z8ffabshadow);
}

.z8ffabcontact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.z8ffabform-group {
    position: relative;
}

.z8ffabform-input,
.z8ffabform-textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--z8ffabwhite);
}

.z8ffabform-input:focus,
.z8ffabform-textarea:focus {
    outline: none;
    border-color: var(--z8ffabprimary-color);
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.z8ffabform-textarea {
    resize: vertical;
    min-height: 120px;
}

.z8ffabbtn-submit {
    background: var(--z8ffabgradient);
    color: var(--z8ffabwhite);
    border: none;
    padding: 1.2rem;
    font-size: 1.1rem;
    cursor: pointer;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.z8ffabbtn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 页脚样式 */
.z8ffabfooter {
    background: var(--z8ffabbg-dark);
    color: var(--z8ffabwhite);
    padding: 4rem 0 2rem;
}

.z8ffabfooter-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.z8ffabfooter-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--z8ffabwhite);
}

.z8ffabfooter-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.z8ffabfooter-links {
    list-style: none;
}

.z8ffabfooter-links li {
    margin-bottom: 0.8rem;
}

.z8ffabfooter-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.z8ffabfooter-links a:hover {
    color: var(--z8ffabwhite);
}

.z8ffabfooter-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* 响应式设计 */
/* 中等屏幕 - 平板横屏 */
@media (max-width: 992px) and (min-width: 769px) {
    .z8ffabhero-wrapper {
        gap: 2rem;
    }

    .z8ffabhero-title {
        font-size: 3rem;
    }

    .z8ffabservice-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .z8ffabadvantage-content {
        gap: 2rem;
    }

    .z8ffabcontainer {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .z8ffabnav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--z8ffabwhite);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--z8ffabshadow);
        padding: 2rem 0;
        gap: 0;
    }

    .z8ffabnav-menu.z8ffabactive {
        left: 0;
    }

    .z8ffabnav-item {
        padding: 1rem 0;
    }

    .z8ffabmobile-toggle {
        display: flex;
    }

    .z8ffabmobile-toggle.z8ffabactive .z8ffabbar:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .z8ffabmobile-toggle.z8ffabactive .z8ffabbar:nth-child(2) {
        opacity: 0;
    }

    .z8ffabmobile-toggle.z8ffabactive .z8ffabbar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .z8ffabcontainer {
        padding: 0 15px;
    }

    .z8ffabhero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 1.5rem 0;
    }

    .z8ffabhero-content {
        text-align: center;
        padding: 1.5rem;
        order: -1;
    }

    .z8ffabhero-buttons {
        justify-content: center;
    }

    .z8ffabhero-image {
        max-width: 100%;
    }

    .z8ffabhero-title {
        font-size: 2.5rem;
    }

    .z8ffabhero-subtitle {
        font-size: 1.1rem;
    }

    .z8ffabsection-title {
        font-size: 2rem;
    }

    .z8ffabsection-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .z8ffabsection-header {
        margin-bottom: 3rem;
    }

    .z8ffabadvantage-content {
        grid-template-columns: 1fr;
    }

    .z8ffabstep-arrow {
        display: none;
    }

    .z8ffabprocess-steps {
        flex-direction: column;
    }

    .z8ffabcontact-content {
        grid-template-columns: 1fr;
    }

    .z8ffabservice-grid {
        grid-template-columns: 1fr;
    }

    .z8ffabhero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .z8ffabbtn {
        width: 100%;
        text-align: center;
    }

    .z8ffabstats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .z8ffabstat-number {
        font-size: 2.5rem;
    }

    .z8ffabprice-info {
        grid-template-columns: 1fr;
    }

    .z8ffabguarantee-grid {
        grid-template-columns: 1fr;
    }

    .z8ffabcases-grid {
        grid-template-columns: 1fr;
    }

    .z8ffabcredentials-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .z8ffabadvantage-item {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .z8ffabadvantage-number {
        font-size: 2.5rem;
        min-width: 60px;
    }

    .z8ffabstep-item {
        min-width: auto;
    }

    .z8ffabstep-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .z8ffabcontainer {
        padding: 0 15px;
    }

    .z8ffabhero {
        min-height: auto;
        padding-top: 70px;
        padding-bottom: 2rem;
    }

    .z8ffabhero-wrapper {
        padding: 1rem 0;
        gap: 1.5rem;
    }

    .z8ffabhero-content {
        padding: 1rem;
    }

    .z8ffabhero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .z8ffabhero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .z8ffabsection-title {
        font-size: 1.8rem;
    }

    .z8ffabsection-description {
        font-size: 0.95rem;
    }

    .z8ffabsection-header {
        margin-bottom: 2.5rem;
    }

    .z8ffabservice-card,
    .z8ffabcontact-form-wrapper {
        padding: 1.5rem;
    }

    .z8ffabfeature-box {
        padding: 2rem;
    }

    .z8ffabstats-grid {
        grid-template-columns: 1fr;
    }

    .z8ffabstat-number {
        font-size: 2rem;
    }

    .z8ffabcredentials-content {
        grid-template-columns: 1fr;
    }

    .z8ffabfaq-question {
        padding: 1rem 1.5rem;
    }

    .z8ffabfaq-answer {
        padding: 0 1.5rem;
    }

    .z8ffabfaq-item.z8ffabactive .z8ffabfaq-answer {
        padding: 1rem 1.5rem;
    }

    .z8ffabadvantage-number {
        font-size: 2rem;
        min-width: 50px;
    }

    .z8ffabadvantage-text h3 {
        font-size: 1.2rem;
    }

    .z8ffabadvantage-text p {
        font-size: 0.9rem;
    }

    .z8ffabservice-card,
    .z8ffabguarantee-item,
    .z8ffabcase-card,
    .z8ffabcredential-item {
        padding: 1.5rem;
    }

    .z8ffabservice-title,
    .z8ffabguarantee-item h3,
    .z8ffabcase-info h3 {
        font-size: 1.2rem;
    }

    .z8ffabprice-card {
        padding: 2rem 1.5rem;
    }

    .z8ffabcontact-item {
        padding: 1.5rem;
    }

    .z8ffabcontact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .z8ffablogo {
        font-size: 1.2rem;
    }
}

/* 动画效果 */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.z8ffabservice-card:hover .z8ffabservice-icon {
    animation: float 2s ease-in-out infinite;
}

/* 美化元素 */
.z8ffabservices::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, var(--z8ffabwhite), transparent);
    pointer-events: none;
}

.z8ffabadvantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="%23e0e0e0" opacity="0.5"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.z8ffabadvantages {
    position: relative;
    overflow: hidden;
}

/* 服务保障样式 */
.z8ffabguarantee {
    padding: 6rem 0;
    background: var(--z8ffabwhite);
}

.z8ffabguarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.z8ffabguarantee-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--z8ffabbg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.z8ffabguarantee-item:hover {
    transform: translateY(-10px);
    border-color: var(--z8ffabprimary-color);
    box-shadow: var(--z8ffabshadow-hover);
}

.z8ffabguarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.z8ffabguarantee-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--z8ffabsecondary-color);
}

.z8ffabguarantee-item p {
    color: var(--z8ffabtext-light);
    line-height: 1.8;
}

/* 客户案例样式 */
.z8ffabcases {
    padding: 6rem 0;
    background: var(--z8ffabbg-light);
}

.z8ffabcases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.z8ffabcase-card {
    background: var(--z8ffabwhite);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--z8ffabshadow);
    transition: all 0.3s ease;
}

.z8ffabcase-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--z8ffabshadow-hover);
}

.z8ffabcase-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.z8ffabcase-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--z8ffabgradient);
    color: var(--z8ffabwhite);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.z8ffabcase-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: var(--z8ffabsecondary-color);
}

.z8ffabcase-info p {
    font-size: 0.9rem;
    color: var(--z8ffabtext-light);
    margin: 0;
}

.z8ffabcase-content {
    margin-bottom: 1.5rem;
}

.z8ffabcase-content p {
    color: var(--z8ffabtext-color);
    line-height: 1.8;
    font-style: italic;
}

.z8ffabcase-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.z8ffabcase-date {
    color: var(--z8ffabtext-light);
}

.z8ffabcase-rating {
    color: #ffc107;
    font-size: 1rem;
}

/* FAQ样式 */
.z8ffabfaq {
    padding: 6rem 0;
    background: var(--z8ffabwhite);
}

.z8ffabfaq-list {
    max-width: 900px;
    margin: 0 auto;
}

.z8ffabfaq-item {
    background: var(--z8ffabbg-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.z8ffabfaq-item:hover {
    box-shadow: var(--z8ffabshadow);
}

.z8ffabfaq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.z8ffabfaq-question:hover {
    background: rgba(74, 144, 226, 0.05);
}

.z8ffabfaq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--z8ffabsecondary-color);
    margin: 0;
    flex: 1;
}

.z8ffabfaq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--z8ffabprimary-color);
    transition: transform 0.3s ease;
    min-width: 30px;
    text-align: center;
}

.z8ffabfaq-item.z8ffabactive .z8ffabfaq-toggle {
    transform: rotate(45deg);
}

.z8ffabfaq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 2rem;
}

.z8ffabfaq-item.z8ffabactive .z8ffabfaq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.z8ffabfaq-answer p {
    color: var(--z8ffabtext-light);
    line-height: 1.8;
    margin: 0;
}

/* 资质信誉样式 */
.z8ffabcredentials {
    padding: 6rem 0;
    background: var(--z8ffabbg-light);
}

.z8ffabcredentials-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.z8ffabcredential-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--z8ffabwhite);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--z8ffabshadow);
    border-top: 3px solid var(--z8ffabprimary-color);
}

.z8ffabcredential-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--z8ffabshadow-hover);
}

.z8ffabcredential-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.z8ffabcredential-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--z8ffabsecondary-color);
}

.z8ffabcredential-item p {
    color: var(--z8ffabtext-light);
    line-height: 1.6;
    font-size: 0.95rem;
}
