/* ============================================
   公司简介区域
   ============================================ */

/* FAQ样式重置 */
.faq-item,
.faq-item * {
    box-sizing: border-box;
}

.about-intro-section {
    background: var(--bg-white);
    padding: 100px 0;
    overflow: hidden;
}

.about-hero-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

/* 标题区域 */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header .section-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 16px;
}

.section-header .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-hero-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto;
}

/* 数据统计网格 */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.about-stat-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-lighter);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.about-stat-card:hover::before {
    transform: scaleX(1);
}

.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
}

.stat-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.stat-card-icon i {
    font-size: 1.5rem;
    color: var(--bg-white);
}

.stat-card-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-card-number span {
    font-size: 1.8rem;
}

.stat-card-label {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
}

/* 核心价值网格 */
.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-value-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--gray-lighter);
    transition: all 0.4s ease;
}

.about-value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.15);
}

.value-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    text-align: center;
}

.value-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-card-icon i {
    font-size: 1.6rem;
    color: var(--bg-white);
}

.value-card-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
}

.about-value-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.7;
    text-align: center;
}
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.label-line {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* ============================================
   页面英雄区域
   ============================================ */
.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-image {
    position: absolute;
    inset: 0;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.92) 0%,
        rgba(30, 41, 59, 0.88) 30%,
        rgba(37, 99, 235, 0.75) 70%,
        rgba(14, 165, 233, 0.65) 100%
    );
    z-index: 1;
}

.page-hero-decoration {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
}

.page-hero-decoration-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.3) 0%, transparent 70%);
}

.page-hero-decoration-2 {
    width: 400px;
    height: 400px;
    bottom: -150px;
    left: -80px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.25) 0%, transparent 70%);
}

.page-hero-decoration-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
}

.hero-shape {
    position: absolute;
    z-index: 2;
    pointer-events: none;
}

.hero-shape-1 {
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    top: 15%;
    right: 15%;
    animation: floatShape 6s ease-in-out infinite;
}

.hero-shape-2 {
    width: 80px;
    height: 80px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    bottom: 20%;
    right: 25%;
    transform: rotate(45deg);
    animation: floatShape 5s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.page-hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.page-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 80px 0;
}

.page-hero-text {
    flex: 1;
    max-width: 600px;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: var(--bg-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    animation: badgePulse 3s ease-in-out infinite;
}

.page-hero-badge i {
    color: #10b981;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.page-hero-title .title-line {
    display: block;
}

.page-hero-title .title-en {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    line-height: 1.6;
}

.page-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
    align-items: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.4);
    transform: translateY(-2px);
}

.hero-feature i {
    color: #10b981;
    font-size: 1rem;
}

/* 24小时服务高亮样式 */
.hero-feature.feature-highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 152, 0, 0.2));
    border: 2px solid rgba(255, 215, 0, 0.6);
    border-radius: 50px;
    animation: highlight-pulse 2s ease-in-out infinite;
    width: fit-content;
}

.hero-feature.feature-highlight i {
    color: #ffd700;
    font-size: 1.2rem;
    animation: clock-shine 2s ease-in-out infinite;
}

.hero-feature.feature-highlight span {
    color: #ffd700;
    font-weight: 700;
    font-size: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes highlight-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 215, 0, 0.6);
    }
}

@keyframes clock-shine {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.page-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: var(--bg-white);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.page-hero-visual {
    flex-shrink: 0;
    width: 380px;
}

.hero-illustration {
    position: relative;
    width: 100%;
    height: 320px;
}

.hero-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.hero-circle-1 {
    width: 280px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateCircle 20s linear infinite;
}

.hero-circle-2 {
    width: 220px;
    height: 220px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-style: dashed;
    animation: rotateCircle 15s linear infinite reverse;
}

.hero-circle-3 {
    width: 160px;
    height: 160px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(37, 99, 235, 0.15);
    border: none;
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-icon-box {
    position: absolute;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    animation: floatIcon 4s ease-in-out infinite;
}

.hero-icon-box i {
    font-size: 1.8rem;
    color: var(--bg-white);
}

.hero-icon-box-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.hero-icon-box-2 {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.hero-icon-box-3 {
    bottom: 10%;
    left: 15%;
    animation-delay: 1s;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 14px 28px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}

.page-hero-breadcrumb a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s ease;
}

.page-hero-breadcrumb a:hover {
    color: var(--bg-white);
}

.page-hero-breadcrumb a i {
    font-size: 0.9rem;
}

.page-hero-breadcrumb i.fa-angle-right {
    font-size: 0.75rem;
    opacity: 0.6;
}

.page-hero-breadcrumb span {
    color: var(--bg-white);
    font-weight: 600;
}

/* ============================================
   联系方式主体区域
   ============================================ */
.contact-main-section {
    background: var(--gray-bg);
    padding: 80px 0;
}

.contact-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: start;
}

/* 左侧：联系方式列表 */
.contact-list-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-list-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-white);
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-lighter);
    transition: all 0.3s ease;
}

