:root {
            --primary: #e11d48;
            --primary-hover: #be123c;
            --secondary: #fda4af;
            --bg-light: #fff5f5;
            --bg-dark: #0f172a;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --white: #ffffff;
            --accent-pink: #f43f5e;
            --card-shadow: 0 10px 30px rgba(225, 29, 72, 0.06);
            --transition: all 0.3s ease;
        }

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

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

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

        ul {
            list-style: none;
        }

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

        /* 顶部导航 */
        header {
            background-color: rgba(255, 245, 245, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.05);
            border-bottom: 1px solid rgba(225, 29, 72, 0.1);
        }

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

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

        .ai-page-logo {
            max-height: 45px;
            object-fit: contain;
        }

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

        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-main);
            padding: 5px 10px;
            border-radius: 4px;
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary);
            background-color: rgba(225, 29, 72, 0.05);
        }

        .nav-btn {
            background-color: var(--primary);
            color: var(--white);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }

        .nav-btn:hover {
            background-color: var(--primary-hover);
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background-color: var(--primary);
            border-radius: 2px;
            transition: var(--transition);
        }

        /* Hero首屏 - 严禁出现图片 */
        .hero-section {
            padding-top: 150px;
            padding-bottom: 80px;
            background: radial-gradient(circle at 80% 20%, rgba(253, 164, 175, 0.3) 0%, rgba(255, 255, 255, 0) 60%), linear-gradient(135deg, #fff0f0 0%, #ffe4e6 100%);
            position: relative;
            text-align: center;
        }

        .hero-tag {
            display: inline-block;
            background-color: rgba(225, 29, 72, 0.1);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .hero-title {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.25;
            color: var(--bg-dark);
            margin-bottom: 20px;
            background: linear-gradient(to right, #0f172a, #e11d48);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 750px;
            margin: 0 auto 35px;
        }

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

        .btn-main {
            background-color: var(--primary);
            color: var(--white);
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
        }

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

        .btn-sub {
            background-color: var(--white);
            color: var(--primary);
            border: 1px solid rgba(225, 29, 72, 0.3);
            padding: 14px 32px;
            border-radius: 30px;
            font-size: 16px;
            font-weight: bold;
        }

        .btn-sub:hover {
            background-color: var(--bg-light);
            transform: translateY(-2px);
        }

        /* 核心数据卡片 */
        .stats-section {
            padding: 40px 0;
            background-color: var(--white);
            border-bottom: 1px solid rgba(225, 29, 72, 0.05);
        }

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

        .stat-card {
            text-align: center;
            padding: 20px;
            background-color: var(--bg-light);
            border-radius: 12px;
            border: 1px solid rgba(225, 29, 72, 0.05);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow);
        }

        .stat-num {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

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

        /* 通用区块样式 */
        section {
            padding: 80px 0;
        }

        .section-light {
            background-color: var(--white);
        }

        .section-pink {
            background-color: rgba(255, 245, 245, 0.5);
        }

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

        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: var(--bg-dark);
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 4px;
            background-color: var(--primary);
            border-radius: 2px;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* 关于我们 */
        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 22px;
            color: var(--bg-dark);
            margin-bottom: 15px;
        }

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 15px;
            font-size: 15px;
            text-align: justify;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-top: 20px;
        }

        .highlight-item {
            padding: 12px;
            background: rgba(225, 29, 72, 0.02);
            border-left: 3px solid var(--primary);
            font-size: 14px;
            font-weight: 600;
        }

        .about-media {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .about-img {
            border-radius: 16px;
            box-shadow: var(--card-shadow);
            border: 4px solid var(--white);
            max-width: 100%;
        }

        /* 全平台AIGC服务 */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .service-card {
            background-color: var(--white);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
            border: 1px solid rgba(225, 29, 72, 0.05);
            transition: var(--transition);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--card-shadow);
            border-color: rgba(225, 29, 72, 0.2);
        }

        .service-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(225, 29, 72, 0.08);
            color: var(--primary);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
        }

        .service-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--bg-dark);
        }

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

        /* 平台支撑标签云 */
        .platform-tags {
            margin-top: 40px;
            text-align: center;
        }

        .platform-tags h4 {
            font-size: 16px;
            color: var(--text-main);
            margin-bottom: 20px;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            max-width: 900px;
            margin: 0 auto;
        }

        .tag-cloud span {
            background-color: var(--white);
            border: 1px solid rgba(225, 29, 72, 0.1);
            color: var(--primary);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            transition: var(--transition);
        }

        .tag-cloud span:hover {
            background-color: var(--primary);
            color: var(--white);
        }

        /* 一站式AIGC制作 */
        .workflow-showcase {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .workflow-content h3 {
            font-size: 24px;
            color: var(--bg-dark);
            margin-bottom: 15px;
        }

        .workflow-features {
            margin: 20px 0;
        }

        .w-feature {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
        }

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

        .w-feature-text h4 {
            font-size: 16px;
            color: var(--bg-dark);
            margin-bottom: 4px;
        }

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

        .workflow-media img {
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            width: 100%;
        }

        /* 全行业解决方案 */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .solution-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
            transition: var(--transition);
            border: 1px solid rgba(225, 29, 72, 0.05);
        }

        .solution-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--card-shadow);
        }

        .solution-img-holder {
            height: 160px;
            background-color: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .solution-img-holder img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .solution-body {
            padding: 20px;
        }

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

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

        /* 全国服务网络 & 步骤流程 */
        .flow-timeline {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
            position: relative;
        }

        .flow-step {
            background-color: var(--white);
            padding: 25px;
            border-radius: 12px;
            border: 1px solid rgba(225, 29, 72, 0.05);
            text-align: center;
            position: relative;
            box-shadow: 0 4px 10px rgba(0,0,0,0.01);
        }

        .step-num {
            width: 40px;
            height: 40px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            margin: 0 auto 15px;
        }

        .flow-step h3 {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--bg-dark);
        }

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

        /* 对比评测 */
        .comparison-section {
            background-color: var(--white);
        }

        .comparison-highlight {
            background: linear-gradient(135deg, #ffe4e6 0%, #fff1f2 100%);
            border-radius: 16px;
            padding: 30px;
            margin-bottom: 40px;
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            border: 1px solid rgba(225, 29, 72, 0.1);
        }

        .comp-score-box {
            text-align: center;
        }

        .comp-score {
            font-size: 56px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1;
        }

        .comp-stars {
            color: #fbbf24;
            font-size: 24px;
            margin-top: 5px;
        }

        .comp-bullets {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .comp-bullet-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .comp-table-wrapper {
            width: 100%;
            overflow-x: auto;
        }

        .comp-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
            background-color: var(--white);
            border: 1px solid rgba(225, 29, 72, 0.08);
            border-radius: 8px;
        }

        .comp-table th, .comp-table td {
            padding: 15px 20px;
            text-align: left;
            border-bottom: 1px solid rgba(225, 29, 72, 0.05);
        }

        .comp-table th {
            background-color: rgba(225, 29, 72, 0.05);
            color: var(--bg-dark);
            font-weight: bold;
        }

        .comp-table tr:hover {
            background-color: rgba(225, 29, 72, 0.01);
        }

        .icon-check {
            color: #10b981;
            font-weight: bold;
        }

        .icon-cross {
            color: #ef4444;
            font-weight: bold;
        }

        /* Token比价 */
        .token-price-wrapper {
            margin-top: 30px;
        }

        /* 职业与人工智能培训 */
        .training-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
        }

        .training-card {
            background-color: var(--white);
            border-radius: 16px;
            padding: 30px;
            border: 1px solid rgba(225, 29, 72, 0.05);
            box-shadow: 0 4px 20px rgba(0,0,0,0.01);
        }

        .training-card h3 {
            font-size: 20px;
            color: var(--bg-dark);
            margin-bottom: 15px;
            border-bottom: 2px solid rgba(225, 29, 72, 0.08);
            padding-bottom: 10px;
        }

        .course-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .course-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--bg-light);
            padding: 12px 18px;
            border-radius: 8px;
        }

        .course-title {
            font-weight: 600;
            color: var(--text-main);
        }

        .course-badge {
            background-color: var(--primary);
            color: var(--white);
            font-size: 12px;
            padding: 2px 8px;
            border-radius: 4px;
        }

        /* 帮助中心 & AI术语百科 & FAQ */
        .help-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
        }

        .wiki-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(225, 29, 72, 0.05);
        }

        .wiki-card h3 {
            font-size: 18px;
            margin-bottom: 15px;
        }

        .wiki-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .wiki-item dt {
            font-weight: bold;
            color: var(--primary);
            font-size: 14px;
        }

        .wiki-item dd {
            font-size: 13px;
            color: var(--text-muted);
            margin-left: 0;
            margin-top: 4px;
            margin-bottom: 10px;
        }

        .faq-accordion {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .faq-item {
            background-color: var(--white);
            border-radius: 8px;
            border: 1px solid rgba(225, 29, 72, 0.05);
            overflow: hidden;
        }

        .faq-question {
            padding: 15px 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--white);
            transition: var(--transition);
        }

        .faq-question:hover {
            background-color: rgba(225, 29, 72, 0.02);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0 20px;
            color: var(--text-muted);
            font-size: 14px;
        }

        .faq-item.active .faq-answer {
            max-height: 200px;
            padding: 15px 20px;
            border-top: 1px solid rgba(225, 29, 72, 0.05);
        }

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

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

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

        .review-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 25px;
            border: 1px solid rgba(225, 29, 72, 0.05);
            box-shadow: 0 4px 15px rgba(0,0,0,0.01);
        }

        .review-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 15px;
        }

        .review-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: var(--secondary);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .review-info h4 {
            font-size: 14px;
            color: var(--bg-dark);
        }

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

        .review-content {
            font-size: 13.5px;
            color: var(--text-main);
            text-align: justify;
        }

        /* 知识库/资讯 */
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .article-card {
            background-color: var(--white);
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid rgba(225, 29, 72, 0.05);
        }

        .article-card-body {
            padding: 20px;
        }

        .article-card-body h4 {
            font-size: 16px;
            margin-bottom: 10px;
            color: var(--bg-dark);
        }

        .article-link {
            color: var(--primary);
            font-weight: 500;
            font-size: 13px;
            display: inline-block;
            margin-top: 10px;
        }

        /* 智能需求匹配与联系我们 */
        .contact-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }

        .contact-info-panel {
            background-color: var(--white);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(225, 29, 72, 0.05);
        }

        .contact-info-panel h3 {
            font-size: 22px;
            color: var(--bg-dark);
            margin-bottom: 25px;
        }

        .contact-details {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .detail-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .detail-icon {
            color: var(--primary);
            font-weight: bold;
        }

        .detail-content h4 {
            font-size: 15px;
            color: var(--bg-dark);
        }

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

        .social-qrs {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

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

        .qr-item img {
            width: 110px;
            height: 110px;
            border: 1px solid rgba(225, 29, 72, 0.1);
            border-radius: 8px;
            padding: 5px;
            background-color: var(--white);
        }

        .qr-item p {
            font-size: 12px;
            margin-top: 5px;
            color: var(--text-main);
        }

        .form-panel {
            background-color: var(--white);
            padding: 40px;
            border-radius: 16px;
            border: 1px solid rgba(225, 29, 72, 0.05);
            box-shadow: var(--card-shadow);
        }

        .form-panel h3 {
            font-size: 22px;
            color: var(--bg-dark);
            margin-bottom: 25px;
        }

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

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: var(--text-main);
            margin-bottom: 8px;
        }

        .form-control {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid rgba(225, 29, 72, 0.15);
            border-radius: 8px;
            font-size: 14px;
            color: var(--text-main);
            transition: var(--transition);
            background-color: var(--bg-light);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--primary);
            background-color: var(--white);
            box-shadow: 0 0 0 3px rgba(225, 29, 72, 0.1);
        }

        .form-btn {
            width: 100%;
            background-color: var(--primary);
            color: var(--white);
            padding: 14px;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 16px;
            cursor: pointer;
            transition: var(--transition);
        }

        .form-btn:hover {
            background-color: var(--primary-hover);
        }

        /* 友情链接与页脚 */
        footer {
            background-color: var(--bg-dark);
            color: #94a3b8;
            padding: 60px 0 20px;
            font-size: 14px;
        }

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

        .footer-brand h3 {
            color: var(--white);
            font-size: 20px;
            margin-bottom: 15px;
        }

        .footer-brand p {
            line-height: 1.8;
        }

        .footer-links h4, .footer-friend-links h4 {
            color: var(--white);
            margin-bottom: 15px;
            font-size: 15px;
        }

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

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

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

        .friend-links-box a {
            color: #94a3b8;
            background-color: rgba(255,255,255,0.05);
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
        }

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

        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            font-size: 12px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 15px;
        }

        /* 悬浮客服挂件 */
        .floating-widget {
            position: fixed;
            bottom: 40px;
            right: 30px;
            display: flex;
            flex-direction: column;
            gap: 12px;
            z-index: 999;
        }

        .widget-item {
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(225, 29, 72, 0.4);
            position: relative;
            transition: var(--transition);
        }

        .widget-item:hover {
            transform: scale(1.1);
        }

        .widget-popover {
            position: absolute;
            right: 60px;
            bottom: 0;
            background-color: var(--white);
            border: 1px solid rgba(225, 29, 72, 0.1);
            padding: 15px;
            border-radius: 12px;
            box-shadow: var(--card-shadow);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            width: 140px;
            text-align: center;
            color: var(--text-main);
        }

        .widget-popover img {
            width: 110px;
            height: 110px;
            margin-bottom: 5px;
        }

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

        /* 移动端适配 */
        @media (max-width: 992px) {
            .nav-menu {
                display: none;
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--white);
                flex-direction: column;
                padding: 20px;
                border-bottom: 1px solid rgba(225, 29, 72, 0.1);
                box-shadow: 0 10px 20px rgba(0,0,0,0.05);
            }

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

            .menu-toggle {
                display: flex;
            }

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

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid, .workflow-showcase, .training-grid, .help-grid, .contact-layout {
                grid-template-columns: 1fr;
            }

            .services-grid, .solutions-grid, .reviews-grid, .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .flow-timeline {
                grid-template-columns: repeat(2, 1fr);
            }

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

        @media (max-width: 576px) {
            .services-grid, .solutions-grid, .reviews-grid, .articles-grid, .flow-timeline {
                grid-template-columns: 1fr;
            }

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

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

            .hero-btns {
                flex-direction: column;
                padding: 0 20px;
            }
        }