:root {
            --bg-color: #0b0914;
            --card-bg: #131024;
            --primary: #ff007f;
            --secondary: #8a2be2;
            --accent: #00f0ff;
            --text-main: #f3f4f6;
            --text-muted: #9ca3af;
            --border-glow: rgba(255, 0, 127, 0.2);
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            --glow: 0 0 15px rgba(255, 0, 127, 0.35);
        }

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

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

        /* Container Alignment */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }

        /* Utilities */
        section {
            padding: 80px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.2rem;
            color: #fff;
            text-transform: uppercase;
            letter-spacing: 2px;
            background: linear-gradient(to right, #fff, var(--primary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }

        .section-title p {
            color: var(--text-muted);
            font-size: 1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(11, 9, 20, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 0, 127, 0.15);
        }

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

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

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

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

        .nav-menu a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            white-space: nowrap;
        }

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

        .nav-btn {
            background: var(--gradient);
            padding: 8px 16px;
            border-radius: 20px;
            color: #fff !important;
            font-weight: 500;
            box-shadow: var(--glow);
        }

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

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--text-main);
            transition: 0.3s;
        }

        /* Hero (No images allowed) */
        .hero {
            min-height: 90vh;
            padding-top: 120px;
            display: flex;
            align-items: center;
            background: radial-gradient(circle at 80% 20%, rgba(138, 43, 226, 0.15), transparent 50%),
                        radial-gradient(circle at 10% 80%, rgba(255, 0, 127, 0.15), transparent 50%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                              linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        .hero-content {
            text-align: center;
            max-width: 850px;
            margin: 0 auto;
            position: relative;
            z-index: 10;
        }

        .hero-subtitle {
            display: inline-block;
            padding: 6px 16px;
            background: rgba(255, 0, 127, 0.1);
            border: 1px solid var(--primary);
            border-radius: 30px;
            font-size: 0.85rem;
            color: var(--primary);
            margin-bottom: 20px;
            letter-spacing: 1px;
            box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff 30%, #f0a3ff 70%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 1.15rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.8;
        }

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

        .btn-primary {
            background: var(--gradient);
            color: #fff;
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: var(--glow);
            transition: all 0.3s;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 0 25px rgba(255, 0, 127, 0.6);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.15);
            color: var(--text-main);
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Stats Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 60px;
        }

        .stat-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            transition: transform 0.3s, border-color 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .stat-num {
            font-size: 2.2rem;
            font-weight: bold;
            color: var(--accent);
            margin-bottom: 5px;
        }

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

        /* About Us & Platform Intro */
        .about-wrapper {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #fff;
        }

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

        .about-features {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .about-features li {
            position: relative;
            padding-left: 25px;
            font-size: 0.9rem;
            color: var(--text-main);
        }

        .about-features li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--accent);
            font-weight: bold;
        }

        .about-highlight-box {
            background: linear-gradient(135deg, rgba(138, 43, 226, 0.1) 0%, rgba(255, 0, 127, 0.1) 100%);
            border: 1px solid var(--border-glow);
            border-radius: 16px;
            padding: 30px;
        }

        .highlight-item {
            margin-bottom: 20px;
        }

        .highlight-item:last-child {
            margin-bottom: 0;
        }

        .highlight-title {
            font-size: 1.1rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .highlight-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .service-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s;
        }

        .service-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 240, 255, 0.1);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: inline-block;
        }

        .service-card h3 {
            font-size: 1.2rem;
            margin-bottom: 12px;
            color: #fff;
        }

        .service-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            line-height: 1.5;
        }

        /* Model tags list */
        .model-list-section {
            margin-top: 50px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 12px;
            padding: 30px;
            text-align: center;
        }

        .model-list-section h4 {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .model-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            justify-content: center;
        }

        .model-tag {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-main);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            transition: all 0.2s;
        }

        .model-tag:hover {
            background: var(--primary);
            border-color: var(--primary);
            transform: scale(1.05);
        }

        /* One-stop Production Blocks */
        .onestop-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .onestop-card {
            background: var(--card-bg);
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.05);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            transition: all 0.3s;
        }

        .onestop-card:hover {
            border-color: var(--primary);
        }

        .onestop-info {
            padding: 30px;
        }

        .onestop-info h3 {
            font-size: 1.4rem;
            color: #fff;
            margin-bottom: 12px;
        }

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

        .onestop-features {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .onestop-features span {
            background: rgba(255, 0, 127, 0.1);
            color: var(--primary);
            border: 1px solid rgba(255, 0, 127, 0.3);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
        }

        /* Solutions */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .solution-item {
            background: linear-gradient(180deg, var(--card-bg) 0%, rgba(19, 16, 36, 0.5) 100%);
            border: 1px solid rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            padding: 24px;
            transition: all 0.3s;
        }

        .solution-item:hover {
            border-color: var(--secondary);
            box-shadow: 0 8px 24px rgba(138, 43, 226, 0.15);
        }

        .solution-title {
            font-size: 1.15rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 10px;
        }

        .solution-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Network & Map concept */
        .network-section {
            background: radial-gradient(circle at center, rgba(138, 43, 226, 0.1), transparent 70%);
        }

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

        .network-visual {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 0, 127, 0.15);
            border-radius: 16px;
            height: 300px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .network-grid-lines {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(rgba(255, 0, 127, 0.2) 1px, transparent 1px);
            background-size: 20px 20px;
        }

        .network-node {
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: var(--accent);
            border-radius: 50%;
            box-shadow: 0 0 10px var(--accent);
            animation: pulse 2s infinite;
        }

        .node-1 { top: 30%; left: 40%; }
        .node-2 { top: 60%; left: 70%; }
        .node-3 { top: 50%; left: 20%; }
        .node-4 { top: 25%; left: 80%; }

        @keyframes pulse {
            0% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--accent); }
            50% { transform: scale(1.5); opacity: 0.5; box-shadow: 0 0 20px var(--accent); }
            100% { transform: scale(1); opacity: 1; box-shadow: 0 0 10px var(--accent); }
        }

        .node-label {
            position: absolute;
            font-size: 0.75rem;
            color: var(--text-main);
            background: rgba(0, 0, 0, 0.8);
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform: translate(-50%, -25px);
            white-space: nowrap;
        }

        /* Timeline / Process */
        .timeline {
            position: relative;
            max-width: 900px;
            margin: 50px auto 0;
            padding-left: 30px;
            border-left: 2px solid rgba(138, 43, 226, 0.3);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-item:last-child {
            margin-bottom: 0;
        }

        .timeline-badge {
            position: absolute;
            left: -41px;
            top: 2px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: var(--primary);
            border: 4px solid var(--bg-color);
            box-shadow: 0 0 10px var(--primary);
        }

        .timeline-title {
            font-size: 1.15rem;
            font-weight: bold;
            margin-bottom: 8px;
            color: #fff;
        }

        .timeline-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* Tech Standards */
        .standards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .standard-card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 24px;
        }

        .standard-card h4 {
            color: var(--accent);
            margin-bottom: 12px;
            font-size: 1.1rem;
        }

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

        /* Comparison Review */
        .review-card {
            background: linear-gradient(135deg, rgba(255, 0, 127, 0.1) 0%, rgba(138, 43, 226, 0.15) 100%);
            border: 1px solid var(--primary);
            border-radius: 20px;
            padding: 40px;
            margin-bottom: 50px;
            box-shadow: var(--glow);
        }

        .review-score-area {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            padding-bottom: 25px;
            margin-bottom: 25px;
            flex-wrap: wrap;
            gap: 20px;
        }

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

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

        .score-text {
            font-size: 0.95rem;
            color: var(--text-main);
        }

        .stars {
            color: #ffb800;
            font-size: 1.5rem;
            letter-spacing: 3px;
        }

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

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

        .compare-table th, .compare-table td {
            padding: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.9rem;
        }

        .compare-table th {
            color: var(--accent);
            font-weight: bold;
        }

        .compare-table tr:hover {
            background: rgba(255, 255, 255, 0.02);
        }

        .compare-table td.highlight-cell {
            color: var(--primary);
            font-weight: 500;
        }

        /* Token Price Comparison */
        .token-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .token-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
        }

        .token-price {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--accent);
            margin: 15px 0;
        }

        .token-tag {
            background: rgba(0, 240, 255, 0.1);
            color: var(--accent);
            font-size: 0.75rem;
            padding: 2px 8px;
            border-radius: 10px;
            border: 1px solid rgba(0, 240, 255, 0.2);
        }

        /* Training Section */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .training-card {
            background: rgba(138, 43, 226, 0.05);
            border: 1px solid rgba(138, 43, 226, 0.2);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s;
        }

        .training-card:hover {
            border-color: var(--secondary);
            box-shadow: 0 0 15px rgba(138, 43, 226, 0.3);
            transform: translateY(-3px);
        }

        .training-cert {
            font-size: 0.75rem;
            color: var(--primary);
            text-transform: uppercase;
            font-weight: bold;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .training-card h3 {
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 15px;
        }

        .training-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        /* Franchise / Agency */
        .franchise-box {
            background: linear-gradient(90deg, rgba(255, 0, 127, 0.1) 0%, rgba(138, 43, 226, 0.1) 100%);
            border: 1px solid rgba(255, 0, 127, 0.2);
            border-radius: 20px;
            padding: 40px;
            text-align: center;
        }

        .franchise-box h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: #fff;
        }

        .franchise-box p {
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 0.95rem;
        }

        .franchise-benefits {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .benefit-item {
            background: rgba(0, 0, 0, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.05);
            padding: 15px 25px;
            border-radius: 12px;
        }

        .benefit-num {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--accent);
        }

        .benefit-label {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Case Gallery */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .case-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.05);
            transition: all 0.3s;
        }

        .case-card:hover {
            border-color: var(--primary);
            transform: translateY(-5px);
        }

        .case-img-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #222;
            position: relative;
        }

        .case-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .case-card:hover .case-img-container img {
            transform: scale(1.08);
        }

        .case-body {
            padding: 20px;
        }

        .case-tag {
            font-size: 0.75rem;
            color: var(--accent);
            margin-bottom: 8px;
            display: block;
        }

        .case-title {
            font-size: 1rem;
            font-weight: bold;
            color: #fff;
            margin-bottom: 8px;
        }

        .case-desc {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        /* Knowledge & Troubleshooting */
        .knowledge-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .knowledge-box, .trouble-box {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 30px;
        }

        .knowledge-box h3, .trouble-box h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: var(--accent);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding-bottom: 10px;
        }

        .kb-item, .tb-item {
            margin-bottom: 20px;
        }

        .kb-item:last-child, .tb-item:last-child {
            margin-bottom: 0;
        }

        .kb-term {
            font-size: 0.95rem;
            font-weight: bold;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .kb-definition, .tb-solution {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* FAQ (Accordion) */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border: 1px solid rgba(255, 255, 255, 0.05);
            margin-bottom: 12px;
            border-radius: 8px;
            background: var(--card-bg);
            overflow: hidden;
            transition: border-color 0.3s;
        }

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

        .faq-question {
            padding: 18px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
            user-select: none;
            color: #fff;
        }

        .faq-answer {
            padding: 0 24px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out, padding 0.3s ease-out;
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .faq-toggle {
            font-size: 1.2rem;
            transition: transform 0.3s;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 0 24px 20px 24px;
        }

        .faq-item.active .faq-toggle {
            transform: rotate(45deg);
        }

        /* User Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .testimonial-card {
            background: var(--card-bg);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 16px;
            padding: 24px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: border-color 0.3s;
        }

        .testimonial-card:hover {
            border-color: var(--secondary);
        }

        .test-content {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            font-style: italic;
        }

        .test-user {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 15px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: #fff;
            font-size: 0.9rem;
        }

        .user-meta h5 {
            font-size: 0.9rem;
            color: #fff;
        }

        .user-meta span {
            font-size: 0.75rem;
            color: var(--primary);
        }

        /* Submit Form & Matcher */
        .form-section-inner {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 40px;
        }

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

        .form-info h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .form-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin-bottom: 30px;
        }

        .form-contact-details {
            list-style: none;
        }

        .form-contact-details li {
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .form-contact-details strong {
            color: var(--accent);
        }

        .matching-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

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

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

        .form-group label {
            font-size: 0.8rem;
            color: var(--text-main);
            margin-bottom: 5px;
        }

        .form-group input, .form-group select, .form-group textarea {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            padding: 12px;
            color: #fff;
            font-size: 0.9rem;
            transition: all 0.3s;
        }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            background: rgba(255, 255, 255, 0.08);
            box-shadow: 0 0 10px rgba(255, 0, 127, 0.2);
        }

        .form-group select option {
            background: var(--bg-color);
            color: #fff;
        }

        /* Articles & Footer Links */
        .articles-box {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .articles-title {
            font-size: 1.2rem;
            color: var(--accent);
            margin-bottom: 20px;
            border-left: 3px solid var(--accent);
            padding-left: 10px;
        }

        .articles-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .articles-list a {
            color: var(--text-main);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.2s;
            display: inline-block;
        }

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

        .friendship-links {
            background: rgba(255, 255, 255, 0.01);
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px 0;
            text-align: center;
        }

        .friendship-links h4 {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

        .links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }

        .links-container a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.2s;
        }

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

        /* Footer & Main Brand alignment */
        footer {
            background: #06050b;
            padding: 60px 0 20px;
            border-top: 1px solid rgba(255, 0, 127, 0.15);
        }

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

        .footer-brand h4 {
            font-size: 1.25rem;
            color: #fff;
            margin-bottom: 15px;
        }

        .footer-brand p {
            font-size: 0.8rem;
            color: var(--text-muted);
            line-height: 1.6;
            margin-bottom: 15px;
        }

        .footer-links h5 {
            font-size: 0.95rem;
            color: #fff;
            margin-bottom: 15px;
        }

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

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

        .footer-links ul li a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.8rem;
            transition: color 0.2s;
        }

        .footer-links ul li a:hover {
            color: var(--primary);
        }

        .qr-area {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }

        .qr-area img {
            width: 100px;
            height: 100px;
            border-radius: 8px;
            border: 2px solid var(--primary);
        }

        .qr-label {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

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

        .footer-bottom p {
            font-size: 0.75rem;
            color: var(--text-muted);
        }

        .footer-bottom-links {
            display: flex;
            gap: 15px;
        }

        .footer-bottom-links a {
            color: var(--text-muted);
            text-decoration: none;
            font-size: 0.75rem;
        }

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

        /* Floating Widget */
        .floating-widget {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .widget-item {
            width: 50px;
            height: 50px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(255, 0, 127, 0.4);
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .widget-item:hover {
            transform: scale(1.1);
        }

        .widget-popover {
            position: absolute;
            right: 65px;
            bottom: 0;
            background: var(--card-bg);
            border: 1px solid var(--primary);
            border-radius: 12px;
            padding: 15px;
            width: 220px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            display: none;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .widget-popover img {
            width: 120px;
            height: 120px;
            border-radius: 6px;
        }

        .widget-popover p {
            font-size: 0.75rem;
            color: var(--text-main);
            text-align: center;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .stats-grid, .services-grid, .solutions-grid, .case-grid, .training-grid, .testimonials-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 10px 0;
            }
            .menu-toggle {
                display: flex;
            }
            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--bg-color);
                flex-direction: column;
                padding: 40px 20px;
                gap: 30px;
                transition: left 0.4s ease;
                border-top: 1px solid rgba(255, 0, 127, 0.1);
            }
            .nav-menu.open {
                left: 0;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-wrapper, .network-layout, .onestop-grid, .knowledge-wrapper, .form-layout {
                grid-template-columns: 1fr;
            }
            .services-grid, .solutions-grid, .case-grid, .training-grid, .testimonials-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .form-row {
                grid-template-columns: 1fr;
            }
        }