﻿
/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
    /* Typography */
    --font-main: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Colors - Primary Palette */
    --accent-primary: #2563EB;
    --accent-blue: #3B82F6;
    --accent-purple: #8B5CF6;
    --accent-gradient: linear-gradient(135deg, #2563EB 0%, #8B5CF6 100%);

    /* Background */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8FAFC;
    --bg-tertiary: #F1F5F9;
    --bg: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-hover: #F8FAFC;

    /* Text */
    --text-primary: #1E293B;
    --text-secondary: #475569;
    --text-tertiary: #94A3B8;

    /* Border */
    --border-color: #E2E8F0;
    --border-glass: rgba(255,255,255,0.18);
    --border-glass-hover: rgba(255,255,255,0.3);

    /* Shadows */
    --shadow-card: 0 1px 3px rgba(255, 255, 255, 0.92), 0 1px 2px rgba(255, 255, 255, 0.92);
    --shadow-float: 0 10px 40px -10px rgba(255, 255, 255, 0.85);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    /* Spacing */
    --max-width: 1200px;
    --section-padding: 80px 0;

    /* Animation */
    --duration-fast: 150ms;
    --duration-normal: 300ms;
    --duration-slow: 500ms;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== FLOATING BAR (GRAND) ========== */
.floating-bar-enhanced{position:fixed;bottom:32px;right:32px;z-index:999;background:rgba(255,255,255,.95);border:1px solid rgba(255, 255, 255, 0.92);border-radius:20px;padding:10px;box-shadow:0 4px 6px -1px rgba(255, 255, 255, 0.85),0 12px 40px -4px rgba(255, 255, 255, 0.92),0 24px 60px -8px rgba(255, 255, 255, 0.92);backdrop-filter:blur(30px) saturate(180%);-webkit-backdrop-filter:blur(30px) saturate(180%)}
.floating-bar-enhanced ul{list-style:none;margin:0;padding:0}
.fbar-item{position:relative;display:flex;align-items:center;justify-content:center;cursor:pointer}
.fbar-shangqiao{display:flex;align-items:center;justify-content:center;gap:8px;width:120px;height:44px;border-radius:12px;font-size:13px;font-weight:600;color:#1E293B;transition:all .2s ease;cursor:pointer;user-select:none;letter-spacing:.02em;padding:0 16px;background:linear-gradient(135deg,#2563EB,#4F46E5);color:#fff!important}
.fbar-shangqiao a{display:flex;align-items:center;justify-content:center;gap:6px;width:100%;height:100%;color:#fff!important;font-size:13px;font-weight:600;text-decoration:none;border-radius:12px;transition:all .2s ease}
.fbar-shangqiao:hover{opacity:.88;transform:scale(1.03);box-shadow:0 4px 14px rgba(37,99,235,.35)}
.fbar-wechat,.fbar-tel,.fbar-addr{display:flex;align-items:center;justify-content:center;gap:8px;width:120px;height:44px;border-radius:12px;font-size:13px;font-weight:500;color:#6e6e73;transition:all .2s ease;cursor:default;user-select:none;letter-spacing:.02em;padding:0 16px}
.fbar-wechat{color:#07c160}.fbar-tel{color:#007AFF}.fbar-addr{color:#FF9500}
.fbar-wechat:hover{background:rgba(7,193,96,.08);color:#06ad56}.fbar-tel:hover{background:rgba(0,122,255,.08);color:#0066D6}.fbar-addr:hover{background:rgba(255,149,0,.08);color:#E68600}
.fbar-popup{display:none;position:absolute;right:calc(100% + 18px);top:50%;transform:translateY(-50%);background:rgba(255,255,255,.98);border:1px solid rgba(255, 255, 255, 0.92);border-radius:18px;padding:24px;min-width:260px;max-width:300px;box-shadow:0 4px 6px -1px rgba(255, 255, 255, 0.85),0 20px 50px -6px rgba(255, 255, 255, 0.85);backdrop-filter:blur(30px);z-index:1001}
.fbar-ewm{text-align:center}.fbar-ewm img{border-radius:14px;display:block;margin:0 auto;box-shadow:0 2px 12px rgba(255, 255, 255, 0.92)}.fbar-ewm p{margin-top:12px;font-size:12px;color:#86868b}
.fbar-telbox dd{display:flex;align-items:center;gap:10px;padding:10px 0;border-bottom:1px solid rgba(255, 255, 255, 0.85);font-size:14px;line-height:1.5}.fbar-telbox dd:last-child{border-bottom:none}.fbar-telbox dd span{color:#86868b;font-size:13px;white-space:nowrap}.fbar-telbox a{color:#007AFF;font-weight:600;font-size:15px;text-decoration:none;width:auto;height:auto}.fbar-telbox a:hover{opacity:.7;background:none;text-decoration:underline}
.fbar-bgs1 span{color:#86868b;font-size:13px}.fbar-bgs1 a{color:#007AFF;font-weight:700;font-size:17px}
.fbar-item:hover .fbar-popup{display:block;animation:fbarPopIn .2s ease forwards}
@keyframes fbarPopIn{from{opacity:0;transform:translateY(-50%) translateX(8px)}to{opacity:1;transform:translateY(-50%) translateX(0)}}
.fbar-popup::after{content:'';position:absolute;right:-10px;top:50%;transform:translateY(-50%);border:10px solid transparent;border-left-color:rgba(255, 255, 255, 0.92)}
.fbar-popup::before{content:'';position:absolute;right:-8px;top:50%;transform:translateY(-50%);border:9px solid transparent;border-left-color:rgba(255,255,255,.98);z-index:1}
@media(max-width:768px){.floating-bar-enhanced{bottom:16px;right:16px;padding:8px}.fbar-shangqiao a,.fbar-wechat,.fbar-tel,.fbar-addr{width:56px;height:48px;font-size:0;padding:0;border-radius:14px;justify-content:center}.fbar-shangqiao a{width:56px;height:56px;border-radius:50%}.fbar-shangqiao a div{font-size:0}.fbar-popup{display:none!important}}
/* =====================================================
   Ã¨Â¶ÂÃ¦Â Â¸Ã¦ÂÂÃ¥ÂÂÃ¤Â¼Â Ã¥ÂªÂ chwhcm.cn
   Apple-Inspired Dark Theme - Ã¥Â®ÂÃ¥ÂÂ¨Ã©ÂÂÃ¦ÂÂÃ§ÂÂ
   ===================================================== */

/* ==================== Ã¥Â­ÂÃ¤Â½ÂÃ¥ÂÂ Ã¨Â½Â½ ==================== */
500;600;700&display=swap');

/* ==================== CSS Ã¥ÂÂÃ©ÂÂ ==================== */

/* ==================== Ã¥ÂÂ¨Ã¥Â±ÂÃ©ÂÂÃ§Â½Â® ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: opacity var(--duration-fast) var(--ease-out);
}

a:hover {
    opacity: 0.8;
    text-decoration: none;
}

button {
    font-family: var(--font-main);
    cursor: pointer;
    border: none;
    outline: none;
}

/* ==================== Ã¦Â»ÂÃ¥ÂÂ¨Ã¦ÂÂ¡Ã§Â¾ÂÃ¥ÂÂ ==================== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--text-tertiary);
}

/* ==================== Ã¦ÂÂÃ¦ÂÂ¬Ã©ÂÂÃ¦ÂÂ© ==================== */
::selection {
    background: var(--accent-blue);
    color: white;
}

/* ==================== Ã¥Â¸ÂÃ¥Â±ÂÃ¥Â·Â¥Ã¥ÂÂ· ==================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 48px);
}

.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(48px, 8vw, 96px);
}

.section-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #007AFF;
    margin-bottom: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(0,122,255,0.12);
    border: 1px solid rgba(0,122,255,0.2);
    border-radius: 980px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==================== Ã¥ÂÂ¨Ã§ÂÂ»Ã¥ÂÂºÃ§Â¡ÂÃ§Â±Â» ==================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--duration-slow) var(--ease-out),
                transform var(--duration-slow) var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* ==================== Ã¨ÂÂÃ¦ÂÂ¯Ã¥ÂÂÃ¦ÂÂ ==================== */
.bg-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.bg-glow-blue {
    background: radial-gradient(circle, rgba(10,132,255,0.15) 0%, transparent 70%);
}

.bg-glow-purple {
    background: radial-gradient(circle, rgba(191,90,242,0.1) 0%, transparent 70%);
}

/* ==================== Ã©Â¡Â¶Ã©ÂÂ¨Ã¥Â¯Â¼Ã¨ÂÂª ==================== */
.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.92);
    transition: all var(--duration-normal) var(--ease-out);
}

.site-nav.scrolled {
    background: rgba(255,255,255,0.92);
    border-bottom-color: rgba(255, 255, 255, 0.92);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: all var(--duration-fast) var(--ease-out);
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.06);
    opacity: 1;
}

.nav-links a.active {
    color: var(--text-primary);
}

.nav-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #007AFF !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 14px !important;
    padding: 10px 22px !important;
    border-radius: 980px !important;
    transition: all var(--duration-fast) var(--ease-out) !important;
    letter-spacing: 0.3px;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,122,255,0.35), 0 1px 3px rgba(255, 255, 255, 0.92);
}

.nav-phone::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
    border-radius: inherit;
}

.nav-phone:hover {
    opacity: 1 !important;
    transform: scale(1.05) translateY(-1px);
    box-shadow: 0 4px 20px rgba(0,122,255,0.5), 0 2px 6px rgba(255, 255, 255, 0.85);
    background: #0066D6 !important;
}

/* Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢ÂÃ¤Â¸ÂÃ¦ÂÂÃ¦ÂÂºÃ¥ÂÂ·Ã¦ÂÂÃ©ÂÂ® */

/* Ã§Â§Â»Ã¥ÂÂ¨Ã§Â«Â¯Ã¨ÂÂÃ¥ÂÂ */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    padding: 8px;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--duration-fast);
}

.nav-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.92);
    padding: 20px;
    z-index: 999;
}

.nav-mobile-menu.open {
    display: block;
}

.nav-mobile-menu a {
    display: block;
    color: var(--text-secondary);
    font-size: 16px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.nav-mobile-menu a:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
}

/* ==================== Hero Ã¥ÂÂºÃ¥ÂÂ ==================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 64px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(10,132,255,0.18) 0%, transparent 60%);
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(10,132,255,0.12) 0%, transparent 70%);
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    bottom: 100px;
    right: 10%;
    background: radial-gradient(circle, rgba(191,90,242,0.08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    padding: 0 24px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 24px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #007AFF 0%, #5856D6 100%);
    border: none;
    border-radius: 980px;
    box-shadow: 0 4px 16px rgba(0,122,255,0.3);
    animation: fadeInUp 0.8s var(--ease-out) forwards;
    opacity: 0;
}

.hero-eyebrow::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(40px, 7vw, 88px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s var(--ease-out) 0.1s forwards;
    opacity: 0;
}

.hero-title .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(17px, 2.5vw, 22px);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto 48px;
    animation: fadeInUp 0.8s var(--ease-out) 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s var(--ease-out) 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: clamp(32px, 6vw, 80px);
    margin-top: 80px;
    animation: fadeInUp 0.8s var(--ease-out) 0.4s forwards;
    opacity: 0;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    line-height: 1;
  white-space: nowrap;}

.hero-stat-number .accent { color: var(--accent-blue); }

.hero-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}

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

/* ==================== Ã¦ÂÂÃ©ÂÂ®Ã§Â³Â»Ã§Â»Â ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all var(--duration-fast) var(--ease-out);
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: 0 4px 20px rgba(10,132,255,0.3);
}

.btn-primary:hover {
    opacity: 0.92;
    transform: scale(1.03);
    box-shadow: 0 6px 28px rgba(10,132,255,0.45);
    color: white;
    text-decoration: none;
}

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.12);
    border-color: var(--border-glass-hover);
    transform: scale(1.03);
    color: var(--text-primary);
    text-decoration: none;
}

.btn-lg {
    padding: 18px 36px;
    font-size: 17px;
}

.btn-icon {
    font-size: 18px;
}

/* ==================== Ã¦ÂÂÃ¥ÂÂ¡Ã¥ÂÂ¡Ã§ÂÂ ==================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .services-grid { grid-template-columns: 1fr; }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: clamp(28px, 4vw, 40px);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--accent-gradient);
    opacity: 0;
    transition: opacity var(--duration-normal);
}

.service-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(10,132,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 24px;
    transition: all var(--duration-normal);
}

.service-card:hover .service-icon {
    background: rgba(10,132,255,0.18);
    transform: scale(1.1);
}

.service-card-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-card-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-card-price {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-blue);
    padding: 6px 14px;
    background: rgba(10,132,255,0.1);
    border-radius: 50px;
    margin-bottom: 16px;
}

.service-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-tag {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-blue);
    padding: 5px 12px;
    background: rgba(0,122,255,0.1);
    border-radius: 980px;
    border: 1px solid rgba(0,122,255,0.18);
    letter-spacing: 0.02em;
}

/* ==================== Ã¦ÂÂ°Ã¥Â­ÂÃ§Â»ÂÃ¨Â®Â¡ ==================== */
.stats-section {
    position: relative;
}

.stats-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(10,132,255,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border-glass);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-glass);
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
    background: var(--bg-primary);
    padding: clamp(32px, 5vw, 56px) 24px;
    text-align: center;
    transition: background var(--duration-fast);
}

.stat-item:hover {
    background: var(--bg-secondary);
}

.stat-number {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number-static {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  white-space: nowrap;}

.stat-label {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-sub {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

/* ==================== Ã§ÂÂ¹Ã¨ÂÂ²Ã¥ÂÂºÃ¥ÂÂ ==================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .features-grid { grid-template-columns: 1fr; }
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: clamp(24px, 3vw, 36px);
    transition: all var(--duration-normal) var(--ease-out);
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.feature-icon {
    font-size: 32px;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ==================== Ã¦Â¡ÂÃ¤Â¾ÂÃ¥Â±ÂÃ§Â¤Âº ==================== */
.cases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .cases-grid { grid-template-columns: 1fr; }
}

.case-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration-normal) var(--ease-out);
}

.case-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    border-color: var(--border-glass-hover);
}

.case-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--bg-tertiary);
}

.case-card-body {
    padding: 24px;
}

.case-card-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #007AFF;
    padding: 5px 14px;
    background: rgba(0,122,255,0.12);
    border-radius: 980px;
    border: 1px solid rgba(0,122,255,0.2);
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.case-card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.case-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.case-card-stats {
    display: flex;
    gap: 16px;
}

.case-stat {
    text-align: center;
    flex: 1;
    padding: 12px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.05);
}

.case-stat-num {
    font-size: 20px;
    font-weight: 700;
    color: var(--accent-blue);
  white-space: nowrap;}

.case-stat-label {
    font-size: 12px;
    color: var(--text-tertiary);
    margin-top: 4px;
}

/* ==================== Ã¦ÂÂÃ¥ÂÂ¡Ã¨Â¯Â¦Ã¦ÂÂ ==================== */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: var(--section-padding);
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

@media (max-width: 900px) {
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }
}

.service-detail-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-tertiary);
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.service-detail-visual-placeholder {
    font-size: 120px;
    opacity: 0.15;
}

.service-detail-content .section-eyebrow {
    text-align: left;
}

.service-detail-content .section-title {
    text-align: left;
    font-size: clamp(28px, 4vw, 44px);
}

.service-detail-content .section-subtitle {
    text-align: left;
    margin: 0 0 32px 0;
}

.service-detail-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.service-detail-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-secondary);
}

.service-detail-features li .check {
    width: 24px;
    height: 24px;
    background: rgba(10,132,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--accent-blue);
    flex-shrink: 0;
}

/* ==================== Ã¥Â®Â¢Ã¦ÂÂ·Ã¨Â¯ÂÃ¨Â¨Â ==================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 900px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: clamp(24px, 3vw, 36px);
    position: relative;
}

.testimonial-quote {
    font-size: 48px;
    color: var(--accent-blue);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.testimonial-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 2px;
}

/* ==================== FAQ Ã¦ÂÂÃ©Â£ÂÃ§ÂÂ´ ==================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--duration-normal);
}

.faq-item:hover {
    border-color: var(--border-glass-hover);
}

.faq-item.active {
    border-color: rgba(10,132,255,0.3);
    background: rgba(10,132,255,0.03);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
    background: none;
    width: 100%;
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-primary);
    font-family: var(--font-main);
    gap: 16px;
    transition: color var(--duration-fast);
}

.faq-question:hover {
    color: var(--accent-blue);
}

.faq-question.active {
    color: var(--accent-blue);
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    transition: all var(--duration-normal);
    color: var(--text-secondary);
}

.faq-item.active .faq-toggle {
    background: var(--accent-blue);
    color: white;
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 28px 24px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

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

/* ==================== CTA Ã¥ÂÂºÃ¥ÂÂ ==================== */
.cta-section {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(10,132,255,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 48px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-phone {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

.cta-phone a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all var(--duration-fast);
}

.cta-phone a:hover {
    opacity: 0.8;
}

/* ==================== Ã¨ÂÂÃ§Â³Â»Ã¨Â¡Â¨Ã¥ÂÂ ==================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-input,
.form-select,
.form-textarea {
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    font-size: 16px;
    color: var(--text-primary);
    font-family: var(--font-main);
    transition: all var(--duration-fast);
    outline: none;
    -webkit-appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--text-tertiary);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--accent-blue);
    background: rgba(10,132,255,0.05);
    box-shadow: 0 0 0 3px rgba(10,132,255,0.1);
}

.form-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2386868b' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-select option {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

@media (max-width: 560px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ==================== 8Ã¥Â¤Â§AIÃ¥Â¹Â³Ã¥ÂÂ° ==================== */
.platforms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .platforms-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color, rgba(255,255,255,0.08));
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    cursor: pointer;
}

.platform-item:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent-blue, #0a84ff);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(10,132,255,0.15);
    text-decoration: none;
    color: inherit;
}

.platform-item:hover .platform-link-icon {
    opacity: 1;
    transform: translate(1px, -1px);
}

.platform-logo-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4px;
}

.platform-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 14px;
}

.platform-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0;
}

.platform-link-icon {
    font-size: 12px;
    color: var(--accent-blue, #0a84ff);
    opacity: 0.5;
    transition: all 0.2s ease;
    line-height: 1;
}

.platform-default-q {
    font-size: 11px;
    color: var(--text-tertiary);
    text-align: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 6px;
    padding: 3px 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* ==================== Footer ==================== */
.site-footer {
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

.footer-brand-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-top: 16px;
    max-width: 300px;
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 12px 20px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--duration-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
    opacity: 1;
}





.quick-nav-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-tertiary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-links li a.ext-link .ext-icon {
    font-size: 10px;
    opacity: 0.5;
    margin-left: 2px;
    transition: opacity var(--duration-fast);
}

.footer-links li a.ext-link:hover .ext-icon {
    opacity: 1;
}


}

@media (max-width: 560px) {
    .quick-nav-group {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
    }
    
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.footer-contact-icon {
    width: 20px;
    text-align: center;
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: var(--text-tertiary);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text-secondary);
    transition: all var(--duration-fast);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent-blue);
    color: white;
    opacity: 1;
}

/* ==================== Ã©Â¡ÂµÃ©ÂÂ¢Ã¤Â¸ÂÃ¥Â±Â Hero ==================== */
.page-hero {
    padding-top: calc(64px + clamp(60px, 10vw, 120px));
    padding-bottom: clamp(60px, 10vw, 120px);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(10,132,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero .section-eyebrow {
    margin-bottom: 16px;
}

.page-hero .section-title {
    margin-bottom: 16px;
}

/* ==================== Ã¤Â¿Â¡Ã¤Â»Â»Ã¥Â¾Â½Ã§Â«Â  ==================== */
.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-badge-icon {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(10,132,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent-blue);
}

/* 在线报名按钮 - 蓝色 */
.fbar-shangqiao a {
    background: var(--accent-blue);
    color: white !important;
    border-radius: 12px;
    width: 52px;
    height: 52px;
    font-size: 0;
}

.fbar-shangqiao a:hover {
    background: #0066D6;
    transform: scale(1.05);
    opacity: 1;
}

.fbar-shangqiao a div {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
}

/* 微信 - 绿色 */
.fbar-wechat {
    font-size: 12px;
    color: #07c160;
    transition: color var(--duration-fast);
    font-weight: 500;
}

.fbar-wechat:hover {
    color: #06ad56;
}

/* 电话 - 蓝色 */
.fbar-tel,
.fbar-addr {
    font-size: 12px;
    color: var(--accent-blue);
    font-weight: 500;
}

/* 弹窗 */
.fbar-popup {
    display: none;
    position: absolute;
    right: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 16px;
    min-width: 220px;
    box-shadow: var(--shadow-float);
    backdrop-filter: blur(20px);
    z-index: 1001;
}

/* 微信二维码弹窗 */
.fbar-ewm {
    text-align: center;
}

.fbar-ewm img {
    border-radius: 12px;
    display: block;
    margin: 0 auto;
}

/* 电话/地址弹窗 */
.fbar-telbox {
    text-align: left;
}

.fbar-telbox dd {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
}

.fbar-telbox dd span {
    color: var(--text-secondary);
    font-size: 13px;
}

.fbar-telbox a {
    color: var(--accent-blue);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    width: auto;
    height: auto;
}

.fbar-telbox a:hover {
    opacity: 0.8;
    background: none;
}

.fbar-bgs1 span { color: var(--text-secondary); font-size: 13px; }
.fbar-bgs1 a { color: var(--accent-blue); font-weight: 700; font-size: 15px; }

/* 悬停显示弹窗 */
.fbar-item:hover .fbar-popup {
    display: block;
}

/* 箭头 */
.fbar-popup::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 8px solid transparent;
    border-left-color: rgba(255, 255, 255, 0.85);
}

.fbar-popup::before {
    content: '';
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    border: 7px solid transparent;
    border-left-color: var(--bg-card);
    z-index: 1;
}

@media (max-width: 768px) {
    .floating-bar-enhanced {
        bottom: 12px;
        right: 12px;
    }
    .fbar-popup {
        display: none !important;
    }
}

/* ==================== Ã¥ÂÂÃ©ÂÂÃ§ÂºÂ¿ ==================== */
.divider {
    width: 48px;
    height: 4px;
    background: var(--accent-gradient);
    border-radius: 2px;
    margin: 24px auto;
}

.divider-left {
    margin: 24px 0;
}

/* ==================== Ã¥ÂÂ¾Ã§ÂÂÃ¥ÂÂ Ã¤Â½Â ==================== */
.img-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #0a0a0a 0%, #1c1c1e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-size: 48px;
    border-radius: var(--radius-md);
}

/* ==================== Ã¦Â ÂÃ§Â­Â¾ ==================== */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 700;
    background: rgba(0,122,255,0.12);
    color: #007AFF;
    border: 1px solid rgba(0,122,255,0.22);
    letter-spacing: 0.02em;
}

.badge-success {
    background: rgba(48,209,88,0.1);
    color: #30d158;
    border-color: rgba(48,209,88,0.2);
}

.badge-purple {
    background: rgba(191,90,242,0.1);
    color: var(--accent-purple);
    border-color: rgba(191,90,242,0.2);
}

/* ==================== Toast Ã¦ÂÂÃ§Â¤Âº ==================== */
.toast {
    position: fixed;
    bottom: 100px;
    right: 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    font-size: 15px;
    color: var(--text-primary);
    box-shadow: var(--shadow-card);
    z-index: 9999;
    transform: translateY(20px);
    opacity: 0;
    transition: all var(--duration-normal);
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.toast.success {
    border-color: rgba(48,209,88,0.3);
}

.toast.success .toast-icon {
    color: #30d158;
}

.toast-icon {
    font-size: 20px;
}

/* ==================== Ã¥ÂÂÃ¥Â°ÂÃ¥ÂÂ¨Ã§ÂÂ»Ã¥ÂÂÃ¥Â¥Â½ ==================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ==================== Ã¦ÂÂÃ¥ÂÂ°Ã¦Â Â·Ã¥Â¼Â ==================== */
@media print {
    .site-nav,
    .floating-bar-enhanced,
    .hero-actions,
    .cta-actions { display: none; }

    body { color: black; background: white; }
}

/* =====================================================
   Ã¥ÂÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢ÂÃ§Â³Â»Ã§Â»Â
   ===================================================== */

/* Ã©Â»ÂÃ¨Â®Â¤Ã¨Â·ÂÃ©ÂÂÃ§Â³Â»Ã§Â»Â */

/* Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢ÂÃ¨Â¦ÂÃ§ÂÂ */

/* Ã¦Â·Â±Ã¨ÂÂ²Ã¤Â¸Â»Ã©Â¢ÂÃ¨Â¦ÂÃ§ÂÂ */

/* ====== Ã©ÂÂÃ§ÂÂ¨Ã¨Â¿ÂÃ¦Â¸Â¡ ====== */

/* ====== Ã¤Â¸Â»Ã©Â¢ÂÃ¥ÂÂÃ¦ÂÂ¢Ã¦ÂÂÃ©ÂÂ® ====== */

/* Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢ÂÃ¤Â¸ÂÃ¦ÂÂÃ©ÂÂ®Ã¦Â Â·Ã¥Â¼Â */

/* Ã¦Â·Â±Ã¨ÂÂ²Ã¤Â¸Â»Ã©Â¢ÂÃ¤Â¸ÂÃ¦ÂÂÃ©ÂÂ®Ã¦Â Â·Ã¥Â¼Â */

/* ====== Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢ÂÃ¤Â¸ÂÃ¥Â¯Â¼Ã¨ÂÂª ====== */

/* Ã¥Â¯Â¼Ã¨ÂÂªÃ¥ÂÂÃ¦ÂÂ¢Ã¦ÂÂÃ©ÂÂ®Ã¥Â®Â¹Ã¥ÂÂ¨ */

/* ====== Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢Â Hero ====== */

/* ====== Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢ÂÃ¥ÂÂ¡Ã§ÂÂ ====== */

/* ====== Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢Â CTA ====== */

/* ====== Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢Â Footer ====== */

/* ====== Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢Â Contact Form ====== */

/* ====== Ã§Â§Â»Ã¥ÂÂ¨Ã§Â«Â¯Ã¨ÂÂÃ¥ÂÂÃ¦ÂµÂÃ¨ÂÂ² ====== */

/* ====== Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢Â FAQ ====== */

/* ====== Ã¨ÂÂ¹Ã¦ÂÂÃ¦ÂµÂÃ¨ÂÂ²Ã¤Â¸ÂÃ¥Â±ÂÃ¥Â­ÂÃ¤Â½Â/Ã¥ÂÂ¾Ã¦Â Â ====== */

/* ====== Ã©ÂÂÃ¦ÂÂÃ¨ÂÂÃ¦ÂÂ¯Ã©Â¡ÂµÃ©ÂÂ¢Ã¯Â¼Âgeo/casesÃ¯Â¼ÂÃ¦ÂµÂÃ¨ÂÂ²Ã¦ÂÂ¯Ã¦ÂÂ ====== */

/* Ã¥Â¯Â¼Ã¨ÂÂªÃ¤Â¸Â»Ã©Â¢ÂÃ¦ÂÂÃ©ÂÂ® - Ã§ÂÂ¬Ã§Â«Â li */

/* Ã§Â§Â»Ã¥ÂÂ¨Ã§Â«Â¯Ã©ÂÂÃ¨ÂÂ */

.office-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.08),
        0 20px 60px rgba(255, 255, 255, 0.85),
        0 4px 16px rgba(255, 255, 255, 0.85);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.6s ease;
}

.office-img-wrapper:hover {
    transform: scale(1.01);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.12),
        0 30px 80px rgba(255, 255, 255, 0.85),
        0 8px 24px rgba(255, 255, 255, 0.85);
}

.office-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.office-img-wrapper:hover img {
    transform: scale(1.03);
}

/* Ã¦Â¸ÂÃ¥ÂÂÃ©ÂÂ®Ã§Â½Â© */
.office-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.92) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* Ã¥ÂºÂÃ©ÂÂ¨Ã¦ÂÂÃ¥Â­ÂÃ¨Â¯Â´Ã¦ÂÂ */
.office-caption {
    position: absolute;
    bottom: 24px;
    left: 28px;
    right: 28px;
    z-index: 2;
    color: #fff;
}

.office-badge {
    display: inline-block;
    background: rgba(0,122,255,0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 6px 16px;
    border-radius: 980px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.office-text {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.85);
}

/* Ã¦ÂµÂÃ¨ÂÂ²Ã¤Â¸Â»Ã©Â¢ÂÃ¥Â¾Â®Ã¨Â°Â */

/* Ã¥ÂÂÃ¥ÂºÂÃ¥Â¼Â */
@media (max-width: 768px) {
    .office-img-wrapper {
        border-radius: 18px;
    }
    
    .office-caption {
        bottom: 16px;
        left: 18px;
        right: 18px;
    }
    
    .office-badge {
        font-size: 11px;
        padding: 5px 12px;
    }
    
    .office-text {
        font-size: 13px;
    }
}

/* =====================================================
   Ã§Â»ÂÃ¤Â¸Â Footer - Apple Ã©Â£ÂÃ¦Â Â¼Ã¥ÂÂÃ¥ÂÂÃ¥Â¸ÂÃ¥Â±Â
   ===================================================== */
.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 50px 0 30px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.footer-desc {
    font-size: 14px;
    color: var(--text-tertiary);
    line-height: 1.6;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    color: var(--text-secondary);
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.footer-social a:hover {
    background: rgba(0,122,255,0.2);
    color: #007AFF;
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links li a {
    color: var(--text-tertiary);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links li a:hover {
    color: #007AFF;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: 10px;
}

/* Ã¥ÂÂÃ¥ÂºÂÃ¥Â¼Â */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 35px 0 20px;
    }
    
    .footer-col:first-child {
        }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.footer-brand {
    flex: 0 0 300px;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 24px;
}

.footer-links-grid a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links-grid a:hover {
    color: var(--accent-primary);
}

.beian {
    text-align: center;
    padding: 24px;
    border-top: 1px solid var(--border-glass);
    font-size: 13px;
    color: var(--text-tertiary);
}

.beian a {
    color: var(--text-tertiary);
    text-decoration: none;
}

.beian a:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-brand {
        flex: none;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* === Footer Ã¥ÂÂÃ§Â»ÂÃ¨Â®Â¾Ã¨Â®Â¡ === */
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px;
    gap: 48px;
}

.footer-brand {
    flex: 0 0 280px;
}

.footer-brand img {
    height: 36px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--text-secondary, #666);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-columns {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    gap: 64px;
}

.footer-column {
    min-width: 120px;
}

.footer-column h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary, #1a1a1a);
    margin: 0 0 16px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: var(--text-secondary, #666);
    text-decoration: none;
    font-size: 14px;
    line-height: 2;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--accent-primary, #0066FF);
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid var(--border-glass, rgba(255, 255, 255, 0.92));
}

.footer-bottom a {
    color: var(--text-tertiary, #999);
    text-decoration: none;
    font-size: 13px;
}

.footer-bottom a:hover {
    color: var(--accent-primary, #0066FF);
}

/* Dark mode */

/* Ã¥ÂÂÃ¥ÂºÂÃ¥Â¼Â */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-brand {
        flex: none;
        text-align: center;
    }
    
    .footer-columns {
        justify-content: center;
        gap: 32px;
    }
    
    .footer-column {
        text-align: center;
    }
}

/* ============================================================
   Ã§Â«ÂÃ§ÂÂ¹Ã¤Â¸ÂÃ¥Â±Â CSS Ã¨Â¡Â¥Ã¥ÂÂ - 2026-05-05
   Ã¨Â¦ÂÃ§ÂÂÃ¯Â¼Âhero / nav / pricing / case / cta / faq / compare / process / why / float / steps / content / suitable / what / note / skill / quote / avatar Ã§Â­Â
   ============================================================ */

/* ---------- Ã¥ÂÂ¨Ã§ÂÂ»Ã¥Â»Â¶Ã¨Â¿Â ---------- */
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }

/* ---------- Ã¥Â¯Â¼Ã¨ÂÂªÃ¥Â¢ÂÃ¥Â¼Âº ---------- */
.nav { display: flex; align-items: center; justify-content: space-between; padding: 0 24px; height: 64px; }
.nav-cta { flex-shrink: 0; }
.nav-mobile-toggle { display: none; background: none; border: none; font-size: 24px; cursor: pointer; }
@media (max-width: 768px) {
  .nav-mobile-toggle { display: block; }
}

/* ---------- Hero Ã¥Â¢ÂÃ¥Â¼ÂºÃ¦Â Â·Ã¥Â¼Â ---------- */
.hero-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.hero-badge { display: inline-block; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; background: rgba(59,130,246,0.1); color: #3b82f6; margin-bottom: 16px; }
.hero-desc { font-size: 18px; color: #6b7280; line-height: 1.6; margin-top: 12px; max-width: 600px; margin-left: auto; margin-right: auto; }
.hero-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.hero-stat-num { font-size: 32px; font-weight: 800; color: #3b82f6; }
.hero-left { flex: 1; max-width: 560px; }
.hero-right { flex: 1; max-width: 440px; display: flex; flex-direction: column; gap: 16px; }
.hero-cta { display: flex; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.hero-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.hero-grid-bg { position: absolute; inset: 0; background-image: radial-gradient(circle at 1px 1px, rgba(59,130,246,0.06) 1px, transparent 0); background-size: 24px 24px; pointer-events: none; }
.hero-card { background: #fff; border-radius: 16px; padding: 20px; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.92); }
.hero-card-title { font-weight: 700; margin-bottom: 4px; }
.hero-card-sub { font-size: 14px; color: #6b7280; }
.hero-card-tag { display: inline-block; padding: 2px 8px; border-radius: 8px; font-size: 12px; background: rgba(59,130,246,0.1); color: #3b82f6; }
.hero-note { font-size: 13px; color: #9ca3af; margin-top: 16px; text-align: center; }

/* ---------- Section Ã¥Â¢ÂÃ¥Â¼ÂºÃ¦Â Â·Ã¥Â¼Â ---------- */
.section-alt { background: #f8fafc; }

.section-label { display: inline-block; padding: 4px 12px; border-radius: 16px; font-size: 13px; font-weight: 600; background: rgba(59,130,246,0.1); color: #3b82f6; margin-bottom: 12px; }
.section-desc { font-size: 16px; color: #6b7280; line-height: 1.6; max-width: 600px; margin: 0 auto; }
.section-inner { max-width: 800px; margin: 0 auto; }

/* ---------- Ã¦ÂÂÃ©ÂÂ®Ã¥ÂÂÃ¤Â½Â ---------- */
.btn-outline { display: inline-flex; align-items: center; justify-content: center; padding: 10px 24px; border: 2px solid #3b82f6; border-radius: 12px; color: #3b82f6; font-weight: 600; font-size: 15px; background: transparent; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.btn-outline:hover { background: #3b82f6; color: #fff; }

/* ---------- Pricing / Ã¤Â»Â·Ã¦Â Â¼Ã¥ÂÂ¡Ã§ÂÂ ---------- */
.pricing-section, .pricing-table { padding: 80px 0; }
.pricing-grid, .pricing-cards, .packages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.pricing-card, .price-card, .pkg { background: #fff; border-radius: 20px; padding: 32px 24px; box-shadow: 0 2px 16px rgba(255, 255, 255, 0.92); border: 2px solid transparent; transition: all 0.3s; position: relative; }
.pricing-card:hover, .price-card:hover, .pkg:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(255, 255, 255, 0.85); }
.pricing-card.featured, .price-card.featured, .pkg-popular, .pkg-featured { border-color: #3b82f6; box-shadow: 0 4px 24px rgba(59,130,246,0.15); }
.pricing-icon, .pkg-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; background: rgba(59,130,246,0.1); }
.pricing-title, .pkg-name, .price-name { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pricing-sub, .pkg-desc, .price-desc { font-size: 14px; color: #6b7280; margin-bottom: 16px; }
.pricing-price, .price-num, .pkg-price { font-size: 36px; font-weight: 800; color: #1e293b; }
.pricing-price span, .price-min, .pkg-min { font-size: 14px; color: #9ca3af; font-weight: 400; }
.pricing-features, .price-features, .pkg-features { list-style: none; padding: 0; margin: 20px 0; }
.pricing-features li, .price-features li, .pkg-features li { padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; display: flex; align-items: center; gap: 8px; }
.pricing-features li::before, .price-features li::before, .pkg-features li::before { content: 'Ã¢ÂÂ'; color: #10b981; font-weight: 700; }
.pricing-btn, .price-cta, .pkg-cta { width: 100%; }
.pkg-badge, .price-badge, .featured .pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 4px 16px; border-radius: 12px; font-size: 12px; font-weight: 700; background: #3b82f6; color: #fff; }
.pkg-header, .pkg-footer { text-align: center; }
.pkg-price-wrap { margin: 16px 0; }

/* ---------- Case / Ã¦Â¡ÂÃ¤Â¾ÂÃ¥ÂÂ¡Ã§ÂÂ ---------- */
.cases-section, .section-cases { padding: 80px 0; }
.cases-header { text-align: center; margin-bottom: 40px; }
.case-card-content { padding: 20px; }
.case-card-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.case-card:hover .case-card-image img {
    transform: scale(1.05);
}
.case-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.case-icon, .case-badge { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 20px; background: rgba(59,130,246,0.1); flex-shrink: 0; }
.case-name, .case-title { font-size: 18px; font-weight: 700; }
.case-desc { font-size: 14px; color: #6b7280; line-height: 1.6; margin-top: 8px; }
.case-industry { font-size: 12px; color: #9ca3af; }
.case-metrics, .case-result { display: flex; gap: 16px; margin-top: 12px; flex-wrap: wrap; }
.case-metric, .metric { text-align: center; }
.case-metric-val, .case-stat-value, .metric-v, .metric-val { font-size: 24px; font-weight: 800; color: #3b82f6; }
.metric-val.hi, .metric-v.green, .metric-v.hi { color: #10b981; }
.case-metric-label, .metric-l, .metric-label { font-size: 12px; color: #9ca3af; }
.case-body { padding: 16px; }
.case-img { width: 100%; height: 160px; object-fit: cover; border-radius: 12px; }
.case-tag { display: inline-block; padding: 2px 10px; border-radius: 8px; font-size: 12px; background: rgba(59,130,246,0.1); color: #3b82f6; margin-right: 6px; }
.case-meta { font-size: 13px; color: #9ca3af; margin-top: 8px; }

/* ---------- CTA / Ã¨Â¡ÂÃ¥ÂÂ¨Ã¥ÂÂ¬Ã¥ÂÂ¤ ---------- */
.cta-banner, .cta-content, .cta-contact, .cta-inner { text-align: center; padding: 60px 24px; border-radius: 20px; background: linear-gradient(135deg, #3b82f6, #6366f1); color: #fff; margin: 40px 0; }
.cta-left { text-align: left; flex: 1; }
.cta-right { flex-shrink: 0; }
.cta-desc, .cta-wechat { font-size: 16px; opacity: 0.9; margin-top: 12px; }
.cta-btn { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; padding: 12px 32px; border-radius: 14px; background: #fff; color: #3b82f6; font-weight: 700; font-size: 16px; text-decoration: none; transition: all 0.2s; }
.cta-btn:hover { transform: scale(1.05); }
.cta-or { margin: 12px 0; opacity: 0.7; font-size: 14px; }

/* ---------- FAQ Ã¦Â Â·Ã¥Â¼Â ---------- */
.faq-section { padding: 80px 0; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-q { padding: 16px 20px; border-radius: 12px; background: #fff; margin-bottom: 8px; cursor: pointer; font-weight: 600; display: flex; align-items: center; gap: 12px; transition: all 0.2s; box-shadow: 0 1px 4px rgba(255, 255, 255, 0.85); }
.faq-q:hover { background: #f0f7ff; }
.faq-q-num { width: 28px; height: 28px; border-radius: 8px; background: rgba(59,130,246,0.1); color: #3b82f6; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.faq-a { padding: 12px 20px 12px 60px; color: #6b7280; line-height: 1.7; font-size: 15px; }
.faq-a-inner { padding: 12px 20px; color: #6b7280; line-height: 1.7; }

/* ---------- Compare / Ã¥Â¯Â¹Ã¦Â¯ÂÃ¥ÂÂºÃ¥ÂÂ ---------- */
.compare-section { padding: 80px 0; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 40px; }
@media (max-width: 768px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 2px 16px rgba(255, 255, 255, 0.92); }
.compare-card.bad { border: 2px solid #f87171; }
.compare-card.good { border: 2px solid #10b981; }
.compare-title { font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.compare-list { list-style: none; padding: 0; }
.compare-list li { padding: 8px 0; font-size: 15px; display: flex; align-items: flex-start; gap: 8px; }

/* ---------- Process / Steps ---------- */
.section-process, .steps-section { padding: 80px 0; }
.process-header, .steps-header { text-align: center; margin-bottom: 40px; }
.process-steps, .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.process-step, .step { background: #fff; border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); transition: all 0.3s; }
.process-step:hover, .step:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.92); }
.step-circle, .step-num { width: 48px; height: 48px; border-radius: 50%; background: rgba(59,130,246,0.1); color: #3b82f6; display: flex; align-items: center; justify-content: center; font-size: 20px; font-weight: 800; margin: 0 auto 16px; }
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.step-desc { font-size: 14px; color: #6b7280; line-height: 1.5; }

/* ---------- Why / Ã¤Â¸ÂºÃ¤Â»ÂÃ¤Â¹ÂÃ©ÂÂÃ¦ÂÂ©Ã¦ÂÂÃ¤Â»Â¬ ---------- */
.section-why { padding: 80px 0; }
.why-header, .services-header { text-align: center; margin-bottom: 40px; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.why-item { background: #fff; border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); transition: all 0.3s; }
.why-item:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.92); }
.why-icon { width: 56px; height: 56px; border-radius: 16px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 16px; }
.why-title, .service-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-desc, .service-desc { font-size: 14px; color: #6b7280; line-height: 1.5; }
.service-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.service-tags span { padding: 2px 8px; border-radius: 6px; font-size: 12px; background: rgba(59,130,246,0.1); color: #3b82f6; }

/* ---------- Service Ã¥ÂÂÃ¤Â½ÂÃ©Â¢ÂÃ¨ÂÂ² ---------- */
.si-blue, .si-blue2, .si-blue3 { background: rgba(59,130,246,0.1); }
.si-pink, .si-pink2, .si-pink3 { background: rgba(236,72,153,0.1); }

/* ---------- Content / Ã¥ÂÂÃ¥Â®Â¹Ã¨ÂÂ¥Ã©ÂÂ ---------- */
.section-content, .section-services { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.content-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); transition: all 0.3s; }
.content-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.92); }
.content-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; background: rgba(59,130,246,0.1); }
.content-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.content-desc { font-size: 14px; color: #6b7280; line-height: 1.5; }

/* ---------- Suitable / Ã©ÂÂÃ¥ÂÂÃ¨Â°Â ---------- */
.suitable-section { padding: 80px 0; }
.suitable-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; margin-top: 40px; }
.suitable-card { background: #fff; border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); transition: all 0.3s; }
.suitable-card:hover { transform: translateY(-4px); }
.suitable-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 12px; }
.suitable-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.suitable-desc { font-size: 14px; color: #6b7280; line-height: 1.5; }

/* ---------- What / Ã¤Â»ÂÃ¤Â¹ÂÃ¦ÂÂ¯ ---------- */
.what-section { padding: 80px 0; }
.what-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.what-feature { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); }
.what-feature-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.what-feature-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.what-feature-desc { font-size: 14px; color: #6b7280; line-height: 1.5; }
.what-visual { text-align: center; margin: 40px auto; }
.what-visual-inner { display: inline-flex; align-items: center; justify-content: center; width: 120px; height: 120px; border-radius: 50%; background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(99,102,241,0.1)); }
.what-visual-icon { font-size: 48px; }
.what-visual-text { font-size: 18px; font-weight: 700; margin-top: 16px; }
.what-visual-sub { font-size: 14px; color: #6b7280; }

/* ---------- Note / Ã§Â¬ÂÃ¨Â®Â°Ã¥ÂÂ¡Ã§ÂÂ(Ã¥Â°ÂÃ§ÂºÂ¢Ã¤Â¹Â¦) ---------- */
.note-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); transition: all 0.3s; }
.note-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(255, 255, 255, 0.92); }
.note-header { padding: 12px 16px; display: flex; align-items: center; gap: 10px; }
.note-avatar { width: 32px; height: 32px; border-radius: 50%; background: rgba(236,72,153,0.15); display: flex; align-items: center; justify-content: center; font-size: 14px; }
.note-user { font-size: 14px; font-weight: 600; }
.note-follow { font-size: 12px; color: #ec4899; margin-left: auto; cursor: pointer; }
.note-images { position: relative; }
.note-img { width: 100%; aspect-ratio: 4/3; object-fit: cover; background: #f1f5f9; }
.note-content { padding: 12px 16px; }
.note-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; }
.note-tag { font-size: 12px; color: #ec4899; }
.note-stats { display: flex; gap: 16px; padding: 8px 16px; border-top: 1px solid #f1f5f9; }
.note-stat { font-size: 13px; color: #9ca3af; }
.note-float { position: absolute; top: 8px; right: 8px; padding: 4px 10px; border-radius: 8px; font-size: 12px; font-weight: 600; background: rgba(255,255,255,0.9); backdrop-filter: blur(4px); }

/* ---------- Showcase / Ã¥Â±ÂÃ§Â¤Âº ---------- */
.showcase-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 40px; }
.showcase-item { background: #fff; border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); transition: all 0.3s; }
.showcase-item:hover { transform: translateY(-4px); }
.showcase-item.highlight { border: 2px solid #3b82f6; }
.showcase-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 12px; }
.showcase-label { font-size: 14px; color: #6b7280; margin-top: 8px; }

/* ---------- Type / Ã§Â±Â»Ã¥ÂÂ ---------- */
.section-types { padding: 80px 0; }
.types-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.type-card { background: #fff; border-radius: 20px; padding: 24px; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); transition: all 0.3s; }
.type-card:hover { transform: translateY(-4px); }
.type-visual { height: 120px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 48px; margin-bottom: 16px; }
.type-visual.v1 { background: linear-gradient(135deg, #dbeafe, #ede9fe); }
.type-visual.v2 { background: linear-gradient(135deg, #fce7f3, #ede9fe); }
.type-visual.v3 { background: linear-gradient(135deg, #d1fae5, #dbeafe); }
.type-title { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.type-desc { font-size: 14px; color: #6b7280; line-height: 1.5; }
.type-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 12px; }
.type-tag { padding: 2px 8px; border-radius: 6px; font-size: 12px; background: rgba(59,130,246,0.1); color: #3b82f6; }
.type-body { margin-top: 16px; }

/* ---------- AdFlow / Ã¦ÂÂÃ¦ÂµÂ ---------- */
.section-adflow { padding: 80px 0; }
.adflow-header, .adflow-intro { text-align: center; margin-bottom: 20px; }
.adflow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.adflow-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); transition: all 0.3s; }
.adflow-card:hover { transform: translateY(-4px); }
.adflow-card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.adflow-card-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.adflow-card-desc { font-size: 14px; color: #6b7280; line-height: 1.5; }
.adflow-card-data { margin-top: 12px; padding-top: 12px; border-top: 1px solid #f1f5f9; }
.adflow-card-warn { font-size: 13px; color: #f59e0b; margin-top: 8px; }
.adflow-metric { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.adflow-metric-label { font-size: 13px; color: #9ca3af; }
.adflow-metric-val { font-size: 15px; font-weight: 700; color: #3b82f6; }

/* ---------- Natural / Ã¨ÂÂªÃ§ÂÂ¶Ã¦ÂµÂÃ©ÂÂ ---------- */
.section-natural { padding: 80px 0; }
.natural-header, .natural-intro { text-align: center; margin-bottom: 20px; }
.natural-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 40px; }
.natural-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); transition: all 0.3s; }
.natural-card:hover { transform: translateY(-4px); }
.natural-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(16,185,129,0.1); display: flex; align-items: center; justify-content: center; font-size: 22px; margin-bottom: 12px; }
.natural-title { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.natural-desc { font-size: 14px; color: #6b7280; line-height: 1.5; }
.natural-num { font-size: 28px; font-weight: 800; color: #10b981; margin-top: 12px; }
.natural-tip { font-size: 13px; color: #9ca3af; margin-top: 4px; }

/* ---------- Float Widget / Ã¦ÂµÂ®Ã¥ÂÂ¨Ã§Â»ÂÃ¤Â»Â¶ ---------- */
.float-widget { position: fixed; right: 20px; bottom: 20px; z-index: 1000; display: flex; flex-direction: column; gap: 8px; }
.float-btn { width: 48px; height: 48px; border-radius: 50%; background: #3b82f6; color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 4px 12px rgba(59,130,246,0.3); transition: all 0.2s; }
.float-btn:hover { transform: scale(1.1); }
.float-tag { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; border-radius: 9px; background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 4px; }

/* ---------- Skill / Ã¦ÂÂÃ¨ÂÂ½(yanguo) ---------- */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-top: 40px; }
.skill-card { background: #fff; border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); }
.skill-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 12px; }
.skill-name { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.skill-desc { font-size: 13px; color: #6b7280; }

/* ---------- Quote / Ã¥Â¼ÂÃ¨Â¨Â(yanguo) ---------- */
.quote-section { padding: 80px 0; }
.quote-text { font-size: 22px; font-style: italic; line-height: 1.7; text-align: center; max-width: 700px; margin: 0 auto; color: #374151; }
.quote-author { text-align: center; margin-top: 16px; font-size: 15px; color: #9ca3af; }

/* ---------- Avatar(yanguo) ---------- */
.avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, #3b82f6, #6366f1); display: flex; align-items: center; justify-content: center; font-size: 32px; color: #fff; margin: 0 auto; }

/* ---------- About Text(yanguo) ---------- */
.about-text { max-width: 700px; margin: 0 auto; font-size: 16px; line-height: 1.8; color: #4b5563; }

/* ---------- Social(yanguo) ---------- */
.social-links { display: flex; gap: 12px; justify-content: center; margin-top: 20px; }
.social-link { width: 44px; height: 44px; border-radius: 12px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; color: #3b82f6; text-decoration: none; transition: all 0.2s; }
.social-link:hover { background: #3b82f6; color: #fff; }

/* ---------- Stat(yanguo) ---------- */
.stat { text-align: center; padding: 20px; }
.stat-num { font-size: 36px; font-weight: 800; color: #3b82f6; }

/* ---------- Footer Ã¥Â¢ÂÃ¥Â¼Âº ---------- */
.footer-beian { font-size: 13px; color: #9ca3af; margin-top: 8px; }
/* footer logo img sizing handled by parent */
.footer-contact { font-size: 14px; color: #9ca3af; line-height: 1.8; }
.footer-phone { font-size: 18px; font-weight: 700; color: #3b82f6; }

/* ---------- Form(zixun) ---------- */
.form-section { padding: 80px 0; }
.form-inner { max-width: 600px; margin: 0 auto; background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 2px 16px rgba(255, 255, 255, 0.92); }
.form-header, .form-title { text-align: center; margin-bottom: 24px; }
.form-title { font-size: 22px; font-weight: 700; }
.form-desc { font-size: 14px; color: #6b7280; margin-bottom: 20px; text-align: center; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.form-note { font-size: 12px; color: #9ca3af; margin-top: 12px; text-align: center; }
.form-submit { margin-top: 20px; }

/* ---------- Check(zixun) ---------- */
.check-section { padding: 80px 0; }
.check-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 40px; }
.check-card { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); }
.check-inner { display: flex; align-items: flex-start; gap: 12px; }
.check-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.check-title { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.check-desc { font-size: 14px; color: #6b7280; }

/* ---------- Value(jiage) ---------- */
.value-section { padding: 80px 0; }
.value-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 40px; }
.value-card { background: #fff; border-radius: 16px; padding: 24px; text-align: center; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); }
.value-icon { width: 48px; height: 48px; border-radius: 14px; background: rgba(59,130,246,0.1); display: flex; align-items: center; justify-content: center; font-size: 24px; margin: 0 auto 12px; }
.value-num { font-size: 28px; font-weight: 800; color: #3b82f6; }
.value-label { font-size: 14px; color: #6b7280; margin-top: 4px; }

/* ---------- Note strip(jiage) ---------- */
.note-strip { background: #fef3c7; padding: 12px 0; text-align: center; font-size: 14px; color: #92400e; }
.note-strip-inner { display: inline-flex; align-items: center; gap: 8px; }

/* ---------- Table(jiage) ---------- */
.table-wrap { overflow-x: auto; margin-top: 40px; border-radius: 16px; box-shadow: 0 2px 12px rgba(255, 255, 255, 0.85); }
.pricing-table { width: 100%; border-collapse: collapse; background: #fff; }
.pricing-table th, .pricing-table td { padding: 12px 16px; text-align: center; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.pricing-table th { background: #f8fafc; font-weight: 700; }
.td-check { color: #10b981; font-weight: 700; }
.td-cross { color: #ef4444; }
.td-highlight { background: rgba(59,130,246,0.05); }
.td-price { font-weight: 700; color: #3b82f6; }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.partial { opacity: 0.6; }

/* ---------- Ã¨Â¡Â¥Ã¤Â¸Â 2026-05-05b ---------- */

/* hero glow follow (chwhcm) */
.hero-glow-follow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59,130,246,0.12) 0%, transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: left 0.3s ease, top 0.3s ease;
  z-index: 0;
}

/* packages wrapper (jiage) */
.packages { padding: 80px 0; }

/* pricing header (douyin/shipin/xiaohongshu) */
.pricing-header { text-align: center; margin-bottom: 40px; }

/* section-pricing */
.section-pricing { padding: 80px 0; }

/* pricing card variants (douyin) */
.pricing-card-icon { width: 48px; height: 48px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 16px; background: rgba(59,130,246,0.1); }
.pricing-card-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
.pricing-card-sub { font-size: 14px; color: #6b7280; margin-bottom: 16px; }
.pricing-card-price { font-size: 36px; font-weight: 800; color: #1e293b; }

/* metric row (douyin) */
.metric-row { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }

/* float variants */
.float-btn.top { position: relative; }
.float-tag.t1, .float-tag.t2 { position: absolute; top: -6px; right: -6px; min-width: 18px; height: 18px; border-radius: 9px; background: #ef4444; color: #fff; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; padding: 0 4px; }
.note-float.t1 { background: rgba(236,72,153,0.9); color: #fff; }
.note-float.t2 { background: rgba(59,130,246,0.9); color: #fff; }

/* types header (shipin) */
.types-header { text-align: center; margin-bottom: 40px; }

/* content header (xiaohongshu) */
.content-header { text-align: center; margin-bottom: 40px; }

/* what-features (benditui) */
.what-features { margin-top: 40px; }

/* Logo Ã¤Â¸Â»Ã©Â¢ÂÃ¥ÂÂÃ¦ÂÂ¢ */
.nav-logo 
.nav-logo 

/* Ã¦ÂÂÃ¥ÂÂ¨Ã¥ÂÂÃ¦ÂÂ¢ */

/* Ã§Â³Â»Ã§Â»ÂÃ¤Â¸Â»Ã©Â¢Â */
/* ========== LOGO CONTAINER ========== */
/* Ã¥Â¯Â¼Ã¨ÂÂªÃ¦Â Â logo Ã¥Â®Â¹Ã¥ÂÂ¨ */
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo a { display: flex; align-items: center; }
.nav-logo img { vertical-align: middle; }

/* Ã©Â¡ÂµÃ¨ÂÂ logo */
.footer-logo { margin-bottom: 16px; }
.footer-logo a { display: inline-flex; align-items: center; }

/* ========== 品牌故事区 ========== */
.brand-story-section {
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-secondary) 100%);
    padding: clamp(80px, 10vw, 120px) 0;
}

.brand-story-wrapper {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.brand-story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-blue);
    background: rgba(0,122,255,0.1);
    border: 1px solid rgba(0,122,255,0.2);
    padding: 8px 18px;
    border-radius: 980px;
    margin-bottom: 28px;
}

.brand-story-badge .pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.brand-story-headline {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.brand-story-headline .gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.brand-story-body {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 48px;
}

.brand-story-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.brand-value-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
}

.brand-value-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
}

.brand-value-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.brand-value-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.brand-value-text span {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 640px) {
    .brand-story-values { grid-template-columns: 1fr; }
}

/* ========== 行业覆盖网格 ========== */
.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--bg-primary);
    border: 1px solid var(--border-glass);
    border-radius: 980px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: all 0.2s var(--ease-out);
    cursor: default;
}

.industry-pill:hover {
    background: rgba(0,122,255,0.08);
    border-color: rgba(0,122,255,0.3);
    color: #007AFF;
    transform: translateY(-2px);
}

.industry-pill.active {
    background: rgba(0,122,255,0.12);
    border-color: rgba(0,122,255,0.3);
    color: #007AFF;
    font-weight: 600;
}

.industry-icon {
    font-size: 16px;
}

/* ========== CTA 分栏布局 ========== */
.cta-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
    margin-top: 48px;
}

@media (max-width: 860px) {
    .cta-split-wrapper {
        grid-template-columns: 1fr;
    }
}

/* 微信侧边栏 */
.cta-wechat-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    position: sticky;
    top: 88px;
}

@media (max-width: 860px) {
    .cta-wechat-panel {
        position: static;
        max-width: 420px;
        margin: 0 auto;
    }
}

.cta-wechat-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    text-align: left;
}

.cta-wechat-icon {
    font-size: 36px;
    flex-shrink: 0;
}

.cta-wechat-qr {
    margin-bottom: 20px;
}

.cta-wechat-phone {
    margin-bottom: 20px;
}

.cta-wechat-trust {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    padding: 16px;
    background: rgba(0,122,255,0.05);
    border-radius: var(--radius-sm);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
}

.trust-icon {
    font-size: 16px;
    flex-shrink: 0;
}

/* CTA 电话 */
.cta-phone-note {
    font-size: 14px;
    color: var(--text-tertiary);
    font-weight: 400;
    margin-left: 12px;
}

.cta-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

@media (max-width: 560px) {
    .cta-phone-note { display: none; }
}

/* ========== 导航下拉菜单 ========== */
.nav-has-dropdown{position:relative}
.nav-has-dropdown>a{display:flex;align-items:center;gap:4px}
.nav-dropdown-arrow{font-size:10px;transition:transform .2s ease}
.nav-has-dropdown:hover .nav-dropdown-arrow{transform:rotate(180deg)}


/* ==================== 导航栏下拉菜单（覆盖全局ul样式） ==================== */
.nav-links{display:flex!important;flex-direction:row!important;align-items:center;gap:4px;list-style:none!important;margin:0!important;padding:0!important}
.nav-links>li{margin:0!important;padding:0!important;list-style:none!important;position:relative}
.nav-links>li>a{color:var(--text-secondary);font-size:14px;font-weight:500;padding:8px 14px;border-radius:var(--radius-sm);text-decoration:none;transition:all var(--duration-fast) var(--ease-out);white-space:nowrap}
.nav-links>li>a:hover{color:var(--primary);background:rgba(37,99,235,.06)}
.nav-has-dropdown{position:relative}
.nav-dropdown-arrow{font-size:10px;margin-left:2px;transition:transform .2s ease;display:inline-block}
.nav-has-dropdown:hover .nav-dropdown-arrow{transform:rotate(180deg)}

/* 下拉面板 - 默认完全隐藏 */
.nav-dropdown-menu{
  display:none!important;
  position:absolute;top:100%;left:50%;transform:translateX(-50%);
  min-width:200px;background:#fff;border:1px solid rgba(255, 255, 255, 0.92);
  border-radius:16px;padding:10px!important;margin:0!important;
  box-shadow:0 12px 40px rgba(255, 255, 255, 0.85),0 4px 12px rgba(255, 255, 255, 0.92);
  z-index:9999;list-style:none!important;
  opacity:0;visibility:hidden;pointer-events:none;
  flex-direction:column!important;gap:4px!important
}

/* hover 显示 */
.nav-has-dropdown:hover>.nav-dropdown-menu{
  display:block!important;opacity:1!important;visibility:visible!important;
  top:calc(100% + 8px)!important;pointer-events:auto
}

/* 下拉菜单项 */
.nav-dropdown-menu>li{margin:0!important;padding:0!important;list-style:none!important}
.nav-dropdown-menu a{
  display:flex;align-items:center;gap:8px;padding:10px 16px;color:#334155;
  font-size:13.5px;font-weight:500;text-decoration:none;border-radius:10px;
  transition:all .15s ease;white-space:nowrap
}
.nav-dropdown-menu a:hover{
  background:linear-gradient(135deg,rgba(37,99,235,.08),rgba(79,70,229,.06));
  color:#2563EB;transform:translateX(3px)
}

/* 三角箭头 */
.nav-dropdown-menu::before{
  content:'';position:absolute;top:-7px;left:50%;transform:translateX(-50%);
  border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #fff
}

/* 电话按钮 */
.nav-phone{background:linear-gradient(135deg,#2563EB,#4F46E5)!important;color:#fff!important;font-weight:600!important;border-radius:20px!important;padding:8px 18px!important}
.nav-phone:hover{opacity:.9;transform:scale(1.03)}

/* Footer links - 横向排布 */
.footer-container ul.footer-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 12px 20px !important;
}


/* ==================== GEO站点独有组件 ==================== */

/* --- GEO对比卡片 --- */
.geo-card {
    flex: 1;

    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
}
.geo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.85);
    border-color: rgba(0,122,255,0.2);
}
.geo-card-highlight {
    background: linear-gradient(145deg, rgba(0,122,255,0.04), rgba(88,86,214,0.02));
    border-color: rgba(0,122,255,0.15);
}
.geo-card-highlight:hover {
    border-color: rgba(0,122,255,0.3);
    box-shadow: 0 12px 40px rgba(0,122,255,0.12);
}
.geo-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.geo-card-icon {
    font-size: 32px;
}
.geo-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary, #1d1d1f);
}
.geo-card-content p {
    font-size: 14px;
    color: var(--text-secondary, #6e6e73);
    margin-bottom: 16px;
    line-height: 1.6;
}

/* --- GEO流程步骤 --- */
.geo-step {
    text-align: center;
    padding: 24px 16px;
}
.geo-arrow {
    color: var(--accent-blue, #007aff);
    font-size: 24px;
    margin: 8px 0;
}

/* --- GEO vs 对比 --- */
.geo-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}
.geo-vs-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-blue, #007aff);
    background: rgba(0,122,255,0.08);
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 60px;
    text-align: center;
}

/* --- GEO展示区 --- */
.geo-showcase {
    display: flex;
    align-items: stretch;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.geo-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* --- 优势网格 --- */
.adv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.adv-item {
    background: var(--bg-card, #fff);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.92);
    transition: all 0.3s ease;
}
.adv-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.92);
}

/* --- 定价Tab --- */
.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}
.pricing-tab-content {
    display: none;
}
.pricing-tab-content.active {
    display: block;
}
.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #007aff, #5856d6);
    color: #fff;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}
.pricing-desc {
    color: var(--text-secondary, #6e6e73);
    font-size: 14px;
    margin: 12px 0;
}
.pricing-list {
    list-style: none;
    padding: 0;
}
.pricing-list li {
    padding: 8px 0;
    font-size: 14px;
    color: var(--text-secondary, #6e6e73);
    border-bottom: 1px solid rgba(255, 255, 255, 0.85);
}
.pricing-list li:last-child {
    border-bottom: none;
}
.pricing-cta {
    margin-top: 20px;
}

/* --- 流程步骤 --- */
.process-section {
    padding: 80px 32px;
    background: var(--bg-secondary, #f5f5f7);
}

/* --- 客户评价 --- */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.review-card {
    background: var(--bg-card, #fff);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.92);
}
.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
}
.review-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.review-name {
    font-weight: 600;
    font-size: 15px;
    color: var(--text-primary, #1d1d1f);
}
.review-role {
    font-size: 13px;
    color: var(--text-secondary, #6e6e73);
}
.review-stars {
    color: #ffb800;
    font-size: 14px;
    margin-bottom: 8px;
}
.review-text {
    font-size: 14px;
    color: var(--text-secondary, #6e6e73);
    line-height: 1.7;
}
.review-author {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.92);
    font-size: 13px;
    color: var(--text-secondary, #6e6e73);
}

/* --- Why Section (企业为什么必须做GEO) --- */
.why-section {
    background: var(--bg-secondary, #f5f5f7);
    padding: 80px 32px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.why-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.92);
    color: var(--text-primary, #1d1d1f);
}
.why-num {
    display: inline-block;
    width: 40px; height: 40px;
    background: var(--accent-blue, #007aff);
    color: #fff;
    border-radius: 10px;
    text-align: center;
    line-height: 40px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
}
.why-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary, #1d1d1f);
    margin-bottom: 10px;
}
.why-card p {
    font-size: 14px;
    color: var(--text-secondary, #6e6e73);
    line-height: 1.7;
}

/* --- Geo站导航Logo文字 --- */
.nav-logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary, #1d1d1f);
    letter-spacing: -0.3px;
}

/* 响应式适配 */
@media (max-width: 768px) {
    .geo-vs {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
}
    .geo-vs-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent-blue, #007aff);
    background: rgba(0,122,255,0.08);
    padding: 16px 20px;
    border-radius: 12px;
    min-width: 60px;
    text-align: center;
}
    .pricing-tabs { flex-wrap: wrap; }
    .reviews-grid { grid-template-columns: 1fr; }
    .adv-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .geo-card {
    flex: 1;
 padding: 24px; }
    .geo-card-icon { font-size: 24px; }
    .geo-card-title { font-size: 17px; }
}


/* ==================== Why Section 居中修复 ==================== */
.why-section .section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 32px;
}

.why-section .section-title {
    text-align: center;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
}

.why-section .section-sub {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary, #6e6e73);
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}


/* ==================== Pricing Section 优化 ==================== */
#pricing .section-title {
    text-align: center;
    margin-bottom: 12px;
}

#pricing .section-sub {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--text-secondary, #6e6e73);
    font-size: 16px;
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.92);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.85);
}

.pricing-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary, #1d1d1f);
}

.pricing-price {
    font-size: 42px;
    font-weight: 800;
    color: var(--accent-blue, #007aff);
    margin-bottom: 16px;
}

.pricing-price span {
    font-size: 16px;
    font-weight: 500;
    color: var(--text-secondary, #6e6e73);
}

.pricing-desc {
    font-size: 14px;
    color: var(--text-secondary, #6e6e73);
    margin-bottom: 20px;
    line-height: 1.6;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.pricing-list li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-primary, #1d1d1f);
    border-bottom: 1px solid rgba(255, 255, 255, 0.92);
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-cta {
    display: inline-block;
    background: var(--accent-blue, #007aff);
    color: #fff;
    padding: 12px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-cta:hover {
    background: #0051d5;
    transform: translateY(-2px);
}


/* ==================== FAQ 默认收起 ==================== */
.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-secondary, #6e6e73);
    line-height: 1.7;
    font-size: 15px;
    transition: all 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 500px;
    padding: 12px 20px 16px 60px;
}

.faq-item .arrow {
    transition: transform 0.3s ease;
}

.faq-item.open .arrow {
    transform: rotate(180deg);
}


/* ===== 团队卡片横向排列 ===== */
.team-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 40px auto 0;
    justify-content: center;
    flex-wrap: wrap;
}

.team-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 24px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
}

.team-avatar {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-avatar-placeholder {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #1d1d1f;
}

.team-role {
    font-size: 14px;
    color: #2563eb;
    font-weight: 600;
    margin: 0 0 6px 0;
}

.team-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* 移动端：竖向堆叠 */
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }
    .team-card {
        flex-direction: column;
        text-align: center;
        max-width: 100%;
        width: 100%;
    }
}
