:root {
            --primary-color: #0052D9;
            --primary-hover: #003eb3;
            --primary-light: #e3ecff;
            --text-dark: #1f2d3d;
            --text-muted: #5e6d82;
            --bg-light: #f5f7fa;
            --bg-white: #ffffff;
            --accent-orange: #ff9900;
            --border-color: #ebeef5;
            --transition-speed: 0.3s;
            --max-width: 1200px;
        }

        * {
            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 {
            line-height: 1.6;
        }

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

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

        ul {
            list-style: none;
        }

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

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

        /* 顶部导航 */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

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

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

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

        .brand-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-color);
        }

        .nav-menu {
            display: flex;
            gap: 20px;
        }

        .nav-link {
            color: var(--text-dark);
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 4px;
        }

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

        .nav-btn {
            background-color: var(--primary-color);
            color: var(--bg-white);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 500;
            border: none;
            cursor: pointer;
            transition: background var(--transition-speed);
        }

        .nav-btn:hover {
            background-color: var(--primary-hover);
            color: var(--bg-white);
        }

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

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

        /* 基础区块样式 */
        section {
            padding: 80px 0;
            background-color: var(--bg-white);
        }

        section:nth-of-type(even) {
            background-color: var(--bg-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
            padding-bottom: 10px;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--accent-orange);
            border-radius: 2px;
        }

        .section-header p {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Hero首屏 - 纯CSS设计，无图片 */
        .hero-section {
            background: linear-gradient(135deg, #002060 0%, #0052D9 50%, #0070f3 100%);
            color: var(--bg-white);
            padding: 100px 0 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -30%;
            width: 80%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            transform: rotate(-30deg);
            pointer-events: none;
        }

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

        .hero-tag {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 20px;
            letter-spacing: 1px;
            border: 1px solid rgba(255, 255, 255, 0.25);
        }

        .hero-content h1 {
            font-size: 2.5rem;
            line-height: 1.3;
            margin-bottom: 25px;
            font-weight: 800;
        }

        .hero-content p {
            font-size: 1.15rem;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.8;
        }

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

        .btn-primary {
            background-color: var(--accent-orange);
            color: var(--bg-white);
            padding: 15px 35px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
            transition: all var(--transition-speed);
        }

        .btn-primary:hover {
            background-color: #e68a00;
            color: var(--bg-white);
            transform: translateY(-2px);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--bg-white);
            padding: 15px 35px;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: bold;
            border: 2px solid var(--bg-white);
            transition: all var(--transition-speed);
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--bg-white);
            transform: translateY(-2px);
        }

        /* 数据指标卡片 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 30px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            padding: 20px;
            border-radius: 12px;
            backdrop-filter: blur(5px);
            transition: transform var(--transition-speed);
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

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

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.85;
        }

        /* 关于我们与平台介绍 */
        .intro-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

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

        .intro-text p {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.8;
        }

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

        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--bg-light);
            padding: 12px 15px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .feature-item::before {
            content: "✓";
            color: var(--primary-color);
            font-weight: bold;
        }

        /* 全平台AIGC服务与模型聚合 */
        .model-list-wrapper {
            background-color: var(--bg-light);
            border-radius: 16px;
            padding: 30px;
            margin-top: 30px;
        }

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

        .model-tag {
            background-color: var(--bg-white);
            color: var(--text-dark);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            box-shadow: 0 2px 6px rgba(0,0,0,0.02);
            border: 1px solid var(--border-color);
            transition: all var(--transition-speed);
        }

        .model-tag:hover {
            background-color: var(--primary-color);
            color: var(--bg-white);
            transform: translateY(-2px);
        }

        /* 一站式AIGC制作 - 核心场景 */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .scene-card {
            background: var(--bg-white);
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            transition: all var(--transition-speed);
        }

        .scene-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0,82,217,0.1);
        }

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

        .scene-card h3 {
            margin-bottom: 15px;
            color: var(--text-dark);
        }

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

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

        /* 全行业解决方案与服务网络 */
        .solution-tabs {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .tab-btn {
            background: var(--bg-white);
            border: 1px solid var(--border-color);
            padding: 10px 24px;
            border-radius: 30px;
            cursor: pointer;
            font-weight: 500;
            transition: all var(--transition-speed);
        }

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

        .tab-content {
            display: none;
            background: var(--bg-white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .tab-content.active {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .network-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
            text-align: center;
        }

        .network-card {
            background: var(--bg-white);
            padding: 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        /* 标准化流程与技术标准 */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px 0;
        }

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

        .timeline-item {
            padding: 20px 30px;
            position: relative;
            background: inherit;
            width: 50%;
        }

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

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

        .right {
            left: 50%;
        }

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

        .timeline-content {
            padding: 20px;
            background: var(--bg-white);
            position: relative;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        /* 案例中心 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .case-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            transition: transform var(--transition-speed);
        }

        .case-card:hover {
            transform: translateY(-5px);
        }

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

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

        .case-info {
            padding: 20px;
        }

        .case-tag {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary-color);
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .case-info h4 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

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

        /* 对比评测 - 明艳风格 */
        .evaluation-section {
            background: linear-gradient(180deg, var(--bg-white) 0%, var(--primary-light) 100%);
        }

        .rating-box {
            background: var(--bg-white);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 82, 217, 0.08);
            margin-bottom: 40px;
            text-align: center;
        }

        .stars {
            color: var(--accent-orange);
            font-size: 2rem;
            margin-bottom: 10px;
        }

        .score-display {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .table-responsive {
            overflow-x: auto;
            background: var(--bg-white);
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

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

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

        .comparison-table th {
            background-color: var(--primary-color);
            color: var(--bg-white);
        }

        .comparison-table tr:hover {
            background-color: var(--bg-light);
        }

        .highlight-cell {
            background-color: rgba(0, 82, 217, 0.05);
            font-weight: bold;
            color: var(--primary-color);
        }

        /* 职业与人工智能培训 */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .training-card {
            background: var(--bg-white);
            padding: 24px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all var(--transition-speed);
        }

        .training-card:hover {
            border-color: var(--primary-color);
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,82,217,0.1);
        }

        .training-icon {
            font-size: 2.2rem;
            margin-bottom: 15px;
            display: inline-block;
        }

        /* Token比价与加盟代理 */
        .token-agency-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .pricing-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .pricing-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: var(--bg-white);
            padding: 15px 20px;
            border-radius: 8px;
            border: 1px solid var(--border-color);
        }

        .pricing-model {
            font-weight: 600;
        }

        .pricing-price {
            color: #2e7d32;
            font-weight: 700;
        }

        /* 用户评论 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .review-card {
            background: var(--bg-white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
        }

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

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

        .author-avatar {
            width: 45px;
            height: 45px;
            background-color: var(--primary-light);
            color: var(--primary-color);
            font-weight: 700;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .author-info h5 {
            font-size: 0.95rem;
            margin-bottom: 2px;
        }

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

        /* FAQ折叠面板 & AI术语百科 */
        .faq-encyclopedia-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .faq-item {
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: var(--bg-white);
            overflow: hidden;
        }

        .faq-header {
            padding: 18px 24px;
            background: var(--bg-white);
            cursor: pointer;
            font-weight: 600;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background var(--transition-speed);
        }

        .faq-header:hover {
            background: var(--bg-light);
        }

        .faq-icon-arrow {
            transition: transform var(--transition-speed);
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-speed) ease-out;
            padding: 0 24px;
            color: var(--text-muted);
            font-size: 0.95rem;
            border-top: 1px solid transparent;
        }

        .faq-item.active .faq-content {
            max-height: 200px;
            padding: 18px 24px;
            border-top-color: var(--border-color);
        }

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

        .encyclopedia-box {
            background: var(--bg-white);
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--border-color);
            height: fit-content;
        }

        .term-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 20px;
        }

        .term-item h5 {
            font-size: 1rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }

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

        /* 行业资讯 / 知识库 */
        .articles-list {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-top: 30px;
        }

        .article-card {
            background: var(--bg-white);
            padding: 24px;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.02);
            transition: all var(--transition-speed);
        }

        .article-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.06);
        }

        .article-meta {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin-bottom: 10px;
        }

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

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

        /* 需求匹配与联系我们 */
        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
        }

        .form-box {
            background: var(--bg-white);
            padding: 40px;
            border-radius: 16px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 0.95rem;
        }

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

        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }

        .btn-submit {
            background-color: var(--primary-color);
            color: var(--bg-white);
            border: none;
            padding: 14px 28px;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            width: 100%;
            transition: background var(--transition-speed);
        }

        .btn-submit:hover {
            background-color: var(--primary-hover);
        }

        .info-box {
            background: var(--primary-color);
            color: var(--bg-white);
            padding: 40px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-item h4 {
            font-size: 1.15rem;
            margin-bottom: 8px;
        }

        .info-item p {
            opacity: 0.9;
        }

        .qr-codes {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .qr-card {
            background: var(--bg-white);
            padding: 10px;
            border-radius: 8px;
            text-align: center;
            width: 120px;
        }

        .qr-card img {
            width: 100%;
            margin-bottom: 5px;
        }

        .qr-card span {
            color: var(--text-dark);
            font-size: 0.75rem;
            font-weight: 600;
        }

        /* 友情链接 */
        .friendly-links {
            background-color: var(--bg-white);
            padding: 30px 0;
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
        }

        .links-title {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .links-container {
            display: flex;
            flex-wrap: wrap;
            gap: 15px 25px;
        }

        .links-container a {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

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

        /* 页脚 */
        footer {
            background-color: #0b1528;
            color: #a0aec0;
            padding: 60px 0 30px 0;
            font-size: 0.9rem;
        }

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

        .footer-logo-desc {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .footer-logo-desc p {
            line-height: 1.7;
        }

        .footer-col h4 {
            color: var(--bg-white);
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
        }

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

        .footer-links a {
            color: #a0aec0;
            transition: color var(--transition-speed);
        }

        .footer-links a:hover {
            color: var(--bg-white);
        }

        .footer-bottom {
            border-top: 1px solid #1a202c;
            padding-top: 20px;
            text-align: center;
            font-size: 0.85rem;
        }

        /* 浮动客服 */
        .float-contact {
            position: fixed;
            right: 20px;
            bottom: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .float-btn {
            background-color: var(--primary-color);
            color: var(--bg-white);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all var(--transition-speed);
            position: relative;
        }

        .float-btn:hover {
            background-color: var(--primary-hover);
            transform: scale(1.05);
        }

        .qr-popover {
            position: absolute;
            right: 60px;
            bottom: 0;
            background: var(--bg-white);
            padding: 15px;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
            display: none;
            width: 150px;
            text-align: center;
        }

        .qr-popover img {
            width: 100%;
            margin-bottom: 5px;
        }

        .qr-popover span {
            color: var(--text-dark);
            font-size: 0.75rem;
            font-weight: bold;
        }

        .float-btn:hover .qr-popover {
            display: block;
        }

        /* 响应式调整 */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .scene-grid, .case-grid, .reviews-grid, .articles-list {
                grid-template-columns: repeat(2, 1fr);
            }
            .training-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: var(--bg-white);
                padding: 20px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
                gap: 15px;
            }

            .nav-menu.active {
                display: flex;
            }

            .menu-toggle {
                display: flex;
            }

            .intro-grid, .tab-content.active, .token-agency-grid, .contact-grid, .faq-encyclopedia-grid {
                grid-template-columns: 1fr;
            }

            .timeline::before {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item::after {
                left: 21px;
            }

            .left {
                text-align: left;
            }

            .right::after {
                left: 21px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stats-grid, .scene-grid, .case-grid, .reviews-grid, .articles-list {
                grid-template-columns: 1fr;
            }

            .training-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }