:root {
            --primary: #3b82f6;
            --primary-hover: #2563eb;
            --primary-light: #eff6ff;
            --secondary: #8b5cf6;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-light: #ffffff;
            --bg-soft: #f8fafc;
            --bg-border: #e2e8f0;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        html {
            scroll-behavior: smooth;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            color: var(--text-dark);
            background-color: var(--bg-soft);
        }

        body {
            line-height: 1.6;
            overflow-x: hidden;
        }

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

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

        section {
            padding: 80px 0;
            position: relative;
        }

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

        .section-tag {
            display: inline-block;
            padding: 6px 16px;
            background: var(--primary-light);
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            border-radius: 30px;
            margin-bottom: 12px;
        }

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

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

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 12px 28px;
            font-size: 16px;
            font-weight: 600;
            border-radius: var(--radius-sm);
            cursor: pointer;
            transition: var(--transition);
            border: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
        }

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

        .btn-outline:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }

        /* Navigation */
        header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid var(--bg-border);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.01);
        }

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

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

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

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

        .nav-link {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 8px 4px;
        }

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

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

        .menu-toggle {
            display: none;
            flex-direction: column;
            gap: 6px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 4px;
        }

        .menu-toggle span {
            display: block;
            width: 24px;
            height: 2px;
            background: var(--text-dark);
            transition: var(--transition);
        }

        /* Hero Section (No Images allowed) */
        .hero-section {
            background: radial-gradient(circle at 90% 10%, rgba(139, 92, 246, 0.08), transparent 40%),
                        radial-gradient(circle at 10% 90%, rgba(59, 130, 246, 0.08), transparent 40%),
                        var(--bg-light);
            text-align: center;
            padding: 120px 0 100px;
            border-bottom: 1px solid var(--bg-border);
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: var(--primary-light);
            color: var(--primary);
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: 48px;
            line-height: 1.25;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .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);
            margin-bottom: 40px;
            line-height: 1.8;
        }

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

        /* Data Cards (Hero Bottom) */
        .hero-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 40px;
        }

        .stat-card {
            background: white;
            padding: 24px;
            border-radius: var(--radius-md);
            border: 1px solid var(--bg-border);
            text-align: left;
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow);
            border-color: rgba(59, 130, 246, 0.2);
        }

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

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

        /* About Us */
        .about-section {
            background: var(--bg-light);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 60px;
            align-items: center;
        }

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

        .about-text p {
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .about-images {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-images img {
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
            width: 100%;
            object-fit: cover;
        }

        /* AIGC Services Grid */
        .services-section {
            background: var(--bg-soft);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: white;
            padding: 32px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--bg-border);
            transition: var(--transition);
        }

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

        .service-icon {
            width: 50px;
            height: 50px;
            border-radius: var(--radius-sm);
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
        }

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

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

        /* One-stop Platform Integration */
        .platform-section {
            background: var(--bg-light);
            text-align: center;
        }

        .platform-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            max-width: 900px;
            margin: 0 auto;
        }

        .platform-tag {
            padding: 8px 16px;
            background: var(--bg-soft);
            border: 1px solid var(--bg-border);
            border-radius: 30px;
            font-size: 14px;
            color: var(--text-dark);
            font-weight: 500;
            transition: var(--transition);
        }

        .platform-tag:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
        }

        /* Solutions */
        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .solution-card {
            background: white;
            border: 1px solid var(--bg-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .solution-body {
            padding: 32px;
        }

        .solution-body h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .solution-body p {
            color: var(--text-muted);
            margin-bottom: 20px;
        }

        .solution-image-box {
            padding: 0 32px 32px;
            margin-top: auto;
        }

        .solution-image-box img {
            border-radius: var(--radius-sm);
            width: 100%;
            height: auto;
            border: 1px solid var(--bg-border);
        }

        /* Service Network & Timeline */
        .network-section {
            background: var(--bg-light);
        }

        .network-timeline {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            padding-left: 32px;
        }

        .network-timeline::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--bg-border);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -32px;
            top: 6px;
            width: 18px;
            height: 18px;
            border-radius: 50%;
            background: white;
            border: 4px solid var(--primary);
        }

        .timeline-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .timeline-desc {
            color: var(--text-muted);
        }

        /* Standardized Process */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
        }

        .process-card {
            background: white;
            border: 1px solid var(--bg-border);
            padding: 24px;
            border-radius: var(--radius-md);
            text-align: center;
            position: relative;
        }

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

        .process-card h4 {
            font-size: 16px;
            margin-bottom: 8px;
        }

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

        /* Case Studies */
        .cases-section {
            background: var(--bg-light);
        }

        .cases-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

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

        .case-img-box {
            height: 280px;
            overflow: hidden;
            position: relative;
        }

        .case-img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .case-content {
            padding: 24px;
        }

        .case-tag {
            display: inline-block;
            padding: 4px 10px;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 12px;
            border-radius: 4px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .case-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
        }

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

        /* Comparison Board */
        .comparison-section {
            background: var(--bg-soft);
        }

        .comparison-summary {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            margin-bottom: 40px;
            background: white;
            padding: 30px;
            border-radius: var(--radius-lg);
            border: 1px solid var(--bg-border);
        }

        .rating-box {
            text-align: center;
        }

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

        .rating-stars {
            color: #f59e0b;
            font-size: 24px;
            margin-top: 4px;
        }

        .comparison-table-wrapper {
            overflow-x: auto;
            background: white;
            border-radius: var(--radius-lg);
            border: 1px solid var(--bg-border);
        }

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

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

        .comparison-table th {
            background: var(--bg-soft);
            font-weight: 700;
        }

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

        .highlight-col {
            background: rgba(59, 130, 246, 0.02);
            font-weight: 600;
            color: var(--primary);
        }

        /* Token Price Reference */
        .token-section {
            background: var(--bg-light);
        }

        .token-table-wrapper {
            overflow-x: auto;
            background: white;
            border-radius: var(--radius-lg);
            border: 1px solid var(--bg-border);
            box-shadow: var(--shadow);
        }

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

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

        .token-table th {
            background: var(--bg-soft);
            color: var(--text-dark);
            font-weight: 600;
        }

        .badge-discount {
            background: #10b981;
            color: white;
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 4px;
            margin-left: 8px;
        }

        /* Training Sections */
        .training-section {
            background: var(--bg-soft);
        }

        .training-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .training-card {
            background: white;
            border: 1px solid var(--bg-border);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: var(--transition);
        }

        .training-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow);
            border-color: var(--secondary);
        }

        .training-card h3 {
            font-size: 20px;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .training-list {
            list-style: none;
            margin-top: 16px;
        }

        .training-list li {
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-muted);
            border-bottom: 1px dashed var(--bg-border);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .training-list li::before {
            content: '✓';
            color: #10b981;
            font-weight: bold;
        }

        .official-badge {
            background: #ef4444;
            color: white;
            font-size: 11px;
            padding: 2px 6px;
            border-radius: 4px;
        }

        /* Agent & Franchise */
        .agent-section {
            background: linear-gradient(135deg, #1e1b4b, #311042);
            color: white;
        }

        .agent-section .section-title {
            color: white;
        }

        .agent-section .section-desc {
            color: #cbd5e1;
        }

        .agent-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            margin-top: 40px;
        }

        .agent-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--radius-lg);
            padding: 32px;
            transition: var(--transition);
        }

        .agent-card:hover {
            background: rgba(255, 255, 255, 0.08);
            transform: translateY(-4px);
        }

        .agent-card h3 {
            font-size: 20px;
            margin-bottom: 12px;
            color: #f472b6;
        }

        .agent-card p {
            color: #94a3b8;
            font-size: 14px;
        }

        /* FAQ Section */
        .faq-section {
            background: var(--bg-light);
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid var(--bg-border);
            padding: 16px 0;
        }

        .faq-trigger {
            width: 100%;
            background: none;
            border: none;
            text-align: left;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-dark);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
        }

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

        .faq-item.active .faq-trigger::after {
            transform: rotate(45deg);
        }

        .faq-panel {
            max-height: 0;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-panel p {
            padding: 8px 0 16px;
            color: var(--text-muted);
            font-size: 15px;
            line-height: 1.7;
        }

        /* AI Glossary */
        .glossary-section {
            background: var(--bg-soft);
        }

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

        .glossary-card {
            background: white;
            border: 1px solid var(--bg-border);
            padding: 24px;
            border-radius: var(--radius-md);
        }

        .glossary-card h4 {
            font-size: 16px;
            color: var(--primary);
            margin-bottom: 8px;
        }

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

        /* News & Knowledge base */
        .news-section {
            background: var(--bg-light);
        }

        .news-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .news-card {
            background: var(--bg-soft);
            border: 1px solid var(--bg-border);
            border-radius: var(--radius-md);
            padding: 24px;
            transition: var(--transition);
        }

        .news-card:hover {
            transform: translateY(-4px);
            border-color: var(--primary);
        }

        .news-card h3 {
            font-size: 18px;
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .news-link {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
            margin-top: 16px;
        }

        /* Customer Reviews */
        .reviews-section {
            background: var(--bg-soft);
        }

        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .review-card {
            background: white;
            border: 1px solid var(--bg-border);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow);
        }

        .review-body {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
            font-style: italic;
            line-height: 1.7;
        }

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

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

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

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

        /* Lead Gen Form Section */
        .contact-section {
            background: var(--bg-light);
        }

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

        .contact-info-panel h3 {
            font-size: 24px;
            margin-bottom: 24px;
        }

        .contact-info-list {
            list-style: none;
            margin-bottom: 32px;
        }

        .contact-info-list li {
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            color: var(--text-muted);
        }

        .qr-box {
            background: var(--bg-soft);
            padding: 24px;
            border-radius: var(--radius-md);
            border: 1px solid var(--bg-border);
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
        }

        .qr-box img {
            width: 140px;
            height: 140px;
            border-radius: var(--radius-sm);
        }

        .qr-box span {
            font-size: 13px;
            font-weight: 600;
            color: var(--text-dark);
        }

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

        .form-box h3 {
            font-size: 22px;
            margin-bottom: 24px;
        }

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

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

        .form-input, .form-select, .form-textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid var(--bg-border);
            border-radius: var(--radius-sm);
            font-size: 14px;
            background: white;
            transition: var(--transition);
        }

        .form-input:focus, .form-select:focus, .form-textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
        }

        /* Floating Contact Box */
        .floating-box {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .float-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: white;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: 1px solid var(--bg-border);
            position: relative;
        }

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

        .qr-popover {
            position: absolute;
            right: 60px;
            bottom: 0;
            background: white;
            border: 1px solid var(--bg-border);
            padding: 16px;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
            display: none;
            flex-direction: column;
            align-items: center;
            width: 150px;
        }

        .qr-popover img {
            width: 120px;
            height: 120px;
            margin-bottom: 8px;
        }

        .qr-popover span {
            font-size: 12px;
            color: var(--text-dark);
            white-space: nowrap;
        }

        .float-btn:hover .qr-popover {
            display: flex;
        }

        /* Footer */
        footer {
            background: #0f172a;
            color: #94a3b8;
            padding: 60px 0 30px;
            border-top: 1px solid #1e293b;
        }

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

        .footer-brand p {
            margin-top: 16px;
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-links h4 {
            color: white;
            font-size: 16px;
            margin-bottom: 20px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            font-size: 14px;
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #1e293b;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
        }

        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }

        .friend-links a {
            color: #64748b;
            margin-right: 8px;
        }

        .friend-links a:hover {
            color: #94a3b8;
        }

        /* Responsive Layouts */
        @media (max-width: 1024px) {
            .hero-stats {
                grid-template-columns: repeat(2, 1fr);
            }
            .services-grid, .training-grid, .agent-grid, .reviews-grid, .news-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .process-grid {
                grid-template-columns: repeat(3, 1fr);
            }
            .footer-grid {
                grid-template-columns: 1.5fr 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-menu {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 70px;
                left: 0;
                right: 0;
                background: white;
                border-bottom: 1px solid var(--bg-border);
                padding: 20px;
                gap: 15px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.05);
            }

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

            .menu-toggle {
                display: flex;
            }

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

            .about-grid, .contact-grid, .solutions-grid, .cases-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .services-grid, .training-grid, .agent-grid, .reviews-grid, .news-grid, .glossary-grid {
                grid-template-columns: 1fr;
            }

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

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

            .footer-bottom {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .hero-stats {
                grid-template-columns: 1fr;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .hero-btn-group {
                flex-direction: column;
            }
        }