/* 极致鲜亮风全局变量 */
        :root {
            --bg-color: #f8fafc;
            --container-bg: #ffffff;
            --primary: #0052ff;
            --primary-gradient: linear-gradient(135deg, #0052ff 0%, #7000ff 100%);
            --accent: #00f2fe;
            --text-main: #0f172a;
            --text-muted: #475569;
            --border-color: #e2e8f0;
            --shadow-sm: 0 4px 6px -1px rgba(0, 82, 255, 0.05), 0 2px 4px -1px rgba(0, 82, 255, 0.03);
            --shadow-md: 0 10px 15px -3px rgba(0, 82, 255, 0.08), 0 4px 6px -2px rgba(0, 82, 255, 0.04);
            --shadow-lg: 0 20px 25px -5px rgba(0, 82, 255, 0.12), 0 10px 10px -5px rgba(0, 82, 255, 0.06);
            --radius: 12px;
            --max-width: 1200px;
        }

        /* 基础样式重置 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-color);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #7000ff;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        ul {
            list-style: none;
        }

        /* 全局公用容器 */
        .container {
            width: 100%;
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 通用标题 */
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header h2 {
            font-size: 2.2rem;
            color: var(--text-main);
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
        }
        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -6px;
            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: 1.1rem;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 导航栏 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 82, 255, 0.05);
            z-index: 1000;
            border-bottom: 1px solid var(--border-color);
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
        }
        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-wrap img {
            max-height: 45px;
            width: auto;
        }
        .nav-menu {
            display: flex;
            gap: 24px;
        }
        .nav-menu a {
            color: var(--text-muted);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
        }
        .nav-menu a:hover, .nav-menu a.active {
            color: var(--primary);
            border-bottom-color: var(--primary);
        }
        .nav-btn {
            background: var(--primary-gradient);
            color: #fff !important;
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }
        .nav-btn:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }
        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: var(--text-main);
            border-radius: 3px;
            transition: all 0.3s;
        }

        /* 极致鲜亮首屏 - 无图 Hero */
        .hero {
            padding-top: 150px;
            padding-bottom: 100px;
            background: radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.15) 0%, transparent 50%),
                        radial-gradient(circle at 10% 80%, rgba(112, 0, 255, 0.1) 0%, transparent 50%),
                        #ffffff;
            text-align: center;
            position: relative;
        }
        .hero-badge {
            background: rgba(0, 82, 255, 0.08);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 24px;
            border: 1px solid rgba(0, 82, 255, 0.15);
        }
        .hero h1 {
            font-size: 2.8rem;
            line-height: 1.3;
            color: var(--text-main);
            margin-bottom: 24px;
            font-weight: 800;
        }
        .hero h1 span {
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.25rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto 40px;
        }
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn-main {
            background: var(--primary-gradient);
            color: #ffffff;
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            box-shadow: 0 10px 25px rgba(0, 82, 255, 0.3);
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        .btn-main:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 30px rgba(0, 82, 255, 0.4);
            color: #ffffff;
        }
        .btn-secondary {
            background: #ffffff;
            color: var(--text-main);
            font-weight: 600;
            padding: 15px 40px;
            border-radius: 30px;
            font-size: 1.1rem;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .btn-secondary:hover {
            background: #f8fafc;
            border-color: var(--primary);
            transform: translateY(-3px);
        }

        /* 核心指标卡片 */
        .stats-section {
            margin-top: -50px;
            position: relative;
            z-index: 10;
            margin-bottom: 80px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .stat-card {
            background: #ffffff;
            padding: 30px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            text-align: center;
            border: 1px solid rgba(0, 82, 255, 0.05);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-5px);
        }
        .stat-num {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 0.95rem;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* 关于我们与平台介绍 */
        .section-padding {
            padding: 80px 0;
        }
        .about-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .about-text h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--text-main);
        }
        .about-text p {
            color: var(--text-muted);
            margin-bottom: 20px;
            font-size: 1.05rem;
        }
        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 30px;
        }
        .about-feature-item {
            background: #fff;
            padding: 20px;
            border-radius: var(--radius);
            border-left: 4px solid var(--primary);
            box-shadow: var(--shadow-sm);
        }
        .about-feature-item h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .about-feature-item p {
            font-size: 0.9rem;
            margin-bottom: 0;
            color: var(--text-muted);
        }

        /* AIGC 服务 - 模型聚合展示 */
        .services-section {
            background: #f1f5f9;
        }
        .model-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-top: 40px;
        }
        .model-tag {
            background: #ffffff;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-muted);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: all 0.2s;
        }
        .model-tag:hover {
            color: #ffffff;
            background: var(--primary-gradient);
            border-color: transparent;
            transform: scale(1.05);
        }

        /* 一站式制作 & 场景 */
        .creation-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .creation-card {
            background: #ffffff;
            padding: 40px 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }
        .creation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--primary-gradient);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .creation-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }
        .creation-card:hover::before {
            opacity: 1;
        }
        .creation-icon {
            width: 60px;
            height: 60px;
            background: rgba(0, 82, 255, 0.08);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-bottom: 24px;
        }
        .creation-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: var(--text-main);
        }
        .creation-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
        }

        /* 全行业解决方案 & 场景 */
        .solution-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        .solution-card {
            background: #ffffff;
            padding: 30px 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            text-align: center;
        }
        .solution-card h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--primary);
        }
        .solution-card p {
            font-size: 0.9rem;
            color: var(--text-muted);
        }

        /* 人工智能培训 */
        .training-section {
            background: linear-gradient(135deg, rgba(0, 82, 255, 0.02) 0%, rgba(112, 0, 255, 0.02) 100%);
        }
        .training-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }
        .training-card {
            background: #ffffff;
            padding: 30px 20px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            text-align: center;
            transition: all 0.3s;
        }
        .training-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-5px);
        }
        .training-badge {
            background: rgba(112, 0, 255, 0.08);
            color: #7000ff;
            font-size: 0.8rem;
            padding: 4px 10px;
            border-radius: 12px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }
        .training-card h3 {
            font-size: 1.05rem;
            margin-bottom: 12px;
            color: var(--text-main);
        }
        .training-card p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* 步骤流程与时间线 */
        .process-flow {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            margin-top: 50px;
            gap: 20px;
        }
        .process-flow::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 5%;
            right: 5%;
            height: 2px;
            background: var(--border-color);
            z-index: 1;
        }
        .process-step {
            width: 20%;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .step-num {
            width: 50px;
            height: 50px;
            background: #ffffff;
            border: 3px solid var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--primary);
            margin: 0 auto 20px;
            transition: all 0.3s;
        }
        .process-step:hover .step-num {
            background: var(--primary);
            color: #ffffff;
            transform: scale(1.1);
        }
        .process-step h4 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        .process-step p {
            font-size: 0.85rem;
            color: var(--text-muted);
        }

        /* 对比评测表格 */
        .comparison-table-wrap {
            overflow-x: auto;
            background: #ffffff;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
            min-width: 800px;
        }
        .comparison-table th, .comparison-table td {
            padding: 18px 24px;
            border-bottom: 1px solid var(--border-color);
        }
        .comparison-table th {
            background: #f8fafc;
            font-weight: 700;
            color: var(--text-main);
        }
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        .comparison-table td.highlight {
            background: rgba(0, 82, 255, 0.02);
            font-weight: 600;
            color: var(--primary);
        }
        .badge-star {
            background: #fff3e0;
            color: #ff9800;
            padding: 2px 8px;
            border-radius: 4px;
            font-size: 0.85rem;
            font-weight: 700;
        }

        /* 案例中心 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .case-card {
            background: #ffffff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: all 0.3s;
        }
        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .case-img-container {
            position: relative;
            background: #000;
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }
        .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.05);
        }
        .case-content {
            padding: 24px;
        }
        .case-tag {
            background: rgba(0, 82, 255, 0.08);
            color: var(--primary);
            font-size: 0.8rem;
            padding: 3px 8px;
            border-radius: 4px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 12px;
        }
        .case-content h3 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--text-main);
        }
        .case-content p {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* Token 比价 */
        .token-section {
            background: #ffffff;
        }
        .price-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .price-card {
            background: #ffffff;
            border-radius: var(--radius);
            border: 2px solid var(--border-color);
            padding: 40px 30px;
            text-align: center;
            position: relative;
            transition: all 0.3s;
        }
        .price-card.popular {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: scale(1.05);
        }
        .price-card.popular::after {
            content: '推荐';
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary);
            color: #ffffff;
            padding: 3px 10px;
            border-radius: 12px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        .price-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        .price-val {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .price-val span {
            font-size: 0.9rem;
            color: var(--text-muted);
            font-weight: 400;
        }
        .price-features {
            margin-bottom: 30px;
            text-align: left;
        }
        .price-features li {
            padding: 8px 0;
            font-size: 0.95rem;
            color: var(--text-muted);
            border-bottom: 1px dashed var(--border-color);
        }

        /* 需求匹配表单 */
        .form-section {
            background: linear-gradient(135deg, rgba(0, 82, 255, 0.05) 0%, rgba(112, 0, 255, 0.05) 100%);
        }
        .form-wrap {
            max-width: 600px;
            margin: 0 auto;
            background: #ffffff;
            padding: 40px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border-color);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--text-main);
        }
        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s;
        }
        .form-control:focus {
            border-color: var(--primary);
        }
        textarea.form-control {
            height: 120px;
            resize: vertical;
        }
        .form-btn {
            width: 100%;
            background: var(--primary-gradient);
            color: #ffffff;
            font-weight: 600;
            padding: 14px;
            border-radius: var(--radius);
            border: none;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }
        .form-btn:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }

        /* FAQ 折叠面板 */
        .faq-grid {
            max-width: 800px;
            margin: 0 auto;
        }
        .faq-item {
            background: #ffffff;
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .faq-header {
            padding: 20px 24px;
            background: #ffffff;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            transition: background 0.3s;
        }
        .faq-header:hover {
            background: #f8fafc;
        }
        .faq-header::after {
            content: '+';
            font-size: 1.5rem;
            color: var(--primary);
            transition: transform 0.3s;
        }
        .faq-item.active .faq-header::after {
            content: '−';
            transform: rotate(180deg);
        }
        .faq-content {
            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.95rem;
            border-top: 0 solid var(--border-color);
        }
        .faq-item.active .faq-content {
            padding: 20px 24px;
            max-height: 500px;
            border-top-width: 1px;
        }

        /* 用户评论 */
        .comments-section {
            background: #f8fafc;
        }
        .comments-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .comment-card {
            background: #ffffff;
            padding: 30px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }
        .comment-meta {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }
        .avatar-placeholder {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary-gradient);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
        }
        .user-info h4 {
            font-size: 1rem;
            margin-bottom: 2px;
        }
        .user-info p {
            font-size: 0.8rem;
            color: var(--text-muted);
        }
        .comment-text {
            color: var(--text-muted);
            font-size: 0.9rem;
            line-height: 1.6;
        }

        /* 术语百科与资讯 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .news-card {
            background: #ffffff;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
        }
        .news-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }
        .news-content {
            padding: 24px;
        }
        .news-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .news-desc {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 15px;
        }

        /* 底部与联系信息 */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 80px 0 40px;
            border-top: 1px solid #1e293b;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }
        .footer-logo {
            margin-bottom: 20px;
        }
        .footer-logo img {
            max-height: 45px;
            
        }
        .footer-col h4 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            color: #94a3b8;
        }
        .footer-col ul li a:hover {
            color: #ffffff;
        }
        .qr-card {
            text-align: center;
        }
        .qr-card img {
            max-width: 120px;
            margin: 10px auto;
            border-radius: 8px;
            background: #ffffff;
            padding: 5px;
        }
        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 0.85rem;
        }
        .footer-links {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #94a3b8;
        }
        .footer-links a:hover {
            color: #ffffff;
        }

        /* 浮动客服 */
        .floating-widget {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .float-btn {
            width: 50px;
            height: 50px;
            background: #ffffff;
            border-radius: 50%;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid var(--border-color);
            font-size: 1.2rem;
            transition: all 0.3s;
            position: relative;
        }
        .float-btn:hover {
            transform: translateY(-3px);
            background: var(--primary);
            color: #ffffff;
        }
        .float-btn .tooltip {
            position: absolute;
            right: 60px;
            background: #ffffff;
            color: var(--text-main);
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 0.85rem;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            box-shadow: var(--shadow-md);
            transition: opacity 0.3s;
        }
        .float-btn:hover .tooltip {
            opacity: 1;
        }

        /* 响应式媒体查询 */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .creation-grid, .case-grid, .news-grid, .comments-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .training-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .solution-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #ffffff;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
                border-top: 1px solid var(--border-color);
            }
            .nav-menu.active {
                display: flex;
            }
            .menu-toggle {
                display: flex;
            }
            .about-wrap {
                grid-template-columns: 1fr;
            }
            .creation-grid, .case-grid, .news-grid, .comments-grid {
                grid-template-columns: 1fr;
            }
            .training-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .solution-grid {
                grid-template-columns: 1fr;
            }
            .process-flow {
                flex-direction: column;
                align-items: center;
            }
            .process-flow::before {
                display: none;
            }
            .process-step {
                width: 100%;
                margin-bottom: 30px;
            }
            .price-grid {
                grid-template-columns: 1fr;
            }
            .price-card.popular {
                transform: scale(1);
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 2rem;
            }
        }