* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: linear-gradient(145deg, #1a0a2e 0%, #4a1a6f 100%);
            color: #f0e6ff;
            min-height: 100vh;
            line-height: 1.6;
        }

        .glass-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(255, 255, 255, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 14px 48px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        header {
            padding: 20px 0;
            background: rgba(26, 10, 46, 0.7);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 16px;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .logo-icon {
            font-size: 32px;
            filter: drop-shadow(0 0 12px rgba(138, 43, 226, 0.5));
        }

        .brand-name {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #d9b3ff, #b47aff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
        }

        .nav-links a {
            color: #d9c4f0;
            text-decoration: none;
            font-size: 15px;
            padding: 8px 16px;
            border-radius: 40px;
            background: rgba(255, 255, 255, 0.04);
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }

        .nav-links a:hover {
            background: rgba(180, 100, 255, 0.15);
            border-color: rgba(180, 100, 255, 0.35);
            color: #fff;
            box-shadow: 0 0 20px rgba(138, 43, 226, 0.2);
        }

        h1 {
            font-size: 48px;
            font-weight: 700;
            text-align: center;
            padding: 64px 0 20px;
            background: linear-gradient(135deg, #ffffff, #d9b3ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: 2px;
        }

        .geo-text {
            text-align: center;
            max-width: 860px;
            margin: 0 auto 48px;
            font-size: 17px;
            color: #d0c0e6;
            background: rgba(255, 255, 255, 0.03);
            padding: 20px 28px;
            border-radius: 20px;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(255, 255, 255, 0.04);
        }

        .section-title {
            font-size: 32px;
            font-weight: 600;
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            color: #f0e6ff;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #b47aff, #8a2be2);
            margin: 12px auto 0;
            border-radius: 4px;
        }

        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }

        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }

        .hero-section {
            padding: 60px 0;
            background: radial-gradient(ellipse at 30% 40%, rgba(74, 26, 111, 0.35) 0%, transparent 70%);
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content h2 {
            font-size: 38px;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #e8d4ff, #b47aff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-content p {
            font-size: 18px;
            color: #cbbde0;
            margin-bottom: 28px;
        }

        .hero-img {
            width: 100%;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transition: transform 0.4s ease;
        }

        .hero-img:hover {
            transform: scale(1.02);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
        }

        .stat-number {
            font-size: 42px;
            font-weight: 700;
            background: linear-gradient(135deg, #d9b3ff, #8a2be2);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .stat-label {
            font-size: 16px;
            color: #b8a6d0;
            margin-top: 6px;
        }

        .advantage-icon {
            font-size: 40px;
            margin-bottom: 16px;
        }

        .story-text {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            font-size: 17px;
            color: #d0c0e6;
            line-height: 1.9;
        }

        .testimonial-card {
            padding: 28px 24px;
            text-align: center;
        }

        .testimonial-card p {
            font-style: italic;
            color: #e0d0f0;
            margin-bottom: 12px;
        }

        .testimonial-author {
            font-weight: 500;
            color: #b47aff;
        }

        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 32px 48px;
            padding: 20px 0;
        }

        .partner-logos span {
            font-size: 24px;
            opacity: 0.7;
            transition: opacity 0.2s;
        }

        .partner-logos span:hover {
            opacity: 1;
        }

        .news-card {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .news-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: #f0e6ff;
        }

        .news-card .news-date {
            font-size: 13px;
            color: #9b86b0;
            letter-spacing: 0.5px;
        }

        .news-card p {
            font-size: 15px;
            color: #cbbde0;
            margin-top: 4px;
        }

        .faq-item {
            padding: 24px 28px;
            margin-bottom: 16px;
        }

        .faq-question {
            font-size: 18px;
            font-weight: 500;
            color: #f0e6ff;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faq-answer {
            font-size: 16px;
            color: #cbbde0;
            margin-top: 12px;
            line-height: 1.7;
        }

        .cta-section {
            text-align: center;
            padding: 80px 20px;
            background: radial-gradient(ellipse at center, rgba(138, 43, 226, 0.15) 0%, transparent 70%);
        }

        .cta-button {
            display: inline-block;
            padding: 16px 48px;
            background: linear-gradient(135deg, #8a2be2, #b47aff);
            color: #fff;
            font-size: 18px;
            font-weight: 600;
            border-radius: 60px;
            text-decoration: none;
            box-shadow: 0 8px 32px rgba(138, 43, 226, 0.3);
            transition: all 0.3s;
            border: 1px solid rgba(255, 255, 255, 0.12);
        }

        .cta-button:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 48px rgba(138, 43, 226, 0.5);
            background: linear-gradient(135deg, #9a3ce6, #c48aff);
        }

        footer {
            background: rgba(26, 10, 46, 0.8);
            backdrop-filter: blur(16px);
            padding: 48px 24px 24px;
            margin-top: 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.04);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-col h4 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #d9b3ff;
        }

        .footer-col p, .footer-col a {
            font-size: 14px;
            color: #b8a6d0;
            text-decoration: none;
            display: block;
            margin-bottom: 4px;
        }

        .footer-col a:hover {
            color: #f0e6ff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: #9b86b0;
        }

        .friend-links a {
            color: #b47aff;
            text-decoration: none;
            margin: 0 4px;
        }

        .friend-links a:hover {
            color: #f0e6ff;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            h1 { font-size: 32px; padding: 40px 0 16px; }
            .hero-grid { grid-template-columns: 1fr; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .header-inner { flex-direction: column; align-items: flex-start; }
            .nav-links { width: 100%; justify-content: flex-start; }
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .img-rounded {
            border-radius: 16px;
            margin: 12px 0;
        }

        section {
            padding: 60px 0;
        }

        .brand-story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        @media (max-width: 768px) {
            .brand-story-grid { grid-template-columns: 1fr; }
        }