.contact-list-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.15);
}

.contact-list-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);
}

.contact-list-icon i {
    font-size: 1.5rem;
    color: var(--bg-white);
}

.contact-list-info {
    flex: 1;
}

.contact-list-label {
    display: block;
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 6px;
}

.contact-list-value {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
}

a.contact-list-value {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a.contact-list-value:hover {
    color: var(--primary-dark);
}

.contact-list-action {
    width: 50px;
    height: 50px;
    background: var(--gray-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.contact-list-action:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    transform: scale(1.1);
}

.contact-list-action i {
    font-size: 1.2rem;
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.contact-list-action:hover i {
    color: var(--bg-white);
}

/* 右侧：二维码卡片 */
.contact-qrcode-section {
    position: sticky;
    top: 100px;
}

.qrcode-card {
    background: var(--bg-white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-lighter);
    text-align: center;
}

.qrcode-header {
    margin-bottom: 30px;
}

.qrcode-header h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qrcode-header h3 i {
    color: var(--primary-color);
}

.qrcode-header p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.qrcode-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.qrcode-box {
    width: 180px;
    height: 180px;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-lighter);
}

.qrcode-box img {
    width: 100%;
    height: 100%;
    display: block;
}

.qrcode-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(14, 165, 233, 0.08));
    border-radius: 30px;
}

.qrcode-icon {
    width: 36px;
    height: 36px;
    background: #07c160;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qrcode-icon i {
    font-size: 1.2rem;
    color: var(--bg-white);
}

.qrcode-info span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-color);
}
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(4px);
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-icon i {
    font-size: 1.2rem;
    color: var(--bg-white);
}

.detail-content {
    flex: 1;
    min-width: 0;
}

.detail-label {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 4px;
}

.detail-value {
    display: block;
    font-size: 1rem;
    color: var(--dark-color);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

a.detail-value {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a.detail-value:hover {
    color: var(--primary-dark);
}

/* ============================================
   服务优势
   ============================================ */
.service-advantages {
    background: var(--bg-white);
    padding: 90px 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.advantage-card {
    background: var(--gray-bg);
    border-radius: 20px;
    padding: 35px 28px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-8px);
    background: var(--bg-white);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.1);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
    transition: transform 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    transform: rotate(8deg) scale(1.1);
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--bg-white);
}

.advantage-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   常见问题区域
   ============================================ */
.faq-section {
    background: var(--gray-bg);
    padding: 90px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.faq-item {
    display: block;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-lighter);
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 22px 24px;
}

.faq-question i:first-child {
    font-size: 1.2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.faq-question span {
    flex: 1;
    font-size: 1rem;
    font-weight: 500;
    color: var(--dark-color);
}

.faq-question .fa-arrow-right {
    font-size: 0.85rem;
    color: var(--gray-light);
    transition: transform 0.3s ease;
}

.faq-item:hover .fa-arrow-right {
    transform: translateX(4px);
    color: var(--primary-color);
}

/* ============================================
   CTA区域
   ============================================ */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-actions {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

.cta-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 28px;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-4px);
}

.cta-btn-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-btn-icon i {
    font-size: 1.3rem;
}

.cta-btn-phone .cta-btn-icon i {
    color: var(--primary-color);
}

.cta-btn-mobile .cta-btn-icon i {
    color: #10b981;
}

.cta-btn-qq .cta-btn-icon i {
    color: #1296db;
}

.cta-btn-email .cta-btn-icon i {
    color: #2563eb;
}

.cta-btn-text {
    display: flex;
    flex-direction: column;
}

.cta-btn-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2px;
}

.cta-btn-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bg-white);
}

/* ============================================
   动画效果
   ============================================ */
[data-animate] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-up"] {
    transform: translateY(30px);
}

[data-animate="fade-right"] {
    transform: translateX(-30px);
}

[data-animate="fade-left"] {
    transform: translateX(30px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================
   数字单位样式
   ============================================ */
.feature-number-wrapper {
    position: relative;
    display: inline-block;
}

.feature-unit {
    position: absolute;
    top: -2px;
    right: -20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

/* ============================================
   响应式设计
   ============================================ */
@media (max-width: 1200px) {
    /* 公司简介区域 */
    .about-hero-wrapper {
        max-width: 100%;
    }

    .about-hero-title {
        font-size: 2.4rem;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* 联系方式主体 */
    .contact-main-section {
        padding: 60px 0;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 40px;
    }

    .contact-list-section {
        gap: 18px;
    }

    .contact-list-item {
        padding: 22px 26px;
    }

    .contact-list-icon {
        width: 56px;
        height: 56px;
    }

    .contact-list-icon i {
        font-size: 1.4rem;
    }

    .contact-list-value {
        font-size: 1.2rem;
    }

    .contact-qrcode-section {
        position: static;
    }

    .qrcode-card {
        padding: 35px;
    }

    .qrcode-box {
        width: 170px;
        height: 170px;
    }

    .page-hero-visual {
        display: none;
    }

    .page-hero-content {
        justify-content: center;
        text-align: center;
    }

    .page-hero-text {
        max-width: 100%;
    }

    .page-hero-features {
        justify-content: center;
    }

    /* 24小时高亮响应式 */
    .hero-feature.feature-highlight {
        width: 100%;
        justify-content: center;
        padding: 10px 18px;
        font-size: 0.9rem;
    }

    .hero-feature.feature-highlight i {
        font-size: 1.1rem;
    }

    /* 面包屑响应式 */
    .page-hero-breadcrumb {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 12px 20px;
        font-size: 0.85rem;
        gap: 10px;
    }

    .page-hero-actions {
        justify-content: center;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .page-hero {
        min-height: 450px;
    }

    .page-hero-title {
        font-size: 2.8rem;
    }

    .page-hero-title .title-en {
        font-size: 1rem;
    }

    .page-hero-subtitle {
        font-size: 1.1rem;
    }

    .page-hero-features {
        gap: 12px;
    }

    .hero-feature {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .hero-btn {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .company-intro-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    /* 服务优势响应式 */
    .service-advantages {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header .section-title {
        font-size: 2rem;
    }

    .section-header .section-subtitle {
        font-size: 1rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .advantage-card {
        padding: 30px 24px;
    }

    .advantage-icon {
        width: 70px;
        height: 70px;
    }

    .advantage-icon i {
        font-size: 1.8rem;
    }

    /* FAQ响应式 */
    .faq-section {
        padding: 60px 0;
    }

    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    /* CTA响应式 */
    .contact-cta {
        padding: 60px 0;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }

    .cta-btn {
        padding: 16px 24px;
    }
}

@media (max-width: 768px) {
    /* 公司简介区域 */
    .about-intro-section {
        padding: 60px 0;
    }

    .about-hero-wrapper {
        max-width: 100%;
    }

    .about-hero-header {
        margin-bottom: 40px;
    }

    .about-hero-badge {
        padding: 8px 18px;
        margin-bottom: 18px;
    }

    .about-hero-badge i {
        font-size: 0.9rem;
    }

    .about-hero-badge span {
        font-size: 0.85rem;
    }

    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-desc {
        font-size: 1rem;
        line-height: 1.8;
    }

    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }

    .about-stat-card {
        padding: 28px 20px;
    }

    .stat-card-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 14px;
    }

    .stat-card-icon i {
        font-size: 1.3rem;
    }

    .stat-card-number {
        font-size: 2rem;
    }

    .stat-card-number span {
        font-size: 1.5rem;
    }

    .stat-card-label {
        font-size: 0.88rem;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-value-card {
        padding: 28px 24px;
    }

    .value-card-header {
        gap: 14px;
    }

    .value-card-icon {
        width: 48px;
        height: 48px;
    }

    .value-card-icon i {
        font-size: 1.2rem;
    }

    .value-card-header h3 {
        font-size: 1.1rem;
    }

    .about-value-card p {
        font-size: 0.95rem;
        padding-left: 62px;
    }

    .about-value-card p {
        font-size: 0.95rem;
        padding-left: 62px;
    }

    /* 联系方式主体 */
    .contact-main-section {
        padding: 50px 0;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-list-section {
        gap: 16px;
    }

    .contact-list-item {
        padding: 20px 24px;
    }

    .contact-list-icon {
        width: 54px;
        height: 54px;
    }

    .contact-list-icon i {
        font-size: 1.3rem;
    }

    .contact-list-value {
        font-size: 1.15rem;
    }

    .contact-qrcode-section {
        position: static;
    }

    .qrcode-card {
        padding: 30px;
    }

    .qrcode-box {
        width: 160px;
        height: 160px;
    }

    .page-hero {
        min-height: auto;
        padding: 100px 0 50px;
    }

    .page-hero-image img {
        max-height: 300px;
    }

    .page-hero-content {
        flex-direction: column;
        padding: 40px 0;
        gap: 30px;
    }

    .page-hero-badge {
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    .page-hero-title {
        font-size: 2.2rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .page-hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-feature {
        justify-content: center;
    }

    .page-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-illustration {
        display: none;
    }

    .hero-shape-1,
    .hero-shape-2 {
        display: none;
    }

    .page-hero-breadcrumb {
        margin-top: 20px;
        padding: 8px 16px;
        font-size: 0.82rem;
    }

    /* 联系方式主体 */
    .contact-main-section {
        padding: 50px 0;
    }

    .contact-content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 30px;
    }

    .contact-list-section {
        gap: 14px;
    }

    .contact-list-item {
        padding: 18px 20px;
    }

    .contact-list-icon {
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .contact-list-icon i {
        font-size: 1.2rem;
    }

    .contact-list-label {
        font-size: 0.82rem;
    }

    .contact-list-value {
        font-size: 1.1rem;
    }

    .contact-list-action {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .contact-qrcode-section {
        position: static;
    }

    .qrcode-card {
        padding: 28px;
    }

    .qrcode-header h3 {
        font-size: 1.2rem;
    }

    .qrcode-box {
        width: 150px;
        height: 150px;
    }

    /* 服务优势响应式 */
    .service-advantages {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 35px;
    }

    .section-header .section-title {
        font-size: 1.8rem;
    }

    .section-header .section-subtitle {
        font-size: 0.95rem;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .advantage-card {
        padding: 28px 20px;
    }

    .advantage-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 18px;
    }

    .advantage-icon i {
        font-size: 1.6rem;
    }

    .advantage-card h3 {
        font-size: 1.1rem;
    }

    .advantage-card p {
        font-size: 0.88rem;
    }

    /* FAQ响应式 */
    .faq-section {
        padding: 60px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 0 20px 18px;
        font-size: 0.88rem;
    }

    /* CTA响应式 */
    .contact-cta {
        padding: 50px 0;
    }

    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .cta-content h2 {
        font-size: 1.5rem;
    }

    .cta-content p {
        font-size: 0.95rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 14px;
        width: 100%;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 90px 0 40px;
    }

    .page-hero-badge {
        margin-bottom: 16px;
    }

    .page-hero-title {
        font-size: 1.85rem;
    }

    .page-hero-title .title-en {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }

    .page-hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-shape {
        display: none;
    }

    .page-hero-decoration {
        display: none;
    }

    /* 联系方式主体 */
    .contact-main-section {
        padding: 40px 0;
    }

    .contact-content-wrapper {
        gap: 24px;
        margin-top: 24px;
    }

    .contact-list-item {
        padding: 16px 18px;
        gap: 16px;
    }

    .contact-list-icon {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .contact-list-icon i {
        font-size: 1.1rem;
    }

    .contact-list-label {
        font-size: 0.78rem;
    }

    .contact-list-value {
        font-size: 1rem;
    }

    .contact-list-action {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .contact-list-action i {
        font-size: 1rem;
    }

    .qrcode-card {
        padding: 24px;
    }

    .qrcode-header h3 {
        font-size: 1.1rem;
    }

    .qrcode-header p {
        font-size: 0.88rem;
    }

    .qrcode-box {
        width: 140px;
        height: 140px;
        padding: 10px;
    }

    .qrcode-info {
        padding: 10px 20px;
    }

    .qrcode-icon {
        width: 32px;
        height: 32px;
    }

    .qrcode-icon i {
        font-size: 1rem;
    }

    .qrcode-info span {
        font-size: 0.88rem;
    }

    .company-intro-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    /* 优势卡片响应式 */
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .advantage-card {
        padding: 28px 20px;
    }

    /* CTA响应式 */
    .cta-content h2 {
        font-size: 1.3rem;
    }

    .cta-btn {
        padding: 14px 18px;
    }

    .cta-btn-icon {
        width: 44px;
        height: 44px;
    }

    .cta-btn-icon i {
        font-size: 1.1rem;
    }

    .cta-btn-value {
        font-size: 1rem;
    }
}
