/* 暗夜赛博高饱和粉紫风 核心样式 */
        :root {
            --bg-base: #07050f;
            --bg-card: #120b24;
            --bg-card-hover: #1c1136;
            --color-primary: #ff007a;
            --color-secondary: #9d00ff;
            --color-accent: #00f0ff;
            --text-main: #f3effa;
            --text-muted: #a39bb8;
            --border-neon: rgba(157, 0, 255, 0.3);
            --border-neon-hover: rgba(255, 0, 122, 0.6);
            --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            --max-w: 1200px;
        }

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

        html {
            scroll-behavior: smooth;
            background-color: var(--bg-base);
            font-family: var(--font-family);
            color: var(--text-main);
        }

        body {
            line-height: 1.6;
            overflow-x: hidden;
            background-image: radial-gradient(circle at 50% 0%, #1a0f30 0%, var(--bg-base) 70%);
        }

        /* 重用布局容器 */
        .container {
            width: 100%;
            max-width: var(--max-w);
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
            border-bottom: 1px solid rgba(157, 0, 255, 0.1);
            position: relative;
        }

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

        .section-header h2 {
            font-size: 2.2rem;
            color: #fff;
            text-shadow: 0 0 10px rgba(157, 0, 255, 0.5);
            margin-bottom: 15px;
            letter-spacing: 1px;
        }

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

        /* 霓虹按钮 */
        .btn-neon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            border: 2px solid var(--color-primary);
            color: #fff;
            background: transparent;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            box-shadow: 0 0 15px rgba(255, 0, 122, 0.3);
            text-transform: uppercase;
        }

        .btn-neon:hover {
            background: var(--color-primary);
            box-shadow: 0 0 25px rgba(255, 0, 122, 0.8);
            transform: translateY(-2px);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 30px;
            border: 2px solid var(--color-accent);
            color: #fff;
            background: transparent;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background: var(--color-accent);
            color: #07050f;
            box-shadow: 0 0 20px rgba(0, 240, 255, 0.6);
            transform: translateY(-2px);
        }

        /* 顶部导航 */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(7, 5, 15, 0.85);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(157, 0, 255, 0.2);
        }

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

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

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

        .brand-text {
            font-size: 1.4rem;
            font-weight: 800;
            background: linear-gradient(45deg, var(--color-primary), var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

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

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

        .nav-btn-wrap {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* 移动端菜单切换按钮 */
        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-toggle span {
            display: block;
            width: 25px;
            height: 2px;
            background: #fff;
            transition: 0.3s;
        }

        /* 首屏 Hero - 无图片 */
        .hero {
            padding: 150px 0 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(157,0,255,0.15) 0%, transparent 60%);
            transform: translate(-50%, -50%);
            z-index: 1;
        }

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

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.25;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #fff 30%, var(--color-primary) 70%, var(--color-accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-shadow: 0 0 30px rgba(157, 0, 255, 0.2);
        }

        .hero p.tagline {
            font-size: 1.25rem;
            color: var(--text-muted);
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .hero-btn-group {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 60px;
        }

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

        .stat-card {
            background: var(--bg-card);
            border: 1px solid var(--border-neon);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s;
        }

        .stat-card:hover {
            border-color: var(--color-primary);
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(255, 0, 122, 0.15);
        }

        .stat-num {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--color-accent);
            margin-bottom: 5px;
            font-family: monospace;
        }

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

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

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

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

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

        .intro-feat-item {
            background: rgba(157, 0, 255, 0.05);
            border: 1px dashed var(--border-neon);
            border-radius: 8px;
            padding: 20px;
        }

        .intro-feat-item h4 {
            color: var(--color-accent);
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .intro-feat-item p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }

        /* 全平台AIGC服务 + 模型聚合标签 */
        .service-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
            margin-bottom: 50px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border-neon);
            border-radius: 16px;
            padding: 35px;
            transition: all 0.3s;
        }

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

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

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

        .model-tags-wrap {
            background: rgba(157, 0, 255, 0.03);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(157, 0, 255, 0.1);
        }

        .model-tags-title {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--text-muted);
        }

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

        .tag-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--text-main);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            transition: all 0.2s;
        }

        .tag-item:hover {
            background: var(--color-primary);
            border-color: var(--color-primary);
            box-shadow: 0 0 10px rgba(255, 0, 122, 0.5);
            transform: scale(1.05);
        }

        /* 一站式AIGC制作 & 典型场景 */
        .scene-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .scene-card {
            background: linear-gradient(135deg, rgba(28, 17, 54, 0.8), rgba(7, 5, 15, 0.9));
            border: 1px solid var(--border-neon);
            border-radius: 12px;
            padding: 25px;
            transition: all 0.3s;
        }

        .scene-card:hover {
            border-color: var(--color-primary);
            box-shadow: 0 5px 20px rgba(255, 0, 122, 0.2);
            transform: scale(1.02);
        }

        .scene-card h4 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .scene-card p {
            color: var(--text-muted);
            font-size: 0.9rem;
            margin: 0;
        }

        /* 解决方案 & 案例展示 */
        .showcase-layout {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }

        .showcase-item {
            background: var(--bg-card);
            border: 1px solid var(--border-neon);
            border-radius: 16px;
            overflow: hidden;
            transition: all 0.3s;
        }

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

        .showcase-media {
            width: 100%;
            height: 240px;
            background: #201736;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .showcase-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .showcase-info {
            padding: 25px;
        }

        .showcase-info h4 {
            font-size: 1.3rem;
            margin-bottom: 10px;
            color: #fff;
        }

        .showcase-info p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 0;
        }

        /* 流程步骤与时间线 */
        .timeline {
            display: flex;
            flex-direction: column;
            gap: 30px;
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 31px;
            top: 10px;
            bottom: 10px;
            width: 2px;
            background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), var(--color-accent));
        }

        .timeline-step {
            display: flex;
            gap: 25px;
            position: relative;
        }

        .step-num {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: var(--bg-card);
            border: 2px solid var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            color: #fff;
            font-size: 1.3rem;
            box-shadow: 0 0 15px rgba(255, 0, 122, 0.4);
            z-index: 2;
            flex-shrink: 0;
        }

        .step-content {
            background: var(--bg-card);
            border: 1px solid var(--border-neon);
            border-radius: 12px;
            padding: 20px;
            flex-grow: 1;
        }

        .step-content h4 {
            color: var(--color-accent);
            margin-bottom: 5px;
            font-size: 1.15rem;
        }

        .step-content p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 0;
        }

        /* 对比评测 */
        .evaluation-box {
            background: linear-gradient(135deg, rgba(157, 0, 255, 0.1) 0%, rgba(255, 0, 122, 0.05) 100%);
            border: 1px solid var(--color-primary);
            border-radius: 16px;
            padding: 40px;
            margin-bottom: 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }

        .score-display {
            text-align: center;
            flex-shrink: 0;
        }

        .score-num {
            font-size: 5rem;
            font-weight: 900;
            color: var(--color-primary);
            line-height: 1;
            text-shadow: 0 0 20px rgba(255,0,122,0.6);
        }

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

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

        table.compare-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 600px;
        }

        table.compare-table th, table.compare-table td {
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid rgba(157, 0, 255, 0.15);
        }

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

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

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

        .price-card {
            background: var(--bg-card);
            border: 1px solid var(--border-neon);
            border-radius: 12px;
            padding: 25px;
            text-align: center;
        }

        .price-card.featured {
            border-color: var(--color-primary);
            box-shadow: 0 0 15px rgba(255, 0, 122, 0.2);
        }

        .price-card h4 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 1.25rem;
        }

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

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

        /* 培训中心 */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 15px;
        }

        .train-card {
            background: rgba(157, 0, 255, 0.03);
            border: 1px solid var(--border-neon);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
        }

        .train-card:hover {
            background: var(--bg-card-hover);
            border-color: var(--color-primary);
            transform: translateY(-3px);
        }

        .train-card h4 {
            font-size: 1.05rem;
            color: #fff;
            margin-bottom: 10px;
        }

        .train-card span {
            font-size: 0.8rem;
            background: rgba(0, 240, 255, 0.1);
            color: var(--color-accent);
            padding: 3px 8px;
            border-radius: 4px;
        }

        /* 帮助中心 & FAQ折叠面板 */
        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

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

        .faq-question {
            width: 100%;
            background: none;
            border: none;
            padding: 20px;
            text-align: left;
            color: #fff;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .faq-question::after {
            content: '+';
            font-size: 1.4rem;
            color: var(--color-accent);
            transition: transform 0.3s;
        }

        .faq-item.active .faq-question::after {
            content: '-';
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background: rgba(0,0,0,0.2);
        }

        .faq-answer-inner {
            padding: 20px;
            color: var(--text-muted);
            font-size: 0.95rem;
            border-top: 1px solid rgba(157,0,255,0.1);
        }

        /* 术语与自助排查 */
        .trouble-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .trouble-box, .wiki-box {
            background: var(--bg-card);
            border: 1px solid var(--border-neon);
            border-radius: 12px;
            padding: 30px;
        }

        .trouble-box h3, .wiki-box h3 {
            font-size: 1.4rem;
            margin-bottom: 20px;
            color: var(--color-accent);
        }

        .trouble-list, .wiki-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .trouble-list li strong, .wiki-list li strong {
            color: #fff;
            display: block;
            margin-bottom: 3px;
        }

        .trouble-list li p, .wiki-list li p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
        }

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

        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--border-neon);
            border-radius: 12px;
            padding: 25px;
        }

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

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

        .user-avatar {
            width: 44px;
            height: 44px;
            background: var(--color-secondary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
        }

        .user-info h5 {
            color: #fff;
            margin: 0;
        }

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

        /* 知识库/资讯 */
        .news-layout {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .news-item {
            background: var(--bg-card);
            border: 1px solid var(--border-neon);
            border-radius: 10px;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s;
        }

        .news-item:hover {
            border-color: var(--color-accent);
            transform: translateX(5px);
        }

        .news-title {
            color: #fff;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
        }

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

        .news-date {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        /* 联系与表单 */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 50px;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .contact-icon {
            width: 44px;
            height: 44px;
            background: rgba(157,0,255,0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-accent);
            font-size: 1.2rem;
            flex-shrink: 0;
            border: 1px solid var(--border-neon);
        }

        .contact-detail h5 {
            color: #fff;
            font-size: 1.05rem;
            margin-bottom: 5px;
        }

        .contact-detail p {
            color: var(--text-muted);
            font-size: 0.95rem;
            margin: 0;
        }

        .qr-codes {
            display: flex;
            gap: 20px;
            margin-top: 15px;
        }

        .qr-item {
            text-align: center;
        }

        .qr-item img {
            width: 110px;
            height: 110px;
            border-radius: 6px;
            border: 2px solid var(--color-primary);
            background: #fff;
            padding: 4px;
            margin-bottom: 8px;
        }

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

        .form-box {
            background: var(--bg-card);
            border: 1px solid var(--border-neon);
            border-radius: 16px;
            padding: 40px;
        }

        .form-box h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: #fff;
        }

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

        .form-label {
            display: block;
            color: var(--text-muted);
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .form-control {
            width: 100%;
            background: rgba(0,0,0,0.3);
            border: 1px solid var(--border-neon);
            border-radius: 6px;
            padding: 12px;
            color: #fff;
            font-family: inherit;
            transition: all 0.3s;
        }

        .form-control:focus {
            outline: none;
            border-color: var(--color-accent);
            box-shadow: 0 0 10px rgba(0,240,255,0.2);
        }

        select.form-control {
            color: var(--text-muted);
        }

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

        /* 友情链接与底部 */
        .footer-links {
            padding: 30px 0;
            border-bottom: 1px solid rgba(157, 0, 255, 0.1);
        }

        .links-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            align-items: center;
        }

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

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

        .links-inner a:hover {
            color: var(--color-accent);
        }

        footer {
            background: #04020a;
            padding: 40px 0;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .footer-logo {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 8px;
            margin-bottom: 20px;
        }

        .footer-logo img {
            height: 35px;
        }

        .footer-logo span {
            font-size: 1.2rem;
            font-weight: 700;
            color: #fff;
        }

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

        .float-trigger {
            width: 56px;
            height: 56px;
            background: var(--color-primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 0 20px rgba(255,0,122,0.5);
            transition: all 0.3s;
        }

        .float-trigger:hover {
            transform: scale(1.1);
        }

        .float-panel {
            position: absolute;
            bottom: 70px;
            right: 0;
            background: var(--bg-card);
            border: 1px solid var(--color-primary);
            border-radius: 12px;
            padding: 20px;
            width: 260px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            display: none;
            opacity: 0;
            transform: translateY(10px);
            transition: all 0.3s ease;
        }

        .float-panel.show {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .float-panel h4 {
            color: #fff;
            margin-bottom: 12px;
            font-size: 1rem;
            text-align: center;
        }

        .float-panel img {
            width: 100%;
            border-radius: 6px;
            margin-bottom: 10px;
        }

        .float-panel p {
            font-size: 0.8rem;
            color: var(--text-muted);
            margin: 5px 0;
            text-align: center;
        }

        /* 响应式媒体查询 */
        @media (max-width: 1024px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .service-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .scene-grid {
                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-base);
                padding: 20px;
                border-bottom: 1px solid var(--border-neon);
                text-align: center;
            }
            .nav-menu.active {
                display: flex;
            }
            .mobile-toggle {
                display: flex;
            }
            .hero h1 {
                font-size: 2.2rem;
            }
            .intro-layout, .showcase-layout, .contact-layout, .trouble-grid {
                grid-template-columns: 1fr;
            }
            .evaluation-box {
                flex-direction: column;
            }
            .token-price-list, .reviews-grid {
                grid-template-columns: 1fr;
            }
            .training-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }