/* 缤纷糖果亮色风全局样式定义 */
        :root {
            --primary: #FF5E7E; /* 糖果粉红 */
            --secondary: #4EA8DE; /* 天空蓝 */
            --accent: #FFD166; /* 柠檬黄 */
            --success: #06D6A0; /* 薄荷绿 */
            --purple: #B5179E; /* 丁香紫 */
            --dark: #2B2D42; /* 深蓝灰 */
            --light: #F8F9FC; /* 亮灰白 */
            --white: #FFFFFF;
            --gradient-candy: linear-gradient(135deg, #FF5E7E 0%, #B5179E 50%, #4EA8DE 100%);
            --gradient-soft: linear-gradient(135deg, #FFF5F7 0%, #F0F4FF 100%);
            --shadow-sm: 0 4px 12px rgba(255, 94, 126, 0.08);
            --shadow-md: 0 10px 25px rgba(181, 23, 158, 0.1);
            --shadow-lg: 0 20px 40px rgba(78, 168, 222, 0.15);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 24px;
            --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
        }

        /* 基础重置 */
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            font-family: var(--font);
            color: var(--dark);
            background-color: var(--light);
            overflow-x: hidden;
        }
        body {
            line-height: 1.6;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* 统一外层居中容器 */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航栏样式 */
        header {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 2px solid rgba(255, 94, 126, 0.1);
            box-shadow: var(--shadow-sm);
        }
        .nav-wrapper {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .ai-page-logo {
            height: 45px;
            width: auto;
        }
        .logo-text {
            font-size: 1.25rem;
            font-weight: 800;
            background: var(--gradient-candy);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .nav-menu {
            display: flex;
            align-items: center;
        }
        .nav-menu a {
            font-weight: 600;
            color: var(--dark);
            padding: 8px 12px;
            border-radius: var(--radius-sm);
        }
        .nav-menu a:hover {
            color: var(--primary);
            background-color: rgba(255, 94, 126, 0.08);
        }
        .nav-btn {
            background: var(--gradient-candy);
            color: var(--white) !important;
            padding: 10px 24px !important;
            border-radius: 50px !important;
            box-shadow: var(--shadow-sm);
        }
        .nav-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            cursor: pointer;
            border: none;
            background: none;
        }
        .menu-toggle span {
            display: block;
            width: 28px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 3px;
            transition: 0.3s;
        }

        /* 页面大板块通用样式 */
        section {
            padding: 80px 0;
            position: relative;
        }
        .section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-title h2 {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 12px;
            position: relative;
            display: inline-block;
        }
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 5px;
            background: var(--gradient-candy);
            border-radius: 5px;
        }
        .section-title p {
            color: #666;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto;
        }

        /* 首屏 Hero 区域样式 - 严格禁止图片 */
        .hero {
            background: var(--gradient-soft);
            padding: 120px 0 100px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 94, 126, 0.1);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.95rem;
            margin-bottom: 24px;
            border: 1px solid rgba(255, 94, 126, 0.2);
            animation: bounce 2s infinite;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: 900;
            line-height: 1.2;
            color: var(--dark);
            max-width: 900px;
            margin: 0 auto 24px auto;
        }
        .hero h1 span {
            background: var(--gradient-candy);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-desc {
            font-size: 1.25rem;
            color: #555;
            max-width: 700px;
            margin: 0 auto 40px auto;
        }
        .hero-btns {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 16px 36px;
            font-size: 1.1rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background: var(--gradient-candy);
            color: var(--white);
            box-shadow: var(--shadow-md);
        }
        .btn-primary:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: var(--shadow-lg);
        }
        .btn-secondary {
            background: var(--white);
            color: var(--purple);
            border: 2px solid var(--purple);
            box-shadow: var(--shadow-sm);
        }
        .btn-secondary:hover {
            transform: translateY(-5px);
            background: var(--purple);
            color: var(--white);
        }

        /* 数据指标卡片 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }
        .stat-card {
            background: var(--white);
            padding: 30px 24px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            text-align: center;
            border-bottom: 4px solid var(--accent);
            transition: transform 0.3s;
        }
        .stat-card:hover {
            transform: translateY(-8px);
        }
        .stat-card:nth-child(2) { border-bottom-color: var(--primary); }
        .stat-card:nth-child(3) { border-bottom-color: var(--secondary); }
        .stat-card:nth-child(4) { border-bottom-color: var(--success); }
        
        .stat-num {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 8px;
        }
        .stat-label {
            font-size: 0.95rem;
            color: #666;
            font-weight: 600;
        }

        /* 关于我们 */
        .about-box {
            background: var(--white);
            border-radius: var(--radius-lg);
            padding: 50px;
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(181, 23, 158, 0.1);
        }
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
        }
        .about-content h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--purple);
        }
        .about-content p {
            margin-bottom: 20px;
            color: #555;
            font-size: 1.05rem;
        }
        .features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
        }
        .feature-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }
        .feature-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: var(--success);
        }

        /* 服务能力卡片 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .service-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 40px 30px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.03);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: var(--gradient-candy);
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            display: inline-block;
        }
        .service-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        .service-card p {
            color: #666;
            font-size: 0.95rem;
        }

        /* 标签云系统组件 */
        .tag-cloud-section {
            background: var(--gradient-soft);
            border-radius: var(--radius-lg);
            padding: 40px;
            margin-top: 40px;
            text-align: center;
        }
        .tag-cloud-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--purple);
        }
        .tag-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
        }
        .tag-badge {
            background: var(--white);
            color: var(--dark);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.2s;
        }
        .tag-badge:hover {
            background: var(--primary);
            color: var(--white);
            transform: scale(1.05);
        }

        /* 一站式创作场景 */
        .creation-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
        }
        .creation-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            border: 2px solid transparent;
            transition: all 0.3s;
        }
        .creation-card:hover {
            border-color: var(--secondary);
            transform: scale(1.03);
        }
        .creation-card h4 {
            font-size: 1.25rem;
            margin-bottom: 12px;
            color: var(--secondary);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .creation-card p {
            font-size: 0.9rem;
            color: #666;
        }

        /* 对比评测表格 */
        .table-responsive {
            overflow-x: auto;
            background: var(--white);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            padding: 24px;
            margin-top: 40px;
        }
        .evaluation-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }
        .evaluation-table th, .evaluation-table td {
            padding: 16px 20px;
            border-bottom: 1px solid rgba(0,0,0,0.05);
        }
        .evaluation-table th {
            background-color: rgba(78, 168, 222, 0.05);
            color: var(--dark);
            font-weight: 700;
        }
        .evaluation-table tr:last-child td {
            border-bottom: none;
        }
        .highlight-row {
            background-color: rgba(255, 94, 126, 0.03);
            font-weight: 600;
        }
        .score-badge {
            background: var(--gradient-candy);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.85rem;
            display: inline-block;
        }

        /* 流程步骤与时间线 */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 40px auto 0 auto;
            padding-left: 30px;
            border-left: 4px dashed rgba(181, 23, 158, 0.2);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -42px;
            top: 4px;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            border: 4px solid var(--white);
            box-shadow: var(--shadow-sm);
        }
        .timeline-item:nth-child(even)::before {
            background: var(--secondary);
        }
        .timeline-content {
            background: var(--white);
            padding: 24px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }
        .timeline-content h4 {
            font-size: 1.15rem;
            color: var(--dark);
            margin-bottom: 8px;
        }

        /* Token 比价 */
        .price-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .price-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            text-align: center;
            border: 1px solid rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        .price-card.featured {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }
        .price-card.featured .price-header {
            background: rgba(255, 94, 126, 0.1);
        }
        .price-header {
            padding: 10px;
            border-radius: var(--radius-sm);
            background: rgba(78, 168, 222, 0.08);
            margin-bottom: 20px;
            font-weight: 700;
        }
        .price-amount {
            font-size: 2.25rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .price-amount span {
            font-size: 1rem;
            color: #666;
        }

        /* 案例展示区 */
        .case-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        .case-card {
            background: var(--white);
            border-radius: var(--radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
        }
        .case-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
        }
        .case-img-wrap {
            position: relative;
            overflow: hidden;
            background-color: #eaeaea;
            aspect-ratio: 16/9;
        }
        .case-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .case-info {
            padding: 24px;
        }
        .case-tag {
            display: inline-block;
            background-color: rgba(78, 168, 222, 0.1);
            color: var(--secondary);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.8rem;
            font-weight: 700;
            margin-bottom: 12px;
        }
        .case-info h4 {
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: var(--dark);
        }
        .case-info p {
            font-size: 0.9rem;
            color: #666;
        }

        /* 职业技术培训 */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
        }
        .training-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.03);
            transition: transform 0.3s;
        }
        .training-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
        }
        .training-badge {
            background-color: var(--accent);
            color: var(--dark);
            font-weight: 800;
            padding: 4px 12px;
            border-radius: 50px;
            font-size: 0.8rem;
            margin-bottom: 16px;
            display: inline-block;
        }

        /* AI术语百科 & FAQ 折叠面板 */
        .faq-accordion {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--white);
            border-radius: var(--radius-md);
            margin-bottom: 16px;
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            border: 1px solid rgba(0,0,0,0.02);
        }
        .faq-question {
            padding: 20px 24px;
            font-weight: 700;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--white);
            transition: background-color 0.3s;
        }
        .faq-question:hover {
            background-color: rgba(255, 94, 126, 0.02);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(248, 249, 252, 0.5);
        }
        .faq-answer-inner {
            padding: 20px 24px;
            border-top: 1px solid rgba(0,0,0,0.05);
            color: #555;
            font-size: 0.95rem;
        }
        .faq-icon {
            transition: transform 0.3s;
            font-weight: bold;
            color: var(--primary);
        }
        .faq-item.active .faq-answer {
            max-height: 500px;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        /* 客户评论卡片 */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        .review-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 30px;
            box-shadow: var(--shadow-sm);
            border-left: 5px solid var(--primary);
        }
        .review-card:nth-child(even) {
            border-left-color: var(--secondary);
        }
        .review-text {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }
        .review-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .author-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: var(--gradient-candy);
            color: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }
        .author-info h5 {
            font-weight: 700;
            color: var(--dark);
        }
        .author-info span {
            font-size: 0.8rem;
            color: #888;
        }

        /* 行业资讯 / 知识库 */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }
        .article-card {
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(0,0,0,0.03);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .article-card h4 {
            font-size: 1.15rem;
            margin-bottom: 12px;
            color: var(--dark);
        }
        .article-card p {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        .article-link {
            color: var(--primary);
            font-weight: 700;
            font-size: 0.9rem;
            align-self: flex-start;
        }
        .article-link:hover {
            color: var(--purple);
            text-decoration: underline;
        }

        /* 需求匹配表单与联系我们 */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
        }
        @media(max-width: 768px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }
        .form-wrap {
            background: var(--white);
            padding: 40px;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            border: 1px solid rgba(78, 168, 222, 0.1);
        }
        .form-group {
            margin-bottom: 20px;
        }
        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 700;
            font-size: 0.9rem;
        }
        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid rgba(0,0,0,0.08);
            border-radius: var(--radius-sm);
            font-family: var(--font);
            font-size: 0.95rem;
            transition: border-color 0.3s;
        }
        .form-input:focus, .form-select:focus, .form-textarea:focus {
            outline: none;
            border-color: var(--primary);
        }
        .form-textarea {
            resize: vertical;
            height: 120px;
        }
        .contact-info-wrap {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        .info-card {
            background: var(--white);
            padding: 24px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            display: flex;
            gap: 16px;
        }
        .info-icon {
            font-size: 2rem;
            color: var(--secondary);
        }
        .info-details h5 {
            font-size: 1.1rem;
            margin-bottom: 6px;
        }
        .info-details p, .info-details a {
            color: #666;
            font-size: 0.95rem;
        }
        .qr-codes {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }
        .qr-item {
            text-align: center;
            background: var(--white);
            padding: 16px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
        }
        .qr-item img {
            width: 120px;
            height: 120px;
            margin-bottom: 8px;
        }
        .qr-item span {
            font-size: 0.85rem;
            font-weight: 700;
        }

        /* 友情链接与页脚 */
        footer {
            background-color: var(--dark);
            color: #E2E8F0;
            padding: 60px 0 30px 0;
            font-size: 0.9rem;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        .footer-col h4 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 1.1rem;
            position: relative;
        }
        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 30px;
            height: 3px;
            background: var(--primary);
            border-radius: 2px;
        }
        .footer-links {
            list-style: none;
        }
        .footer-links li {
            margin-bottom: 12px;
        }
        .footer-links a:hover {
            color: var(--primary);
        }
        .friendship-links {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 30px 0;
            text-align: center;
        }
        .friendship-links-title {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--white);
        }
        .friendship-links-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 15px;
        }
        .friendship-links-container a {
            color: #A0AEC0;
            transition: color 0.3s;
        }
        .friendship-links-container a:hover {
            color: var(--accent);
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 24px;
            text-align: center;
            color: #718096;
            font-size: 0.8rem;
        }

        /* 浮动客服 */
        .float-kefu {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 999;
            background: var(--gradient-candy);
            color: var(--white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            transition: all 0.3s;
        }
        .float-kefu:hover {
            transform: scale(1.1) rotate(10deg);
        }
        .kefu-panel {
            position: fixed;
            right: 96px;
            bottom: 24px;
            z-index: 1000;
            background: var(--white);
            border-radius: var(--radius-md);
            padding: 24px;
            box-shadow: var(--shadow-lg);
            border: 2px solid var(--primary);
            display: none;
            text-align: center;
            width: 260px;
        }
        .kefu-panel img {
            width: 150px;
            height: 150px;
            margin: 0 auto 12px auto;
        }
        .kefu-panel h4 {
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .kefu-panel p {
            font-size: 0.85rem;
            color: #666;
            margin-bottom: 12px;
        }
        .close-kefu {
            position: absolute;
            top: 8px;
            right: 8px;
            cursor: pointer;
            font-weight: bold;
            color: #999;
        }

        /* 动画关键帧 */
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        /* 响应式调整 */
        @media(max-width: 992px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .hero h1 {
                font-size: 2.25rem;
            }
            .nav-menu {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                box-shadow: var(--shadow-md);
                border-top: 1px solid rgba(0,0,0,0.05);
            }
            .nav-menu.active {
                display: flex;
            }
            .menu-toggle {
                display: flex;
            }
        }