/* 基础样式与高饱和艳彩风配色方案 */
        :root {
            --primary: #2563eb;       /* 高饱和科技蓝 */
            --secondary: #d946ef;     /* 艳丽极光紫 */
            --accent: #f59e0b;        /* 活力金橙 */
            --danger: #ef4444;        /* 警示亮红 */
            --dark: #0f172a;          /* 深蓝黑 */
            --text: #334155;          /* 灰黑 */
            --bg-light: #f8fafc;      /* 极浅灰 */
            --bg-white: #ffffff;      /* 纯白 */
            --border: #e2e8f0;        /* 边界线 */
            --neon-gradient: linear-gradient(135deg, #2563eb 0%, #d946ef 50%, #f59e0b 100%);
            --neon-shadow: 0 8px 30px rgba(217, 70, 239, 0.15);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-light);
            color: var(--text);
            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: sticky;
            top: 0;
            z-index: 1000;
        }

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

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

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

        .logo-box span {
            font-size: 1.25rem;
            font-weight: 800;
            background: var(--neon-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

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

        .nav-menu a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s;
            padding: 5px 10px;
            border-radius: 4px;
        }

        .nav-menu a:hover {
            color: var(--secondary);
            background-color: rgba(217, 70, 239, 0.05);
        }

        .nav-btn {
            background: var(--neon-gradient);
            color: var(--bg-white) !important;
            padding: 8px 18px !important;
            border-radius: 50px;
            font-weight: bold !important;
            box-shadow: var(--neon-shadow);
            transition: transform 0.3s, box-shadow 0.3s !important;
        }

        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(217, 70, 239, 0.3);
        }

        /* 移动端菜单控制 */
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            border: none;
            background: none;
        }

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

        /* 通用区块样式 */
        .section {
            padding: 80px 0;
            border-bottom: 1px solid var(--border);
            position: relative;
        }

        .section:nth-child(even) {
            background-color: var(--bg-white);
        }

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

        .section-tag {
            display: inline-block;
            padding: 4px 12px;
            background: linear-gradient(90deg, rgba(37,99,235,0.1) 0%, rgba(217,70,239,0.1) 100%);
            color: var(--primary);
            font-size: 0.85rem;
            font-weight: 700;
            border-radius: 20px;
            margin-bottom: 15px;
            text-transform: uppercase;
            border: 1px solid rgba(217,70,239,0.2);
        }

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

        .section-desc {
            max-width: 700px;
            margin: 0 auto;
            color: var(--text);
            font-size: 1.05rem;
        }

        /* Hero首屏 - 无图片，炫彩渐变与卡片排版 */
        #hero {
            background: radial-gradient(circle at 90% 10%, rgba(217, 70, 239, 0.08) 0%, transparent 40%),
                        radial-gradient(circle at 10% 90%, rgba(37, 99, 235, 0.08) 0%, transparent 40%),
                        var(--bg-white);
            padding: 100px 0 80px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-inner {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            line-height: 1.25;
            color: var(--dark);
            font-weight: 900;
            margin-bottom: 25px;
        }

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

        .hero-content p {
            font-size: 1.15rem;
            color: var(--text);
            margin-bottom: 35px;
            max-width: 600px;
        }

        .hero-actions {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 14px 30px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            text-align: center;
        }

        .btn-primary {
            background: var(--neon-gradient);
            color: var(--bg-white);
            box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(217, 70, 239, 0.35);
        }

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

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

        .hero-badge-container {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 30px;
        }

        .hero-badge {
            background: rgba(37, 99, 235, 0.05);
            border: 1px solid rgba(37, 99, 235, 0.15);
            padding: 5px 12px;
            border-radius: 30px;
            font-size: 0.85rem;
            color: var(--primary);
            font-weight: 600;
        }

        /* 首屏右侧数据卡片组合 */
        .hero-graphics {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .accent-card {
            background: var(--bg-white);
            border-left: 5px solid var(--secondary);
            border-radius: 12px;
            padding: 20px;
            box-shadow: var(--neon-shadow);
            transform: rotate(-1deg);
            transition: transform 0.3s;
        }

        .accent-card:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .accent-card h3 {
            font-size: 1.1rem;
            margin-bottom: 8px;
            color: var(--dark);
        }

        .accent-card p {
            font-size: 0.9rem;
            color: var(--text);
        }

        .accent-card-2 {
            background: var(--dark);
            color: var(--bg-white);
            border-left: 5px solid var(--accent);
            border-radius: 12px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
            transform: rotate(2deg);
        }

        .accent-card-2 h3 {
            color: var(--bg-white);
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .accent-card-2 p {
            color: #94a3b8;
            font-size: 0.9rem;
        }

        /* 统一卡片网格布局 */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }

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

        /* 卡片通用基础设计 */
        .card {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .card:hover {
            transform: translateY(-5px);
            box-shadow: var(--neon-shadow);
            border-color: rgba(217, 70, 239, 0.3);
        }

        .card-icon {
            width: 50px;
            height: 50px;
            border-radius: 12px;
            background: linear-gradient(135deg, rgba(37,99,235,0.1) 0%, rgba(217,70,239,0.1) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--primary);
            font-size: 1.5rem;
            font-weight: bold;
        }

        /* 数据指标卡片 */
        .metric-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: -40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 10;
        }

        .metric-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .metric-num {
            font-size: 2.2rem;
            font-weight: 800;
            background: var(--neon-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .metric-label {
            font-size: 0.9rem;
            color: var(--text);
            font-weight: 600;
        }

        /* 平台支持标签云 */
        .tags-wrapper {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
        }

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

        .tag-item {
            background-color: var(--bg-light);
            border: 1px solid var(--border);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s;
        }

        .tag-item:hover {
            background: var(--neon-gradient);
            color: var(--bg-white);
            border-color: transparent;
            transform: scale(1.05);
        }

        /* 全自动工作流时间线 */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 4px;
            background: var(--neon-gradient);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -2px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
        }

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

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

        .right-timeline {
            left: 50%;
        }

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

        .timeline-content {
            padding: 20px;
            background-color: var(--bg-white);
            border-radius: 12px;
            box-shadow: var(--neon-shadow);
            border: 1px solid var(--border);
        }

        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.2rem;
        }

        /* 解决方案图片网格 */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .solution-card {
            background: var(--bg-white);
            border-radius: 16px;
            overflow: hidden;
            border: 1px solid var(--border);
        }

        .solution-card-body {
            padding: 25px;
        }

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

        /* 对比评测表格 */
        .table-responsive {
            width: 100%;
            overflow-x: auto;
            margin-top: 30px;
            border-radius: 12px;
            border: 1px solid var(--border);
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            background: var(--bg-white);
        }

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

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

        .evaluation-table th {
            background-color: #f1f5f9;
            color: var(--dark);
            font-weight: 700;
        }

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

        .evaluation-table tr.highlight-row {
            background-color: rgba(37,99,235,0.03);
        }

        .highlight-cell {
            font-weight: 700;
            color: var(--primary);
        }

        .rating-badge {
            display: inline-block;
            background: linear-gradient(135deg, #f59e0b 0%, #ff8e53 100%);
            color: var(--bg-white);
            padding: 4px 12px;
            border-radius: 20px;
            font-weight: 800;
            font-size: 0.9rem;
        }

        /* Token 比价卡片区 */
        .token-price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }

        .token-card {
            background: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
            transition: all 0.3s;
        }

        .token-card.best-deal {
            border: 2px solid var(--secondary);
            transform: scale(1.03);
            box-shadow: var(--neon-shadow);
        }

        .token-card h4 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 10px;
        }

        .token-price {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 10px 0;
        }

        .token-price span {
            font-size: 0.85rem;
            color: var(--text);
            font-weight: normal;
        }

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

        .case-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
        }

        .case-img-box {
            position: relative;
            background: #e2e8f0;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .case-img-box img {
            width: 100%;
            height: auto;
            display: block;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .case-card:hover .case-img-box img {
            transform: scale(1.05);
        }

        .case-body {
            padding: 20px;
        }

        .case-body h4 {
            font-size: 1.1rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

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

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

        .review-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.02);
            position: relative;
        }

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

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

        .user-avatar-placeholder {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--neon-gradient);
            color: var(--bg-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 0.9rem;
        }

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

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

        /* FAQ折叠面板 */
        .faq-list {
            max-width: 850px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

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

        .faq-question {
            padding: 20px;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 15px;
        }

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

        .faq-item.active {
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(37,99,235,0.05);
        }

        .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-color: var(--bg-light);
        }

        .faq-answer-inner {
            padding: 20px;
            color: var(--text);
            font-size: 0.95rem;
            border-top: 1px solid var(--border);
        }

        /* 需求匹配表单与联系方式 */
        .contact-layout {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: start;
        }

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

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group-full {
            grid-column: span 2;
        }

        .form-label {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--dark);
        }

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

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

        .info-card {
            background-color: var(--dark);
            color: var(--bg-white);
            border-radius: 16px;
            padding: 40px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .info-card h3 {
            color: var(--bg-white);
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .info-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }

        .info-list li {
            font-size: 0.95rem;
            color: #cbd5e1;
        }

        .info-list strong {
            color: var(--bg-white);
        }

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

        .qr-area img {
            max-width: 130px;
            height: auto;
            border-radius: 8px;
            margin-bottom: 10px;
        }

        .qr-area p {
            font-size: 0.8rem;
            color: #94a3b8;
        }

        /* 资讯 / 知识库列表 */
        .article-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

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

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

        .article-title {
            font-size: 1rem;
            font-weight: 700;
            color: var(--dark);
            text-decoration: none;
        }

        .article-title:hover {
            color: var(--primary);
        }

        .article-date {
            font-size: 0.85rem;
            color: var(--text);
        }

        /* 页脚友情链接 & 版权信息 */
        footer {
            background-color: #0f172a;
            color: #cbd5e1;
            padding: 60px 0 30px 0;
            border-top: 1px solid #1e293b;
        }

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

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

        .footer-col p {
            font-size: 0.9rem;
            line-height: 1.6;
        }

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

        .friend-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.85rem;
            background: #1e293b;
            padding: 4px 10px;
            border-radius: 4px;
            transition: all 0.3s;
        }

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

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 0.85rem;
            color: #94a3b8;
        }

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

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

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

        .kefu-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--neon-gradient);
            color: var(--bg-white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(217, 70, 239, 0.4);
            transition: transform 0.3s;
            text-decoration: none;
        }

        .kefu-btn:hover {
            transform: scale(1.1);
        }

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

        .qr-popover img {
            width: 100%;
            height: auto;
            border-radius: 6px;
        }

        .qr-popover p {
            font-size: 0.8rem;
            color: var(--dark);
            margin-top: 8px;
            font-weight: bold;
        }

        .kefu-wrapper:hover .qr-popover {
            display: block;
        }

        /* 响应式媒体查询 */
        @media (max-width: 992px) {
            .hero-inner {
                grid-template-columns: 1fr;
                gap: 50px;
                text-align: center;
            }
            .hero-content p {
                margin: 0 auto 35px auto;
            }
            .hero-actions {
                justify-content: center;
            }
            .hero-badge-container {
                justify-content: center;
            }
            .hero-graphics {
                max-width: 500px;
                margin: 0 auto;
            }
            .metric-grid {
                grid-template-columns: repeat(2, 1fr);
                margin-top: 20px;
            }
            .contact-layout {
                grid-template-columns: 1fr;
            }
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            .case-grid {
                grid-template-columns: 1fr;
            }
            .reviews-grid {
                grid-template-columns: 1fr;
            }
            .timeline::after {
                left: 31px;
            }
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
                text-align: left;
            }
            .timeline-item::after {
                left: 21px;
                right: auto;
            }
            .left-timeline {
                left: 0;
            }
            .left-timeline .timeline-content {
                text-align: left;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background-color: var(--bg-white);
                border-bottom: 1px solid var(--border);
                padding: 20px;
                box-shadow: 0 10px 15px rgba(0,0,0,0.05);
            }
            .nav-menu.active {
                display: flex;
            }
            .form-grid {
                grid-template-columns: 1fr;
            }
            .form-group-full {
                grid-column: span 1;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }