/* CSS Reset & Variable Variables */
        :root {
            --primary: #8B5CF6; /* 亮紫主色 */
            --primary-hover: #7C3AED;
            --secondary: #EC4899; /* 绚烂粉 */
            --accent: #A78BFA;
            --text-main: #1F2937;
            --text-muted: #4B5563;
            --bg-light: #FAF8FF; /* 淡淡的紫白底色 */
            --bg-card: #FFFFFF;
            --border-color: #E9D5FF;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --container-max: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-light);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

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

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

        /* Common Container */
        .container {
            width: 100%;
            max-width: var(--container-max);
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Typography */
        h1, h2, h3, h4 {
            color: #111827;
            font-weight: 700;
        }

        h2 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 15px;
            position: relative;
            background: linear-gradient(135deg, #111827 0%, #6B21A8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-desc {
            text-align: center;
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 50px;
            font-size: 1.1rem;
        }

        section {
            padding: 90px 0;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 9999px;
            font-weight: 600;
            transition: var(--transition);
            cursor: pointer;
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #ffffff;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
        }

        .btn-primary:hover {
            box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5);
            transform: translateY(-2px);
            color: #ffffff;
        }

        .btn-secondary {
            background-color: #ffffff;
            border: 2px solid var(--primary);
            color: var(--primary);
        }

        .btn-secondary:hover {
            background-color: var(--primary);
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* Header Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        }

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

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-img {
            height: 40px;
            width: auto;
        }

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

        .nav-link {
            font-size: 0.95rem;
            color: var(--text-main);
            font-weight: 500;
            position: relative;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--primary);
            transition: var(--transition);
        }

        /* Hero Section (No Images) */
        .hero-section {
            padding-top: 150px;
            padding-bottom: 100px;
            background: radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.08) 0%, rgba(139, 92, 246, 0.05) 50%, rgba(250, 248, 255, 0) 100%);
            text-align: center;
        }

        .hero-title-h1 {
            font-size: 2.8rem;
            line-height: 1.25;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #111827 30%, #7C3AED 70%, #EC4899 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .hero-taglines {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }

        .tag-badge {
            background: rgba(139, 92, 246, 0.1);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 9999px;
            font-size: 0.9rem;
            font-weight: 500;
            border: 1px solid rgba(139, 92, 246, 0.2);
        }

        .hero-actions {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        /* Stat Metrics Card */
        .stat-section {
            background: #ffffff;
            padding: 50px 0;
            box-shadow: 0 4px 30px rgba(139, 92, 246, 0.05);
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-card {
            padding: 20px;
            border-right: 1px solid rgba(139, 92, 246, 0.1);
        }

        .stat-card:last-child {
            border-right: none;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 10px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 1rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* About & Intro */
        .about-section {
            background: #ffffff;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.15);
            border: 4px solid #fff;
        }

        .about-image-wrapper img {
            width: 100%;
            transition: var(--transition);
        }

        .about-image-wrapper:hover img {
            transform: scale(1.05);
        }

        .about-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .about-content p {
            margin-bottom: 15px;
            color: var(--text-muted);
            font-size: 1.05rem;
        }

        .about-features {
            margin-top: 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .about-feat-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 500;
        }

        .about-feat-item span {
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--secondary);
            border-radius: 50%;
        }

        /* Service Cards */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--bg-card);
            border-radius: 16px;
            padding: 35px 25px;
            box-shadow: 0 4px 20px rgba(139, 92, 246, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(139, 92, 246, 0.15);
            border-color: var(--primary);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            background: rgba(139, 92, 246, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .model-list-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
        }

        .model-list-inline span {
            background: var(--bg-light);
            border: 1px solid rgba(139, 92, 246, 0.1);
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        /* One-stop Production */
        .production-section {
            background: #ffffff;
        }

        .prod-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .prod-image-wrapper {
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.1);
        }

        .prod-list {
            list-style: none;
        }

        .prod-item {
            margin-bottom: 25px;
            display: flex;
            gap: 15px;
        }

        .prod-num {
            width: 32px;
            height: 32px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            flex-shrink: 0;
        }

        .prod-detail h4 {
            font-size: 1.15rem;
            margin-bottom: 6px;
        }

        .prod-detail p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* Process Steps */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            position: relative;
        }

        .process-card {
            background: #ffffff;
            padding: 30px 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(139, 92, 246, 0.05);
            position: relative;
        }

        .process-card::after {
            content: "➔";
            position: absolute;
            right: -20px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 1.5rem;
            color: var(--accent);
            opacity: 0.6;
        }

        .process-card:last-child::after {
            display: none;
        }

        .process-step-num {
            font-size: 3rem;
            font-weight: 900;
            color: rgba(139, 92, 246, 0.15);
            position: absolute;
            top: 10px;
            right: 15px;
            line-height: 1;
        }

        .process-card h4 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }

        .process-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            position: relative;
            z-index: 2;
        }

        /* Network Section */
        .network-section {
            background: #ffffff;
        }

        .network-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }

        .network-map-visual {
            background: radial-gradient(circle at center, rgba(139, 92, 246, 0.08) 0%, rgba(250, 248, 255, 0.1) 70%);
            border: 1px dashed var(--accent);
            border-radius: 16px;
            padding: 40px;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 20px;
        }

        .map-city-row {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .map-city-tag {
            background: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            border-left: 3px solid var(--primary);
        }

        .network-text h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .network-text p {
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        /* Technical Standards */
        .standard-section {
            background: var(--bg-light);
        }

        .standard-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
        }

        .standard-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .standard-item {
            background: #fff;
            padding: 20px;
            border-radius: 12px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(139, 92, 246, 0.1);
        }

        .standard-item h4 {
            color: var(--primary);
            margin-bottom: 5px;
        }

        .standard-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* Showcase Section */
        .showcase-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .showcase-card {
            background: #ffffff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            border: 1px solid rgba(139, 92, 246, 0.05);
        }

        .showcase-img-container {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background: #eaeaea;
        }

        .showcase-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .showcase-card:hover .showcase-img-container img {
            transform: scale(1.05);
        }

        .showcase-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary);
            color: #fff;
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .showcase-info {
            padding: 25px;
        }

        .showcase-info h4 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .showcase-info p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin-bottom: 15px;
        }

        /* Review / Comparison Section */
        .review-section {
            background: #ffffff;
        }

        .compare-wrapper {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.02) 0%, rgba(236, 72, 153, 0.02) 100%);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(139, 92, 246, 0.1);
        }

        .compare-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            padding-bottom: 20px;
        }

        .compare-score-box {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .score-big {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .score-meta {
            font-size: 0.95rem;
        }

        .score-stars {
            color: #FBBF24;
            font-size: 1.2rem;
            margin-top: 4px;
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 600px;
        }

        .compare-table th, .compare-table td {
            padding: 15px 20px;
            border-bottom: 1px solid rgba(139, 92, 246, 0.1);
        }

        .compare-table th {
            font-weight: 600;
            background: rgba(139, 92, 246, 0.05);
            color: var(--primary);
        }

        .compare-table tr:hover td {
            background: rgba(139, 92, 246, 0.02);
        }

        .text-highlight {
            color: var(--secondary);
            font-weight: 700;
        }

        /* Token Price Section */
        .price-section {
            background: var(--bg-light);
        }

        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .price-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(139, 92, 246, 0.08);
            text-align: center;
            position: relative;
        }

        .price-card.popular {
            border-color: var(--secondary);
            box-shadow: 0 8px 25px rgba(236, 72, 153, 0.15);
        }

        .badge-popular {
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--secondary);
            color: #fff;
            padding: 4px 16px;
            border-radius: 9999px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .price-card h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .price-num {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 15px;
            color: #111827;
        }

        .price-num span {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 400;
        }

        .price-features {
            list-style: none;
            margin-bottom: 25px;
            text-align: left;
        }

        .price-features li {
            padding: 8px 0;
            font-size: 0.9rem;
            border-bottom: 1px dashed rgba(139, 92, 246, 0.1);
            color: var(--text-muted);
        }

        .price-features li::before {
            content: "✓";
            color: var(--primary);
            margin-right: 8px;
            font-weight: bold;
        }

        /* Training Academy */
        .training-section {
            background: #ffffff;
        }

        .training-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .train-card {
            background: var(--bg-light);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(139, 92, 246, 0.1);
            transition: var(--transition);
        }

        .train-card:hover {
            border-color: var(--secondary);
            transform: translateY(-3px);
            background: #fff;
        }

        .train-card h4 {
            font-size: 1.1rem;
            margin-bottom: 10px;
            color: var(--text-main);
        }

        .train-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Form matching Section */
        .match-section {
            background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
        }

        .match-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
            align-items: center;
        }

        .match-text h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .match-text p {
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .match-form {
            background: #ffffff;
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(139, 92, 246, 0.08);
            border: 1px solid rgba(139, 92, 246, 0.1);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-main);
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            background-color: var(--bg-light);
            font-size: 1rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 8px rgba(139, 92, 246, 0.2);
            background-color: #fff;
        }

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

        /* Agency Affiliate program */
        .agency-section {
            background: #ffffff;
            text-align: center;
        }

        .agency-card-wrap {
            max-width: 800px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--bg-light) 0%, rgba(236, 72, 153, 0.05) 100%);
            border-radius: 20px;
            padding: 40px;
            border: 1px solid rgba(139, 92, 246, 0.1);
        }

        .agency-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .agency-step {
            padding: 15px;
        }

        .agency-step h4 {
            color: var(--primary);
            margin-bottom: 8px;
        }

        /* FAQ Section Accordion */
        .faq-grid {
            max-width: 850px;
            margin: 0 auto;
        }

        .faq-item {
            background: #ffffff;
            border-radius: 8px;
            margin-bottom: 12px;
            border: 1px solid rgba(139, 92, 246, 0.1);
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-question {
            width: 100%;
            padding: 18px 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 1.05rem;
            font-weight: 600;
            background: none;
            border: none;
            text-align: left;
            cursor: pointer;
            color: var(--text-main);
        }

        .faq-question::after {
            content: "+";
            font-size: 1.5rem;
            color: var(--primary);
            transition: var(--transition);
        }

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.05);
        }

        .faq-item.active .faq-question::after {
            content: "−";
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: rgba(139, 92, 246, 0.01);
        }

        .faq-answer-content {
            padding: 0 24px 20px;
            font-size: 0.95rem;
            color: var(--text-muted);
            line-height: 1.7;
        }

        /* Troubleshooting & Glossary */
        .knowledge-tabs {
            background: #ffffff;
        }

        .tab-box {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
        }

        .tab-btn {
            background: var(--bg-light);
            border: 1px solid rgba(139, 92, 246, 0.1);
            padding: 10px 24px;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }

        .tab-btn.active, .tab-btn:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }

        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
        }

        .trouble-grid, .glossary-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .trouble-card, .glossary-card {
            background: var(--bg-light);
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(139, 92, 246, 0.05);
        }

        .trouble-card h4, .glossary-card h4 {
            margin-bottom: 8px;
            color: var(--primary);
        }

        /* Review / Testimonials */
        .comments-section {
            background: var(--bg-light);
        }

        .comments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

        .comment-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(139, 92, 246, 0.08);
            position: relative;
        }

        .comment-quote {
            font-size: 0.95rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            font-style: italic;
        }

        .comment-user {
            display: flex;
            align-items: center;
            gap: 15px;
            border-top: 1px solid rgba(139, 92, 246, 0.1);
            padding-top: 15px;
        }

        .user-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        .user-meta h5 {
            font-size: 0.95rem;
            color: #111827;
        }

        .user-meta span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Articles & Info */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        .article-card {
            background: #ffffff;
            border-radius: 12px;
            padding: 20px;
            border: 1px solid rgba(139, 92, 246, 0.1);
            transition: var(--transition);
        }

        .article-card:hover {
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.1);
            border-color: var(--primary);
        }

        .article-card h4 {
            font-size: 1.05rem;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .article-card a {
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* Floating Qr Contact */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .float-btn {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
            cursor: pointer;
            transition: var(--transition);
            font-size: 1.5rem;
            border: none;
            position: relative;
        }

        .float-btn:hover {
            transform: scale(1.1);
        }

        .float-qr-pop {
            position: absolute;
            bottom: 65px;
            right: 0;
            background: #fff;
            border-radius: 12px;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border: 1px solid rgba(139, 92, 246, 0.1);
            width: 180px;
            text-align: center;
            display: none;
            animation: fadeInUp 0.3s ease-out forwards;
        }

        .float-qr-pop img {
            width: 100%;
            height: auto;
            border-radius: 8px;
            margin-bottom: 8px;
        }

        .float-qr-pop p {
            font-size: 0.8rem;
            color: var(--text-main);
            font-weight: 600;
        }

        /* Footer */
        footer {
            background-color: #110E1B;
            color: #A5A1B8;
            padding: 80px 0 30px;
            font-size: 0.9rem;
            border-top: 2px solid var(--primary);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-col h4 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 30px;
            height: 2px;
            background: var(--primary);
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 10px;
        }

        .footer-col ul li a {
            color: #A5A1B8;
        }

        .footer-col ul li a:hover {
            color: #ffffff;
            padding-left: 5px;
        }

        .footer-contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-contact-info p {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .friendship-links {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding: 20px 0;
            margin-bottom: 30px;
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }

        .friendship-links a {
            color: #8B87A0;
            font-size: 0.85rem;
        }

        .friendship-links a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            text-align: center;
            font-size: 0.8rem;
            color: #6C6882;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .about-grid, .prod-grid, .standard-grid, .match-grid, .network-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .hero-title-h1 {
                font-size: 2.2rem;
            }
            .stat-card {
                border-right: none;
                border-bottom: 1px solid rgba(139, 92, 246, 0.1);
            }
            .stat-card:last-child {
                border-bottom: none;
            }
            .process-card::after {
                content: "▼";
                right: 50%;
                bottom: -25px;
                top: auto;
                transform: translateX(50%);
            }
            .agency-steps {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            .nav-menu {
                position: absolute;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: #ffffff;
                flex-direction: column;
                padding: 40px 20px;
                transition: var(--transition);
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
                align-items: flex-start;
                overflow-y: auto;
            }
            .nav-menu.active {
                left: 0;
            }
            .nav-link {
                font-size: 1.1rem;
                width: 100%;
                padding: 10px 0;
            }
        }