:root {
            --primary: #00f2fe;
            --primary-hover: #05d0e0;
            --secondary: #4facfe;
            --dark: #0f172a;
            --slate-800: #1e293b;
            --slate-700: #334155;
            --slate-600: #475569;
            --light: #f8fafc;
            --border: #e2e8f0;
            --success: #10b981;
            --warning: #f59e0b;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--light);
            color: var(--slate-800);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        /* 顶部导航 */
        header {
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

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

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

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

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

        .nav-menu a {
            color: var(--slate-700);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.2s;
        }

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

        .nav-btn {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff !important;
            padding: 10px 20px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(79, 172, 254, 0.4);
        }

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

        .menu-toggle span {
            display: block;
            width: 25px;
            height: 3px;
            background-color: var(--slate-800);
            border-radius: 3px;
            transition: 0.3s;
        }

        /* Hero 首屏（无图片设计） */
        .hero {
            padding: 180px 0 100px;
            background: radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.1) 0%, rgba(79, 172, 254, 0.05) 50%, rgba(255, 255, 255, 0) 100%), var(--light);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -10%;
            left: -10%;
            width: 40%;
            height: 40%;
            background: radial-gradient(circle, rgba(0, 242, 254, 0.15) 0%, transparent 70%);
            z-index: 1;
        }

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

        .badge {
            display: inline-block;
            background: rgba(79, 172, 254, 0.1);
            color: var(--secondary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
            border: 1px solid rgba(79, 172, 254, 0.2);
        }

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

        .hero-desc {
            font-size: 1.2rem;
            color: var(--slate-600);
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff;
            padding: 16px 36px;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            box-shadow: 0 4px 20px rgba(0, 242, 254, 0.4);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(0, 242, 254, 0.5);
        }

        .btn-secondary {
            background: #fff;
            color: var(--slate-800);
            padding: 16px 36px;
            border-radius: 8px;
            font-size: 1.05rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s;
            border: 1px solid var(--border);
        }

        .btn-secondary:hover {
            background-color: var(--light);
            border-color: var(--slate-600);
        }

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

        .stat-card {
            background: #fff;
            padding: 24px;
            border-radius: 12px;
            border: 1px solid var(--border);
            text-align: left;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        .stat-num {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 5px;
            display: flex;
            align-items: baseline;
        }

        .stat-num span {
            font-size: 1.2rem;
            font-weight: 600;
            margin-left: 4px;
        }

        .stat-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--slate-800);
            margin-bottom: 5px;
        }

        .stat-info {
            font-size: 0.8rem;
            color: var(--slate-600);
        }

        /* 通用 Section 结构 */
        section {
            padding: 100px 0;
            border-bottom: 1px solid var(--border);
        }

        .section-light {
            background-color: #fff;
        }

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

        .section-header h2 {
            font-size: 2.2rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 16px;
        }

        .section-header p {
            font-size: 1.05rem;
            color: var(--slate-600);
        }

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

        .about-text h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--dark);
        }

        .about-text p {
            color: var(--slate-600);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

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

        .feat-icon {
            color: var(--secondary);
            font-size: 1.25rem;
            font-weight: bold;
        }

        .feat-content h4 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .feat-content p {
            font-size: 0.85rem;
            color: var(--slate-600);
            margin: 0;
        }

        .about-visual {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
            border-radius: 16px;
            padding: 40px;
            border: 1px dashed var(--secondary);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tag-cloud span {
            background: #fff;
            padding: 8px 16px;
            border-radius: 50px;
            font-size: 0.9rem;
            border: 1px solid var(--border);
            color: var(--slate-800);
            box-shadow: 0 2px 5px rgba(0,0,0,0.02);
            transition: all 0.2s;
        }

        .tag-cloud span:hover {
            border-color: var(--secondary);
            color: var(--secondary);
            transform: scale(1.05);
        }

        /* AIGC 服务能力卡片 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .service-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(0, 242, 254, 0.1);
            border-color: var(--primary);
        }

        .srv-icon {
            width: 60px;
            height: 60px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.1) 0%, rgba(79, 172, 254, 0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 1.3rem;
            margin-bottom: 16px;
            color: var(--dark);
        }

        .service-card p {
            color: var(--slate-600);
            font-size: 0.95rem;
            line-height: 1.6;
        }

        /* 标准化流程步骤 */
        .steps-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
        }

        .step-item {
            text-align: center;
            position: relative;
        }

        .step-num {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            margin: 0 auto 20px;
            box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
        }

        .step-item h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .step-item p {
            font-size: 0.9rem;
            color: var(--slate-600);
        }

        /* 对比评测 */
        .table-responsive {
            width: 100%;
            overflow-x: auto;
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            background: #fff;
        }

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

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

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

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

        .compare-table td strong {
            color: var(--secondary);
        }

        .score-box {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff;
            padding: 30px;
            border-radius: 16px;
            text-align: center;
            margin-bottom: 40px;
            box-shadow: 0 10px 30px rgba(79, 172, 254, 0.2);
        }

        .score-value {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 10px;
        }

        .score-stars {
            font-size: 1.5rem;
            color: #ffd700;
            margin-bottom: 10px;
        }

        /* 职业技术培训 */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .train-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.3s;
        }

        .train-card:hover {
            border-color: var(--secondary);
            box-shadow: 0 10px 25px rgba(79, 172, 254, 0.08);
        }

        .train-badge {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success);
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 50px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 15px;
        }

        .train-card h3 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .train-card p {
            font-size: 0.9rem;
            color: var(--slate-600);
            margin-bottom: 20px;
        }

        /* Token 比价 */
        .token-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .token-list {
            list-style: none;
        }

        .token-item {
            display: flex;
            justify-content: space-between;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .token-name {
            font-weight: 600;
        }

        .token-price {
            color: var(--success);
            font-weight: 700;
        }

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

        .case-card {
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border);
            transition: all 0.3s;
        }

        .case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.06);
        }

        .case-img-container {
            width: 100%;
            height: 200px;
            overflow: hidden;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

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

        .case-body {
            padding: 24px;
        }

        .case-tag {
            font-size: 0.8rem;
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 8px;
        }

        .case-body h3 {
            font-size: 1.15rem;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .case-body p {
            font-size: 0.9rem;
            color: var(--slate-600);
        }

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

        .review-card {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            border: 1px solid var(--border);
            position: relative;
        }

        .review-stars {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 0.9rem;
        }

        .review-content {
            font-size: 0.95rem;
            color: var(--slate-600);
            margin-bottom: 20px;
            line-height: 1.7;
        }

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

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            color: var(--secondary);
            border: 1px solid var(--border);
        }

        .user-info h4 {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--dark);
        }

        .user-info p {
            font-size: 0.8rem;
            color: var(--slate-600);
        }

        /* 需求匹配表单 & 联系我们 */
        .contact-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 50px;
        }

        .form-card {
            background: #fff;
            padding: 40px;
            border-radius: 16px;
            border: 1px solid var(--border);
            box-shadow: 0 10px 30px rgba(0,0,0,0.02);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--slate-800);
        }

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

        .form-control:focus {
            border-color: var(--secondary);
        }

        .contact-info-card {
            background: linear-gradient(135deg, var(--dark) 0%, var(--slate-800) 100%);
            color: #fff;
            padding: 40px;
            border-radius: 16px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .info-item {
            margin-bottom: 30px;
        }

        .info-item h4 {
            font-size: 1rem;
            margin-bottom: 8px;
            color: var(--primary);
        }

        .info-item p {
            color: var(--border);
            font-size: 0.95rem;
        }

        .qr-codes {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-top: 20px;
        }

        .qr-item {
            text-align: center;
            background: rgba(255, 255, 255, 0.05);
            padding: 15px;
            border-radius: 8px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .qr-item img {
            width: 120px;
            height: 120px;
            object-fit: cover;
            margin-bottom: 10px;
            border-radius: 4px;
        }

        .qr-item p {
            font-size: 0.8rem;
            color: var(--border);
        }

        /* 常见用户问题 FAQ */
        .faq-list {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s;
        }

        .faq-header {
            padding: 20px 24px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            user-select: none;
            background-color: #fff;
            transition: background-color 0.2s;
        }

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

        .faq-icon {
            font-size: 1.2rem;
            transition: transform 0.2s;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding: 0 24px;
            background-color: #fff;
            color: var(--slate-600);
            font-size: 0.95rem;
        }

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

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

        /* 行业资讯 / 知识库 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .news-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s;
        }

        .news-card:hover {
            border-color: var(--secondary);
            transform: translateY(-3px);
        }

        .news-meta {
            font-size: 0.8rem;
            color: var(--slate-600);
            margin-bottom: 10px;
        }

        .news-title {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
            text-decoration: none;
            line-height: 1.4;
            display: block;
        }

        .news-title:hover {
            color: var(--secondary);
        }

        .news-link {
            font-size: 0.9rem;
            color: var(--secondary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 5px;
        }

        /* 加盟代理 */
        .agent-banner {
            background: linear-gradient(135deg, rgba(0, 242, 254, 0.05) 0%, rgba(79, 172, 254, 0.05) 100%);
            border: 1px solid var(--secondary);
            border-radius: 16px;
            padding: 50px;
            text-align: center;
        }

        .agent-banner h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .agent-banner p {
            color: var(--slate-600);
            max-width: 700px;
            margin: 0 auto 30px;
        }

        /* AI 术语百科 */
        .wiki-section {
            background-color: var(--light);
        }

        .wiki-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .wiki-card {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid var(--border);
        }

        .wiki-card h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 8px;
        }

        .wiki-card p {
            font-size: 0.85rem;
            color: var(--slate-600);
            margin: 0;
        }

        /* 页脚 */
        footer {
            background-color: var(--dark);
            color: #fff;
            padding: 80px 0 30px;
        }

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

        .footer-logo img {
            max-height: 40px;
            margin-bottom: 20px;
        }

        .footer-desc {
            color: var(--border);
            font-size: 0.9rem;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .footer-title {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

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

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

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

        .footer-links a {
            color: var(--border);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s;
        }

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

        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }

        .friend-links a {
            color: var(--border);
            text-decoration: none;
            font-size: 0.85rem;
            background: rgba(255,255,255,0.05);
            padding: 4px 10px;
            border-radius: 4px;
            transition: all 0.2s;
        }

        .friend-links a:hover {
            background: var(--primary);
            color: var(--dark);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            color: var(--border);
        }

        .ai-page-home-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: bold;
        }

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

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

        .float-item:hover {
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #fff;
            transform: translateY(-3px);
        }

        .float-item .popover {
            position: absolute;
            right: 60px;
            background: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            width: 150px;
            text-align: center;
            border: 1px solid var(--border);
        }

        .float-item .popover img {
            width: 120px;
            height: 120px;
            margin-bottom: 8px;
        }

        .float-item .popover p {
            font-size: 0.8rem;
            color: var(--slate-800);
            margin: 0;
        }

        .float-item:hover .popover {
            opacity: 1;
            visibility: visible;
        }

        /* 响应式媒体查询 */
        @media (max-width: 1024px) {
            .stats-grid, .services-grid, .training-grid, .case-grid, .reviews-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .steps-container {
                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: 80px;
                left: 0;
                right: 0;
                background-color: #fff;
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid var(--border);
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            }

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

            .menu-toggle {
                display: flex;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .about-grid, .contact-layout, .token-grid, .news-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid, .services-grid, .training-grid, .case-grid, .reviews-grid, .wiki-grid {
                grid-template-columns: 1fr;
            }

            .steps-container {
                grid-template-columns: 1fr;
            }

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

            .footer-bottom {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
        }