/* Base Variables - Cyberpunk Dark Theme */
        :root {
            --bg-main: #070314;
            --bg-card: #120b29;
            --bg-input: #1b123a;
            --primary: #ff007f;
            --primary-glow: rgba(255, 0, 127, 0.4);
            --secondary: #8a2be2;
            --secondary-glow: rgba(138, 43, 226, 0.4);
            --cyan: #00f0ff;
            --cyan-glow: rgba(0, 240, 255, 0.4);
            --text-main: #f3f0ff;
            --text-muted: #a59fb8;
            --border-color: rgba(255, 0, 127, 0.2);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --max-width: 1200px;
        }

        /* Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-main);
            color: var(--text-main);
        }

        body {
            line-height: 1.6;
            background-image: 
                radial-gradient(circle at 10% 20%, rgba(138, 43, 226, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(255, 0, 127, 0.12) 0%, transparent 40%),
                linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
            background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
            overflow-x: hidden;
        }

        /* Layout Container */
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Buttons & Badges */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            font-size: 15px;
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #ffffff;
            box-shadow: 0 4px 15px var(--primary-glow);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 0, 127, 0.6);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--cyan);
            color: var(--cyan);
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
        }

        .btn-outline:hover {
            background: var(--cyan);
            color: #070314;
            transform: translateY(-2px);
            box-shadow: 0 0 20px var(--cyan-glow);
        }

        .badge {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(255, 0, 127, 0.15);
            border: 1px solid var(--primary);
            color: #ffffff;
            font-size: 12px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }

        /* Typography */
        h1, h2, h3, h4 {
            color: #ffffff;
            font-weight: 800;
            line-height: 1.3;
        }

        h2 {
            font-size: 32px;
            text-align: center;
            margin-bottom: 12px;
            position: relative;
            background: linear-gradient(to right, #fff, var(--cyan));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .section-desc {
            text-align: center;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto 50px;
            font-size: 16px;
        }

        /* Section Spacing */
        section {
            padding: 90px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        /* Header Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(7, 3, 20, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 0, 127, 0.15);
        }

        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

        .nav-brand {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .nav-brand img {
            height: 40px;
            display: block;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 10px;
        }

        .nav-menu a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-menu a:hover {
            color: var(--cyan);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background: #ffffff;
            border-radius: 2px;
            transition: var(--transition);
        }

        /* Hero Section (No Images Allowed) */
        .hero {
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            min-height: 100vh;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 46px;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ffffff 30%, var(--cyan) 70%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(0, 240, 255, 0.1);
        }

        .hero-text p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 36px;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Hero Interactive CSS Panel (Cyber Card - No image used) */
        .hero-interactive {
            background: linear-gradient(135deg, rgba(18, 11, 41, 0.8), rgba(27, 18, 58, 0.9));
            border: 2px solid var(--primary);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 10px 40px var(--primary-glow);
            position: relative;
        }

        .hero-interactive::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, var(--primary), var(--secondary), var(--cyan));
            border-radius: 16px;
            z-index: -1;
            opacity: 0.5;
            filter: blur(10px);
        }

        .tech-panel-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 15px;
            margin-bottom: 20px;
        }

        .dots {
            display: flex;
            gap: 6px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
        }

        .dot:nth-child(1) { background: #ff5f56; }
        .dot:nth-child(2) { background: #ffbd2e; }
        .dot:nth-child(3) { background: #27c93f; }

        .tech-status {
            font-size: 12px;
            color: var(--cyan);
            font-family: monospace;
            text-transform: uppercase;
            animation: blink 1.5s infinite;
        }

        @keyframes blink {
            50% { opacity: 0.4; }
        }

        .tech-content {
            font-family: monospace;
            font-size: 13px;
            color: var(--text-main);
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .code-line {
            display: flex;
            gap: 10px;
        }

        .code-ln {
            color: rgba(255, 255, 255, 0.25);
            user-select: none;
        }

        .code-txt {
            color: var(--text-muted);
        }

        .highlight-code {
            color: #ff007f;
        }

        .highlight-cyan {
            color: var(--cyan);
        }

        /* Data Stats Grid */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .stat-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: var(--transition);
        }

        .stat-card:hover {
            border-color: var(--primary);
            box-shadow: 0 5px 20px var(--primary-glow);
            transform: translateY(-5px);
        }

        .stat-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--cyan);
            margin-bottom: 8px;
        }

        .stat-lbl {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Platform Intro */
        .platform-intro-box {
            background: linear-gradient(135deg, var(--bg-card), rgba(18, 11, 41, 0.5));
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 50px;
        }

        .intro-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 30px;
        }

        .intro-feat-item {
            display: flex;
            gap: 16px;
        }

        .intro-feat-icon {
            font-size: 24px;
            color: var(--cyan);
            line-height: 1;
        }

        .intro-feat-text h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .intro-feat-text p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Services Grid (全平台AIGC服务) */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 35px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }

        .service-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px var(--primary-glow);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(to bottom, var(--primary), var(--secondary));
        }

        .service-icon {
            font-size: 32px;
            color: var(--cyan);
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 20px;
            margin-bottom: 16px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .service-list {
            list-style: none;
            padding-left: 0;
        }

        .service-list li {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .service-list li::before {
            content: "✓";
            color: var(--primary);
            font-weight: bold;
        }

        /* AIGC Workflow Section */
        .workflow-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

        .workflow-image {
            background: linear-gradient(135deg, rgba(255,0,127,0.1), rgba(0,240,255,0.1));
            padding: 16px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .workflow-image img {
            width: 100%;
            border-radius: 12px;
            display: block;
        }

        .workflow-steps-list {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .workflow-step-node {
            display: flex;
            gap: 20px;
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }

        .step-info h4 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .step-info p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Solutions Section */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .solution-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 30px;
            transition: var(--transition);
        }

        .solution-card:hover {
            border-color: var(--cyan);
            transform: translateY(-5px);
            box-shadow: 0 10px 25px var(--cyan-glow);
        }

        .solution-title {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--cyan);
        }

        .solution-card p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Service Network & Timeline */
        .network-section {
            background: linear-gradient(180deg, var(--bg-main) 0%, rgba(138, 43, 226, 0.05) 50%, var(--bg-main) 100%);
        }

        .network-map-simulation {
            border: 1px solid var(--border-color);
            background: rgba(18, 11, 41, 0.6);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            margin-bottom: 50px;
        }

        .map-dots-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 30px;
        }

        .map-node {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(0, 240, 255, 0.3);
            border-radius: 8px;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .node-pulse {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--cyan);
            box-shadow: 0 0 8px var(--cyan);
        }

        /* Technical Standards */
        .tech-standards-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .standard-box {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 12px;
        }

        .standard-box h4 {
            color: #ffffff;
            font-size: 20px;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .standard-box h4::before {
            content: "";
            display: inline-block;
            width: 10px;
            height: 10px;
            background: var(--primary);
            border-radius: 50%;
        }

        .standard-box p {
            color: var(--text-muted);
            font-size: 14px;
        }

        /* Case Center */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .case-card {
            background: var(--bg-card);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: var(--transition);
        }

        .case-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .case-image-wrapper {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }

        .case-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-info {
            padding: 24px;
        }

        .case-tag {
            font-size: 11px;
            background: rgba(0, 240, 255, 0.1);
            color: var(--cyan);
            padding: 2px 8px;
            border-radius: 4px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .case-info h4 {
            font-size: 18px;
            margin-bottom: 8px;
        }

        .case-info p {
            color: var(--text-muted);
            font-size: 13px;
        }

        /* Comparison Board */
        .comparison-board {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 40px;
            margin-top: 30px;
        }

        .comp-score-section {
            display: flex;
            align-items: center;
            justify-content: space-around;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 30px;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 20px;
        }

        .score-block {
            text-align: center;
        }

        .score-val {
            font-size: 64px;
            font-weight: 900;
            color: var(--primary);
            text-shadow: 0 0 20px var(--primary-glow);
        }

        .score-stars {
            color: #ffd700;
            font-size: 24px;
            margin-top: 5px;
        }

        .table-responsive {
            width: 100%;
            overflow-x: auto;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 600px;
        }

        th, td {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 14px;
        }

        th {
            font-weight: 700;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.02);
        }

        tr:hover td {
            background: rgba(255, 255, 255, 0.01);
        }

        /* Pricing Table */
        .price-section {
            background: linear-gradient(180deg, var(--bg-main) 0%, rgba(255, 0, 127, 0.03) 50%, var(--bg-main) 100%);
        }

        .price-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .price-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 40px;
            text-align: center;
            position: relative;
            transition: var(--transition);
        }

        .price-card.popular {
            border-color: var(--primary);
            box-shadow: 0 8px 30px var(--primary-glow);
        }

        .price-card.popular::after {
            content: 'HOT';
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: #ffffff;
            font-size: 11px;
            font-weight: bold;
            padding: 3px 10px;
            border-radius: 3px;
        }

        .price-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
        }

        .price-amt {
            font-size: 38px;
            font-weight: 900;
            color: var(--cyan);
            margin-bottom: 8px;
        }

        .price-amt span {
            font-size: 14px;
            color: var(--text-muted);
        }

        .price-features {
            list-style: none;
            margin: 30px 0;
            padding: 0;
            text-align: left;
        }

        .price-features li {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .price-features li::before {
            content: "✓";
            color: var(--cyan);
        }

        /* Training Sections */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .training-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 30px;
            transition: var(--transition);
        }

        .training-card:hover {
            border-color: var(--secondary);
            transform: translateY(-3px);
        }

        .training-card h4 {
            font-size: 18px;
            color: var(--cyan);
            margin-bottom: 15px;
        }

        .training-card ul {
            list-style: none;
            padding: 0;
        }

        .training-card li {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 8px;
        }

        /* Agent Program */
        .agent-container {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.1), rgba(138, 43, 226, 0.1));
            border: 2px dashed var(--primary);
            border-radius: 20px;
            padding: 50px;
            text-align: center;
        }

        .agent-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }

        .agent-item h4 {
            font-size: 20px;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .agent-item p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Feedback Section */
        .feedback-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feedback-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px;
            position: relative;
        }

        .feedback-user {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .user-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #ffffff;
        }

        .user-meta h4 {
            font-size: 15px;
            margin-bottom: 2px;
        }

        .user-meta span {
            font-size: 12px;
            color: var(--text-muted);
        }

        .feedback-text {
            font-size: 14px;
            color: var(--text-muted);
            font-style: italic;
        }

        /* Help Center / FAQ Section */
        .help-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .accordion-item {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            transition: var(--transition);
        }

        .accordion-header {
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            user-select: none;
            color: #ffffff;
        }

        .accordion-header:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .accordion-icon {
            font-size: 18px;
            transition: var(--transition);
            color: var(--cyan);
        }

        .accordion-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 20px;
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        .accordion-item.active .accordion-content {
            padding-bottom: 20px;
        }

        .accordion-item.active .accordion-icon {
            transform: rotate(45deg);
        }

        /* AI Glossary & Troubleshooting */
        .glossary-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 30px;
        }

        .glossary-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            padding: 20px;
        }

        .glossary-card h4 {
            color: var(--cyan);
            margin-bottom: 8px;
            font-size: 16px;
        }

        .glossary-card p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* News & Knowledge base */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .news-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .news-card h4 {
            font-size: 16px;
            margin-bottom: 12px;
        }

        .news-card p {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .news-link {
            color: var(--cyan);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .news-link:hover {
            color: var(--primary);
        }

        /* Contact & Match Section */
        .contact-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 50px;
        }

        .contact-form-container {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-label {
            font-size: 14px;
            font-weight: 600;
            color: #ffffff;
        }

        .form-control {
            background: var(--bg-input);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px 16px;
            color: #ffffff;
            font-size: 14px;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--cyan);
            box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        .contact-info-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .qr-wrapper {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .qr-wrapper img {
            width: 120px;
            height: 120px;
            border-radius: 8px;
            background: #ffffff;
            padding: 5px;
        }

        .qr-desc h4 {
            font-size: 18px;
            margin-bottom: 6px;
        }

        .qr-desc p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .info-list {
            list-style: none;
            padding: 0;
        }

        .info-list li {
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .info-list li strong {
            color: #ffffff;
        }

        /* Footer */
        footer {
            background: #04020a;
            border-top: 1px solid rgba(255, 0, 127, 0.2);
            padding: 60px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.5fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-brand img {
            height: 36px;
            margin-bottom: 15px;
        }

        .footer-brand p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .footer-links h5 {
            font-size: 16px;
            margin-bottom: 16px;
            color: var(--cyan);
        }

        .footer-links ul {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 13px;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: var(--cyan);
        }

        .footer-friends-block {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 24px;
            margin-top: 30px;
        }

        .footer-friends-title {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .footer-friends {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 18px;
        }

        .footer-friends a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 12px;
            transition: var(--transition);
        }

        .footer-friends a:hover {
            color: var(--cyan);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Floating Widgets */
        .floating-widgets {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .widget-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 1px solid var(--primary);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
            transition: var(--transition);
            position: relative;
        }

        .widget-btn:hover {
            background: var(--primary);
            transform: translateY(-3px);
            box-shadow: 0 4px 20px var(--primary-glow);
        }

        .widget-popover {
            position: absolute;
            right: 60px;
            bottom: 0;
            background: var(--bg-card);
            border: 1px solid var(--primary);
            border-radius: 12px;
            padding: 16px;
            width: 220px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: none;
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
        }

        .widget-popover img {
            width: 120px;
            height: 120px;
            border-radius: 6px;
        }

        .widget-popover p {
            font-size: 12px;
            color: var(--text-main);
        }

        .widget-btn:hover .widget-popover {
            display: flex;
        }

        .to-top {
            opacity: 0;
            visibility: hidden;
        }

        .to-top.show {
            opacity: 1;
            visibility: visible;
        }

        /* Mobile Responsive Adjustments */
        @media (max-width: 1024px) {
            h2 { font-size: 28px; }
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .services-grid, .training-grid, .case-grid, .feedback-grid, .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: var(--bg-card);
                flex-direction: column;
                padding: 24px;
                border-bottom: 1px solid var(--border-color);
                box-shadow: 0 10px 20px rgba(0,0,0,0.5);
            }

            .nav-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .nav-actions {
                display: none;
            }

            .hero-text h1 {
                font-size: 32px;
            }

            .hero-inner {
                padding-top: 40px;
            }

            .services-grid, .training-grid, .case-grid, .feedback-grid, .news-grid, .solutions-grid {
                grid-template-columns: 1fr;
            }

            .price-grid {
                grid-template-columns: 1fr;
            }

            .help-grid {
                grid-template-columns: 1fr;
            }

            .workflow-grid {
                grid-template-columns: 1fr;
            }

            .tech-standards-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
            }

            .comp-score-section {
                flex-direction: column;
                align-items: flex-start;
            }
        }