:root {
            --primary: #7c3aed;
            --primary-light: #a78bfa;
            --primary-dark: #5b21b6;
            --secondary: #db2777;
            --bg-base: #f8f7ff;
            --bg-card: #ffffff;
            --text-main: #1a0f30;
            --text-muted: #5f5575;
            --border-color: #e5e0fa;
            --shadow-sm: 0 4px 6px -1px rgba(124, 58, 237, 0.05);
            --shadow-md: 0 10px 15px -3px rgba(124, 58, 237, 0.08);
            --shadow-lg: 0 20px 25px -5px rgba(124, 58, 237, 0.12);
            --radius: 12px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        body {
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            background-color: var(--bg-base);
            color: var(--text-main);
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: var(--transition);
        }

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

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

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

        /* 头部与导航 */
        header {
            background-color: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
        }

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

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

        .logo-area img {
            height: 40px;
            width: auto;
        }

        .logo-text {
            font-weight: 800;
            font-size: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .nav-link {
            font-weight: 500;
            color: var(--text-main);
            font-size: 15px;
            padding: 6px 0;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: var(--transition);
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            border-radius: var(--radius);
            font-weight: 600;
            font-size: 14px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #ffffff;
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
        }

        .btn-primary:hover {
            opacity: 0.9;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
            color: #ffffff;
        }

        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: #ffffff;
            transform: translateY(-2px);
        }

        /* 移动端菜单按钮 */
        .mobile-nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--text-main);
        }

        /* 首屏 Hero - 无图片设计 */
        .hero {
            padding: 120px 0 80px 0;
            background: radial-gradient(circle at 90% 10%, rgba(219, 39, 119, 0.05) 0%, transparent 40%),
                        radial-gradient(circle at 10% 90%, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
            text-align: center;
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            background-color: rgba(124, 58, 237, 0.08);
            border: 1px solid rgba(124, 58, 237, 0.15);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            color: var(--primary-dark);
            margin-bottom: 24px;
            font-weight: 600;
        }

        .hero-title {
            font-size: 48px;
            line-height: 1.2;
            font-weight: 800;
            color: var(--text-main);
            max-width: 900px;
            margin: 0 auto 24px auto;
        }

        .hero-title span {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-desc {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 680px;
            margin: 0 auto 40px auto;
        }

        .hero-btns {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .hero-btns .btn {
            padding: 14px 28px;
            font-size: 16px;
        }

        /* 数据指标卡片 */
        .stats-section {
            padding: 40px 0;
            position: relative;
            z-index: 10;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }

        .stat-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 30px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-label {
            font-size: 15px;
            color: var(--text-muted);
            font-weight: 500;
        }

        /* 主板块通用样式 */
        .section-header {
            text-align: center;
            margin-bottom: 60px;
            margin-top: 80px;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--secondary);
            margin-bottom: 12px;
            background-color: rgba(219, 39, 119, 0.08);
            padding: 4px 12px;
            border-radius: 4px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .about-content h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 18px;
            color: var(--primary-dark);
        }

        .about-text {
            color: var(--text-muted);
            font-size: 16px;
            margin-bottom: 24px;
        }

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

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

        .about-feat-icon {
            color: var(--primary);
            font-weight: bold;
            font-size: 18px;
        }

        .about-feat-text h4 {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
        }

        .about-feat-text p {
            font-size: 13px;
            color: var(--text-muted);
        }

        .about-image-wrapper {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        /* 全平台AIGC服务 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .service-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 36px 24px;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-light);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(219, 39, 119, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 24px;
            margin-bottom: 24px;
        }

        .service-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .service-card p {
            color: var(--text-muted);
            font-size: 14px;
        }

        /* 一站式制作场景与图文展示 */
        .scenarios-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .scenario-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .scenario-img-box {
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
        }

        .scenario-img-box:hover {
            transform: scale(1.03);
        }

        /* 标签云 (大模型支持) */
        .tags-container {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            justify-content: center;
            max-width: 1000px;
            margin: 40px auto 0 auto;
        }

        .model-tag {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            transition: var(--transition);
            cursor: default;
        }

        .model-tag:hover {
            border-color: var(--primary);
            background-color: rgba(124, 58, 237, 0.05);
            transform: translateY(-2px);
        }

        /* 步骤流程图 */
        .process-flow {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            position: relative;
        }

        .process-step {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
            position: relative;
            box-shadow: var(--shadow-sm);
        }

        .step-num {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            margin: 0 auto 20px auto;
        }

        .process-step h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .process-step p {
            font-size: 14px;
            color: var(--text-muted);
        }

        /* 全国服务网络 */
        .network-section {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 40px;
            text-align: center;
        }

        .network-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            margin-top: 30px;
        }

        .network-item {
            padding: 20px;
            border-radius: var(--radius);
            background-color: var(--bg-base);
            border: 1px solid var(--border-color);
        }

        .network-item h4 {
            color: var(--primary-dark);
            margin-bottom: 8px;
            font-weight: 700;
        }

        /* 对比评测表格 */
        .comparison-table-wrapper {
            overflow-x: auto;
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            box-shadow: var(--shadow-md);
        }

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

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

        .comparison-table th {
            background-color: rgba(124, 58, 237, 0.03);
            font-weight: 700;
            color: var(--text-main);
        }

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

        .comparison-table .highlight {
            background-color: rgba(124, 58, 237, 0.02);
            font-weight: 600;
            color: var(--primary-dark);
        }

        /* Token 比价参考 */
        .token-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .token-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 30px 24px;
            text-align: center;
            transition: var(--transition);
        }

        .token-card.best {
            border: 2px solid var(--primary);
            position: relative;
            transform: scale(1.03);
            box-shadow: var(--shadow-lg);
        }

        .token-card.best::before {
            content: '推荐';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #ffffff;
            padding: 2px 14px;
            font-size: 12px;
            border-radius: 20px;
            font-weight: 700;
        }

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

        .token-features {
            list-style: none;
            padding: 20px 0;
            font-size: 14px;
            color: var(--text-muted);
            border-top: 1px solid var(--border-color);
            margin-top: 16px;
        }

        .token-features li {
            margin-bottom: 8px;
        }

        /* 培训模块 */
        .training-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 24px;
        }

        .training-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 32px 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .training-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light);
        }

        .training-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 12px;
        }

        .training-card p {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 16px;
        }

        .training-badge {
            display: inline-block;
            background-color: rgba(124, 58, 237, 0.08);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 4px;
        }

        /* 帮助中心 & FAQ & 自助排查 */
        .help-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .faq-wrapper {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

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

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

        .faq-header::after {
            content: '+';
            font-size: 20px;
            color: var(--primary);
            transition: var(--transition);
        }

        .faq-item.active .faq-header::after {
            content: '−';
        }

        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            background-color: rgba(124, 58, 237, 0.01);
        }

        .faq-content {
            padding: 0 24px 20px 24px;
            color: var(--text-muted);
            font-size: 14px;
        }

        .troubleshoot-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 30px 24px;
            height: fit-content;
        }

        .troubleshoot-card h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--primary-dark);
        }

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

        .ts-item {
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 14px;
        }

        .ts-item:last-child {
            border-bottom: none;
        }

        /* 术语百科与文章资讯 */
        .glossary-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 40px;
        }

        .glossary-tag {
            background-color: rgba(124, 58, 237, 0.05);
            padding: 6px 12px;
            border-radius: 4px;
            font-size: 13px;
            color: var(--text-main);
        }

        .articles-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .article-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .article-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .article-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        /* 客户案例 & 评论 */
        .comments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }

        .comment-card {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 28px 20px;
            box-shadow: var(--shadow-sm);
        }

        .comment-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 16px;
        }

        .comment-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background-color: var(--primary-light);
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .comment-user h4 {
            font-size: 14px;
            font-weight: 700;
        }

        .comment-user p {
            font-size: 12px;
            color: var(--text-muted);
        }

        .comment-text {
            font-size: 14px;
            color: var(--text-muted);
            font-style: italic;
        }

        /* 需求匹配与表单 */
        .matching-layout {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 48px;
            align-items: center;
        }

        .matching-info h3 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .matching-form {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 40px 32px;
            box-shadow: var(--shadow-lg);
        }

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

        .form-label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            font-size: 14px;
            background-color: var(--bg-base);
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background-color: #ffffff;
            box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
        }

        /* 加盟代理 */
        .agent-section {
            background: linear-gradient(135deg, rgba(124, 58, 237, 0.05), rgba(219, 39, 119, 0.05));
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 50px 40px;
            text-align: center;
        }

        .agent-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
            margin: 30px 0;
        }

        .agent-feat-card {
            background-color: var(--bg-card);
            padding: 24px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-sm);
        }

        /* 联系我们 */
        .contact-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr;
            gap: 40px;
        }

        .contact-details {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .contact-box {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 24px;
        }

        .contact-box h4 {
            font-size: 16px;
            color: var(--primary-dark);
            margin-bottom: 12px;
            font-weight: 700;
        }

        .contact-qr-wrapper {
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: var(--radius);
            padding: 30px;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .contact-qr-wrapper img {
            width: 140px;
            height: 140px;
            margin-bottom: 16px;
        }

        /* 友情链接与页脚 */
        footer {
            background-color: #110826;
            color: #d1c8e8;
            padding: 60px 0 30px 0;
            margin-top: 80px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            padding-bottom: 40px;
            margin-bottom: 30px;
        }

        .footer-brand h3 {
            color: #ffffff;
            font-size: 22px;
            margin-bottom: 16px;
            font-weight: 700;
        }

        .footer-links h4, .footer-contact h4 {
            color: #ffffff;
            font-size: 16px;
            margin-bottom: 20px;
            font-weight: 600;
        }

        .footer-links-list {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 10px;
        }

        .footer-links-list a {
            color: #a59cb8;
        }

        .footer-links-list a:hover {
            color: #ffffff;
        }

        .footer-links-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 18px;
            margin-top: 20px;
        }

        .footer-links-inline a {
            color: #a59cb8;
            font-size: 14px;
        }

        .footer-links-inline a:hover {
            color: #ffffff;
        }

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
            color: #7b7094;
        }

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

        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: #ffffff;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
            cursor: pointer;
            transition: var(--transition);
            font-size: 20px;
            border: none;
            position: relative;
        }

        .float-btn:hover {
            transform: translateY(-3px);
        }

        .float-qr-box {
            position: absolute;
            bottom: 60px;
            right: 0;
            background-color: var(--bg-card);
            border: 1px solid var(--border-color);
            padding: 16px;
            border-radius: var(--radius);
            box-shadow: var(--shadow-lg);
            display: none;
            width: 160px;
            text-align: center;
        }

        .float-qr-box img {
            width: 100%;
            height: auto;
            margin-bottom: 8px;
        }

        .float-qr-box span {
            font-size: 12px;
            color: var(--text-main);
            font-weight: 600;
        }

        .float-btn:hover .float-qr-box {
            display: block;
        }

        /* 响应式调整 */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 72px;
                left: 0;
                width: 100%;
                background-color: #ffffff;
                border-bottom: 1px solid var(--border-color);
                padding: 20px;
                gap: 16px;
                box-shadow: var(--shadow-md);
            }

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

            .mobile-nav-toggle {
                display: block;
            }

            .hero-title {
                font-size: 36px;
            }

            .about-grid, .scenarios-grid, .help-layout, .matching-layout, .contact-grid {
                grid-template-columns: 1fr;
            }

            .matching-info {
                text-align: center;
            }
        }

        @media (max-width: 576px) {
            .hero-title {
                font-size: 28px;
            }

            .hero-btns {
                flex-direction: column;
                width: 100%;
            }

            .hero-btns .btn {
                width: 100%;
            }

            .about-features {
                grid-template-columns: 1fr;
            }

            .contact-details {
                grid-template-columns: 1fr;
            }
        }