:root {
            --primary-gradient: linear-gradient(135deg, #7F00FF 0%, #FF007F 50%, #00F5FF 100%);
            --text-gradient: linear-gradient(135deg, #111111 0%, #3b0066 100%);
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --border-color: #e2e8f0;
            --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

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

        html {
            scroll-behavior: smooth;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-light);
        }

        body {
            overflow-x: hidden;
            line-height: 1.6;
        }

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

        /* Section Layout */
        section {
            padding: 100px 0;
            position: relative;
        }

        /* Header Style */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(226, 232, 240, 0.8);
            transition: all 0.3s ease;
        }

        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }

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

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

        .logo-text {
            font-size: 20px;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 24px;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-link:hover {
            color: #FF007F;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn-nav {
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            transition: var(--transition-bounce);
        }

        .btn-nav-outline {
            border: 2px solid #7F00FF;
            color: #7F00FF;
        }

        .btn-nav-outline:hover {
            background: #7F00FF;
            color: white;
            transform: translateY(-2px);
        }

        /* Mobile Nav Toggle */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            border: none;
            background: none;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-dark);
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* Hero Section (No Image) */
        .hero {
            padding-top: 180px;
            padding-bottom: 120px;
            background: radial-gradient(circle at 80% 20%, rgba(127, 0, 255, 0.08) 0%, rgba(255, 0, 127, 0.05) 50%, rgba(255, 255, 255, 0) 100%), var(--bg-white);
            text-align: center;
            position: relative;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 10%;
            left: 5%;
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, rgba(0, 245, 255, 0.2), rgba(127, 0, 255, 0.2));
            filter: blur(80px);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-tag {
            display: inline-block;
            padding: 6px 18px;
            background: rgba(255, 0, 127, 0.08);
            color: #FF007F;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 24px;
            letter-spacing: 1px;
            border: 1px solid rgba(255, 0, 127, 0.15);
        }

        .hero h1 {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 24px;
            color: var(--text-dark);
        }

        .hero h1 span {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

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

        .btn {
            display: inline-block;
            padding: 16px 36px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: var(--transition-bounce);
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary-gradient);
            color: #ffffff;
            box-shadow: 0 8px 25px rgba(255, 0, 127, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(255, 0, 127, 0.5);
        }

        .btn-secondary {
            background: var(--bg-white);
            color: var(--text-dark);
            border: 2px solid var(--text-dark);
        }

        .btn-secondary:hover {
            transform: translateY(-3px);
            background: var(--text-dark);
            color: var(--bg-white);
        }

        /* Indicators Section (Data Cards) */
        .indicators {
            padding: 40px 0;
            background: var(--bg-white);
            margin-top: -60px;
            position: relative;
            z-index: 10;
        }

        .indicator-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            background: var(--bg-white);
            padding: 40px 24px;
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            border: 1px solid rgba(226, 232, 240, 0.8);
        }

        .indicator-card {
            text-align: center;
        }

        .indicator-num {
            font-size: 36px;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }

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

        /* Section Title */
        .section-header {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px auto;
        }

        .section-header h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text-muted);
            font-size: 16px;
        }

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

        .service-card {
            background: var(--bg-white);
            padding: 40px 30px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: var(--transition-bounce);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
            transform-origin: left;
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            background: rgba(127, 0, 255, 0.08);
            color: #7F00FF;
            font-size: 24px;
            font-weight: bold;
        }

        .service-card:nth-child(even) .service-icon {
            background: rgba(255, 0, 127, 0.08);
            color: #FF007F;
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
        }

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

        /* Split Section AIGC Production */
        .aigc-production {
            background: var(--bg-white);
        }

        .split-layout {
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .split-content {
            flex: 1;
        }

        .split-media {
            flex: 1;
            position: relative;
        }

        .split-media img {
            border-radius: 24px;
            box-shadow: var(--shadow-lg);
            display: block;
            width: 100%;
        }

        .features-list {
            margin-top: 30px;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .feature-dot {
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: var(--primary-gradient);
            flex-shrink: 0;
            margin-top: 4px;
        }

        .feature-text h4 {
            font-weight: 700;
            margin-bottom: 4px;
        }

        .feature-text p {
            font-size: 13px;
            color: var(--text-muted);
        }

        /* Multi Platform List */
        .platform-section {
            background: var(--bg-light);
            text-align: center;
        }

        .platform-tag-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .platform-tag {
            background: var(--bg-white);
            padding: 10px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-dark);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: var(--transition-bounce);
        }

        .platform-tag:hover {
            transform: scale(1.08);
            border-color: #FF007F;
            color: #FF007F;
        }

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

        .solution-card {
            background: var(--bg-white);
            border-radius: 20px;
            overflow: hidden;
            display: flex;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: var(--transition-bounce);
        }

        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }

        .solution-text-area {
            padding: 40px;
            flex: 1;
        }

        .solution-text-area h3 {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .solution-text-area p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 20px;
        }

        .solution-bullets {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .solution-bullet {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-dark);
            font-weight: 600;
        }

        .solution-bullet::before {
            content: '✓';
            color: #00F5FF;
            font-weight: 900;
        }

        /* Step Timeline */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 4px;
            background: var(--border-color);
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            width: 50%;
            padding: 20px 40px;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--bg-white);
            border: 4px solid #7F00FF;
            border-radius: 50%;
            top: 30px;
            z-index: 1;
        }

        .timeline-item-left {
            left: 0;
            text-align: right;
        }

        .timeline-item-right {
            left: 50%;
            text-align: left;
        }

        .timeline-item-right::after {
            left: -10px;
        }

        .timeline-content {
            padding: 24px;
            background: var(--bg-white);
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }

        .timeline-step {
            display: inline-block;
            font-size: 12px;
            font-weight: 800;
            color: #FF007F;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .timeline-content h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .timeline-content p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* Comparison Table */
        .comparison-area {
            background: var(--bg-white);
        }

        .table-responsive {
            overflow-x: auto;
            border-radius: 20px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }

        .compare-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            background: var(--bg-white);
            min-width: 800px;
        }

        .compare-table th, .compare-table td {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-color);
        }

        .compare-table th {
            background-color: #faf5ff;
            color: var(--text-dark);
            font-weight: 700;
        }

        .compare-table tr:last-child td {
            border-bottom: none;
        }

        .compare-table td strong {
            color: #7F00FF;
        }

        .highlight-row {
            background: rgba(127, 0, 255, 0.02);
        }

        .badge-pro {
            background: var(--primary-gradient);
            color: white;
            padding: 4px 10px;
            border-radius: 12px;
            font-size: 12px;
            font-weight: 700;
        }

        /* Token Pricing & Comparison */
        .token-comparison {
            background: var(--bg-light);
        }

        .token-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .token-card {
            background: var(--bg-white);
            border-radius: 20px;
            padding: 40px 30px;
            border: 1px solid var(--border-color);
            position: relative;
            text-align: center;
            transition: var(--transition-bounce);
        }

        .token-card.popular {
            border: 2px solid #FF007F;
            box-shadow: var(--shadow-lg);
            transform: scale(1.03);
        }

        .token-card.popular::before {
            content: '最佳性价比';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: #FF007F;
            color: white;
            font-size: 12px;
            font-weight: 800;
            padding: 6px 16px;
            border-radius: 30px;
        }

        .token-title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .token-price {
            font-size: 40px;
            font-weight: 900;
            color: var(--text-dark);
            margin-bottom: 24px;
        }

        .token-price span {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .token-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
            text-align: left;
        }

        .token-features li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 14px;
            color: var(--text-muted);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .token-features li::before {
            content: '⚡';
            color: #FF007F;
        }

        /* Training Sections */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .training-card {
            background: var(--bg-white);
            border-radius: 24px;
            padding: 40px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .training-card h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #7F00FF;
        }

        .training-card ul {
            list-style: none;
            margin-bottom: 30px;
        }

        .training-card ul li {
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
            font-weight: 600;
            color: var(--text-dark);
        }

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

        .faq-item {
            background: var(--bg-white);
            border-radius: 12px;
            margin-bottom: 16px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-header {
            padding: 24px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
        }

        .faq-icon {
            font-size: 18px;
            transition: transform 0.3s;
            color: #7F00FF;
        }

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

        .faq-item.active .faq-content {
            padding-bottom: 24px;
        }

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

        /* Customer Reviews */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--bg-white);
            padding: 30px;
            border-radius: 20px;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }

        .review-rating {
            color: #FFD700;
            font-size: 18px;
            margin-bottom: 16px;
        }

        .review-text {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-info h4 {
            font-weight: 700;
            font-size: 15px;
        }

        .user-info p {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* Form section */
        .match-section {
            background: var(--bg-white);
        }

        .match-container {
            max-width: 700px;
            margin: 0 auto;
            background: var(--bg-light);
            padding: 50px 40px;
            border-radius: 30px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
        }

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

        .form-label {
            display: block;
            font-weight: 700;
            font-size: 14px;
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 14px 20px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            background: var(--bg-white);
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: #7F00FF;
            box-shadow: 0 0 0 3px rgba(127, 0, 255, 0.1);
        }

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

        /* Articles list */
        .articles-section {
            background: var(--bg-light);
        }

        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .article-card {
            background: var(--bg-white);
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            display: flex;
            flex-direction: column;
            transition: var(--transition-bounce);
        }

        .article-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md);
        }

        .article-body {
            padding: 30px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .article-tag {
            align-self: flex-start;
            font-size: 12px;
            font-weight: 700;
            color: #FF007F;
            margin-bottom: 12px;
        }

        .article-title {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .article-title a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s;
        }

        .article-title a:hover {
            color: #7F00FF;
        }

        .article-desc {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
            flex-grow: 1;
        }

        /* Footer styling */
        footer {
            background: #0f172a;
            color: #f8fafc;
            padding: 80px 0 40px 0;
            font-size: 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
            color: #ffffff;
            position: relative;
        }

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

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

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

        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            transition: color 0.3s;
        }

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

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

        .footer-qr {
            width: 100px;
            height: 100px;
            background: white;
            padding: 8px;
            border-radius: 8px;
            margin-top: 12px;
        }

        .footer-qr img {
            width: 100%;
            height: auto;
        }

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

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

        .footer-bottom-links a {
            color: #94a3b8;
            text-decoration: none;
        }

        .footer-bottom-links a:hover {
            color: white;
        }

        .friendship-links {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid #1e293b;
            font-size: 13px;
            color: #64748b;
        }

        .friendship-links a {
            color: #94a3b8;
            text-decoration: none;
            margin-right: 15px;
            display: inline-block;
        }

        .friendship-links a:hover {
            color: white;
        }

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

        .widget-btn {
            width: 50px;
            height: 50px;
            background: var(--bg-white);
            border-radius: 50%;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            position: relative;
            transition: var(--transition-bounce);
            border: 1px solid var(--border-color);
            color: var(--text-dark);
            text-decoration: none;
        }

        .widget-btn:hover {
            transform: scale(1.1);
            background: #7F00FF;
            color: white;
        }

        .widget-qr-pop {
            position: absolute;
            right: 60px;
            bottom: 0;
            background: white;
            padding: 12px;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            display: none;
            width: 140px;
            border: 1px solid var(--border-color);
        }

        .widget-qr-pop img {
            width: 100%;
            height: auto;
        }

        .widget-btn:hover .widget-qr-pop {
            display: block;
        }

        /* Responsive Breakpoints */
        @media (max-width: 1024px) {
            .services-grid, .token-grid, .reviews-grid, .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .timeline::before {
                left: 20px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 50px;
                padding-right: 0;
                text-align: left;
            }
            .timeline-item-left {
                left: 0;
            }
            .timeline-item-right {
                left: 0;
            }
            .timeline-item::after {
                left: 10px;
                right: auto;
            }
            .timeline-item-right::after {
                left: 10px;
            }
        }

        @media (max-width: 768px) {
            header {
                background: #ffffff;
            }
            .menu-toggle {
                display: flex;
            }
            nav {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                padding: 30px 24px;
                box-shadow: var(--shadow-md);
                border-top: 1px solid var(--border-color);
                align-items: stretch;
            }
            nav.active {
                display: flex;
            }
            .nav-actions {
                flex-direction: column;
                margin-top: 20px;
            }
            .hero h1 {
                font-size: 32px;
            }
            .indicator-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .services-grid, .solutions-grid, .token-grid, .reviews-grid, .articles-grid, .training-grid {
                grid-template-columns: 1fr;
            }
            .split-layout {
                flex-direction: column;
            }
            .solution-card {
                flex-direction: column;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }