:root {
      --rainbow-1: #ff4e50;
      --rainbow-2: #fc913a;
      --rainbow-3: #f9d423;
      --rainbow-4: #2ecc71;
      --rainbow-5: #1abc9c;
      --rainbow-6: #3498db;
      --rainbow-7: #9b59b6;
      --grad-rainbow: linear-gradient(135deg, #ff4e50 0%, #fc913a 20%, #f9d423 40%, #2ecc71 60%, #3498db 80%, #9b59b6 100%);
      --grad-rainbow-light: linear-gradient(135deg, rgba(255,78,80,0.08) 0%, rgba(252,145,58,0.08) 20%, rgba(249,212,35,0.08) 40%, rgba(46,204,113,0.08) 60%, rgba(52,152,219,0.08) 80%, rgba(155,89,182,0.08) 100%);
      --grad-rainbow-subtle: linear-gradient(180deg, #fbfcfe 0%, #f5f8ff 50%, #fbf9ff 100%);
      --primary: #3366ff;
      --primary-dark: #1f47c6;
      --accent: #ff4e50;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --text-light: #94a3b8;
      --bg-white: #ffffff;
      --bg-card: rgba(255, 255, 255, 0.92);
      --border-color: #e2e8f0;
      --border-rainbow: linear-gradient(90deg, #ff4e50, #f9d423, #2ecc71, #3498db, #9b59b6);
      --shadow-sm: 0 2px 8px rgba(30, 41, 59, 0.04);
      --shadow-md: 0 8px 24px rgba(30, 41, 59, 0.08);
      --shadow-lg: 0 16px 40px rgba(51, 102, 255, 0.12);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-full: 9999px;
      --container-width: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-tap-highlight-color: transparent;
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color: var(--text-main);
      background: var(--grad-rainbow-subtle);
      line-height: 1.6;
      overflow-x: hidden;
      min-width: 320px;
    }

    .container {
      width: 100%;
      max-width: var(--container-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .rainbow-top-bar {
      height: 3px;
      width: 100%;
      background: var(--grad-rainbow);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }
    .ai-page-logo {
      height: 40px;
      width: auto;
      display: block;
      object-fit: contain;
    }
    .brand-title {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .brand-tag {
      font-size: 0.7rem;
      padding: 2px 6px;
      background: var(--grad-rainbow);
      color: #fff;
      border-radius: 4px;
      font-weight: 600;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }
    .nav-item a {
      display: inline-block;
      padding: 8px 14px;
      color: var(--text-main);
      text-decoration: none;
      font-size: 0.92rem;
      font-weight: 500;
      transition: color 0.2s ease;
      white-space: nowrap;
    }
    .nav-item a:hover {
      color: var(--primary);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-nav-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 8px 18px;
      background: var(--grad-rainbow);
      color: #ffffff;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 12px rgba(51, 102, 255, 0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn-nav-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(51, 102, 255, 0.35);
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: 1px solid var(--border-color);
      border-radius: 6px;
      padding: 6px 10px;
      font-size: 1.2rem;
      cursor: pointer;
      color: var(--text-main);
    }

    /* 首屏 Hero 区域 (无图片) */
    .hero-section {
      position: relative;
      padding: 80px 0 60px 0;
      background: radial-gradient(circle at 10% 20%, rgba(255, 78, 80, 0.06) 0%, transparent 40%),
                  radial-gradient(circle at 90% 30%, rgba(52, 152, 219, 0.08) 0%, transparent 50%),
                  radial-gradient(circle at 50% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 40%),
                  #ffffff;
      border-bottom: 1px solid var(--border-color);
    }
    .hero-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: var(--grad-rainbow-light);
      border: 1px solid rgba(51, 102, 255, 0.2);
      border-radius: var(--radius-full);
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--primary);
      margin-bottom: 24px;
    }
    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: #2ecc71;
      border-radius: 50%;
      box-shadow: 0 0 8px #2ecc71;
    }
    .hero-title {
      font-size: 2.75rem;
      font-weight: 900;
      line-height: 1.25;
      color: var(--text-main);
      margin-bottom: 20px;
      letter-spacing: -1px;
      max-width: 900px;
    }
    .rainbow-text {
      background: var(--grad-rainbow);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 780px;
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .hero-cta-group {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      justify-content: center;
      margin-bottom: 48px;
    }
    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 36px;
      font-size: 1.05rem;
      font-weight: 700;
      color: #ffffff;
      background: var(--grad-rainbow);
      text-decoration: none;
      border-radius: var(--radius-full);
      box-shadow: 0 10px 25px rgba(255, 78, 80, 0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(51, 102, 255, 0.35);
    }
    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 14px 32px;
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--text-main);
      background: #ffffff;
      border: 1px solid var(--border-color);
      text-decoration: none;
      border-radius: var(--radius-full);
      box-shadow: var(--shadow-sm);
      transition: all 0.2s ease;
    }
    .btn-hero-secondary:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: #f8faff;
    }

    /* 首屏数据卡片 (纯CSS/无图) */
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      width: 100%;
      max-width: 1050px;
    }
    .hero-stat-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-top: 3px solid transparent;
      border-image: var(--border-rainbow) 1;
      padding: 20px 16px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: transform 0.2s ease;
    }
    .hero-stat-card:hover {
      transform: translateY(-4px);
    }
    .stat-number {
      font-size: 1.85rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 4px;
    }
    .stat-desc {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* 模块通用样式 */
    .section-padding {
      padding: 72px 0;
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }
    .section-tag {
      display: inline-block;
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 14px;
      background: var(--grad-rainbow-light);
      color: var(--primary);
      border-radius: var(--radius-full);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .section-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
    }

    /* 模型矩阵徽章云 */
    .model-tags-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      padding: 24px;
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .model-chip {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: var(--radius-full);
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-main);
      transition: all 0.2s ease;
    }
    .model-chip:hover {
      background: var(--grad-rainbow);
      color: #ffffff;
      border-color: transparent;
      transform: translateY(-2px);
    }

    /* 卡片通用网格 */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .feature-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 28px 24px;
      box-shadow: var(--shadow-sm);
      transition: all 0.25s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(51, 102, 255, 0.3);
    }
    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: var(--grad-rainbow-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 20px;
    }
    .card-title {
      font-size: 1.18rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 10px;
    }
    .card-desc {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
    }

    /* 宣传与素材图专用展示区 */
    .media-showcase-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 32px;
    }
    .media-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .media-img-box {
      width: 100%;
      background: #f1f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .media-img-box img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }
    .media-card-info {
      padding: 16px 20px;
    }
    .media-card-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 4px;
    }
    .media-card-sub {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* 流程步骤 */
    .process-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .process-step {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      text-align: center;
      position: relative;
    }
    .step-badge {
      width: 36px;
      height: 36px;
      background: var(--grad-rainbow);
      color: #fff;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px auto;
      font-size: 0.95rem;
    }
    .step-title {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .step-desc {
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    /* 对比评测表格与高分卡片 */
    .review-score-hero {
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 2px solid transparent;
      border-image: var(--border-rainbow) 1;
      padding: 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 32px;
      box-shadow: var(--shadow-md);
    }
    .score-left {
      flex: 1;
    }
    .score-badge {
      display: inline-block;
      background: #fff0f0;
      color: #ff4e50;
      padding: 4px 12px;
      border-radius: var(--radius-full);
      font-weight: 700;
      font-size: 0.85rem;
      margin-bottom: 12px;
    }
    .score-stars {
      color: #ffb703;
      font-size: 1.35rem;
      margin-bottom: 8px;
    }
    .score-big-title {
      font-size: 1.6rem;
      font-weight: 800;
      margin-bottom: 10px;
    }
    .score-right {
      text-align: center;
      min-width: 180px;
      padding: 20px;
      background: var(--grad-rainbow-light);
      border-radius: var(--radius-md);
    }
    .big-rating {
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1;
      color: var(--primary);
    }
    .rating-max {
      font-size: 1.1rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .custom-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.92rem;
    }
    .custom-table th, .custom-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
    }
    .custom-table th {
      background: #f8fafc;
      font-weight: 700;
      color: var(--text-main);
    }
    .custom-table tr:last-child td {
      border-bottom: none;
    }
    .highlight-col {
      background: rgba(51, 102, 255, 0.04);
      font-weight: 600;
      color: var(--primary);
    }

    /* 用户评论卡片 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }
    .review-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .avatar-placeholder {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--grad-rainbow);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1rem;
    }
    .reviewer-info h4 {
      font-size: 0.98rem;
      font-weight: 700;
      color: var(--text-main);
    }
    .reviewer-info p {
      font-size: 0.8rem;
      color: var(--text-muted);
    }
    .review-body {
      font-size: 0.88rem;
      color: var(--text-main);
      line-height: 1.6;
      flex-grow: 1;
    }
    .review-stars {
      color: #ffb703;
      margin-top: 12px;
      font-size: 0.9rem;
    }

    /* FAQ 折叠面板 */
    .faq-list {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }
    .faq-question {
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      font-size: 1.02rem;
      cursor: pointer;
      user-select: none;
      background: #ffffff;
      transition: background 0.2s ease;
    }
    .faq-question:hover {
      background: #f8fafc;
    }
    .faq-icon {
      font-size: 1.2rem;
      transition: transform 0.2s ease;
      color: var(--primary);
    }
    .faq-answer {
      padding: 0 22px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: #fafcff;
      color: var(--text-muted);
      font-size: 0.92rem;
      line-height: 1.7;
    }
    .faq-item.active .faq-answer {
      padding: 14px 22px 20px 22px;
      max-height: 300px;
      border-top: 1px solid var(--border-color);
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }

    /* 文章列表 */
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .article-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .article-tag {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      padding: 2px 8px;
      background: #f1f5f9;
      color: var(--primary);
      border-radius: 4px;
      margin-bottom: 10px;
      align-self: flex-start;
    }
    .article-title {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
    }
    .article-link {
      font-size: 0.88rem;
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    .article-link:hover {
      text-decoration: underline;
    }

    /* 需求匹配与联系表单 */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 36px;
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    .contact-info-col {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .qr-box {
      text-align: center;
      background: var(--grad-rainbow-light);
      padding: 20px;
      border-radius: var(--radius-md);
      margin-top: 20px;
    }
    .qr-box img {
      width: 140px;
      height: 140px;
      object-fit: cover;
      border-radius: 8px;
      margin-bottom: 8px;
      box-shadow: var(--shadow-sm);
    }
    .info-list {
      list-style: none;
      margin-top: 16px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      font-size: 0.92rem;
    }
    .info-list li {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .form-group {
      margin-bottom: 18px;
    }
    .form-label {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--text-main);
    }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      background: #f8fafc;
      color: var(--text-main);
      transition: all 0.2s ease;
      font-family: inherit;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus {
      outline: none;
      border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(51, 102, 255, 0.15);
    }
    .btn-submit {
      width: 100%;
      padding: 14px;
      background: var(--grad-rainbow);
      color: #ffffff;
      border: none;
      border-radius: var(--radius-sm);
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 14px rgba(51, 102, 255, 0.25);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }
    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(51, 102, 255, 0.35);
    }

    /* 友情链接与页脚 */
    .site-footer {
      background: #ffffff;
      border-top: 1px solid var(--border-color);
      padding: 48px 0 24px 0;
    }
    .footer-links-group {
      margin-bottom: 32px;
      padding-bottom: 24px;
      border-bottom: 1px solid #f1f5f9;
    }
    .footer-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
    }
    .friend-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
    }
    .friend-links-wrap a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s ease;
    }
    .friend-links-wrap a:hover {
      color: var(--primary);
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.85rem;
      color: var(--text-muted);
      flex-wrap: wrap;
      gap: 12px;
    }

    /* 悬浮客服与返回顶部 */
    .floating-widget {
      position: fixed;
      right: 20px;
      bottom: 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      text-decoration: none;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 1.1rem;
    }
    .float-btn:hover {
      background: var(--grad-rainbow);
      color: #ffffff;
      border-color: transparent;
      transform: scale(1.08);
    }

    /* 响应式调整 */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.1rem;
      }
      .grid-4, .hero-stats-grid, .process-timeline {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3, .reviews-grid, .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-wrapper {
        grid-template-columns: 1fr;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
        padding: 12px 0;
      }
      .nav-links.active {
        display: flex;
      }
      .nav-item a {
        padding: 12px 24px;
        border-bottom: 1px solid #f8fafc;
      }
      .mobile-menu-btn {
        display: block;
      }
    }

    @media (max-width: 640px) {
      .hero-title {
        font-size: 1.65rem;
      }
      .grid-2, .grid-3, .grid-4, .hero-stats-grid, .process-timeline, .reviews-grid, .articles-grid, .media-showcase-grid {
        grid-template-columns: 1fr;
      }
      .review-score-hero {
        flex-direction: column;
        text-align: center;
        padding: 24px;
      }
      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
      }
    }