:root {
      --primary: #4f46e5;
      --primary-light: #818cf8;
      --secondary: #06b6d4;
      --accent: #ec4899;
      --holo-start: #6366f1;
      --holo-mid: #a855f7;
      --holo-end: #06b6d4;
      --text-main: #1e293b;
      --text-muted: #475569;
      --text-light: #64748b;
      --bg-page: #f8fafc;
      --bg-card: rgba(255, 255, 255, 0.85);
      --bg-card-solid: #ffffff;
      --border-color: rgba(226, 232, 240, 0.8);
      --border-holo: rgba(168, 85, 247, 0.25);
      --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 10px 15px -3px rgba(79, 70, 229, 0.08), 0 4px 6px -4px rgba(79, 70, 229, 0.04);
      --shadow-holo: 0 10px 25px -5px rgba(99, 102, 241, 0.15);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-full: 9999px;
      --container-width: 1200px;
    }

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

    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-page);
      color: var(--text-main);
      line-height: 1.6;
    }

    body {
      background: radial-gradient(circle at 10% 10%, rgba(99, 102, 241, 0.06) 0%, transparent 40%),
                  radial-gradient(circle at 90% 20%, rgba(236, 72, 153, 0.06) 0%, transparent 40%),
                  radial-gradient(circle at 50% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
                  #f8fafc;
      min-height: 100vh;
      overflow-x: hidden;
    }

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

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      transition: all 0.3s ease;
    }

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

    .brand-box {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-box img.ai-page-logo {
      height: 38px;
      width: auto;
      display: block;
    }

    .brand-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .brand-badge {
      font-size: 11px;
      font-weight: 600;
      padding: 2px 8px;
      background: linear-gradient(135deg, var(--holo-start), var(--holo-mid));
      color: #ffffff;
      border-radius: var(--radius-full);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }

    .nav-links li a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }

    .nav-links li a:hover {
      color: var(--primary);
      background: rgba(99, 102, 241, 0.05);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 600;
      border-radius: var(--radius-full);
      text-decoration: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      border: none;
      outline: none;
    }

    .btn-holo {
      background: linear-gradient(135deg, var(--holo-start), var(--holo-mid), var(--holo-end));
      background-size: 200% auto;
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(99, 102, 241, 0.3);
    }

    .btn-holo:hover {
      background-position: right center;
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
      color: #ffffff;
    }

    .btn-outline {
      background: #ffffff;
      color: var(--primary);
      border: 1px solid rgba(99, 102, 241, 0.3);
    }

    .btn-outline:hover {
      background: rgba(99, 102, 241, 0.04);
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    .btn-large {
      padding: 14px 32px;
      font-size: 16px;
    }

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

    /* 镭射光效装饰 */
    .holo-glow {
      position: relative;
    }

    .holo-glow::before {
      content: "";
      position: absolute;
      inset: -1px;
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.4), rgba(236, 72, 153, 0.4), rgba(6, 182, 212, 0.4));
      border-radius: inherit;
      z-index: -1;
      opacity: 0.6;
      transition: opacity 0.3s;
    }

    .holo-glow:hover::before {
      opacity: 1;
    }

    /* 首屏 Hero */
    .hero-section {
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
    }

    .hero-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.8);
      border: 1px solid var(--border-holo);
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      margin-bottom: 24px;
      box-shadow: 0 2px 10px rgba(99, 102, 241, 0.08);
    }

    .hero-title {
      font-size: 46px;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -1px;
      color: #0f172a;
    }

    .holo-text-gradient {
      background: linear-gradient(135deg, #4f46e5 10%, #9333ea 50%, #06b6d4 90%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 780px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 50px;
    }

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

    .stat-card {
      background: var(--bg-card);
      backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: var(--radius-md);
      padding: 24px 16px;
      text-align: center;
      box-shadow: var(--shadow-md);
      transition: transform 0.3s ease;
    }

    .stat-card:hover {
      transform: translateY(-4px);
    }

    .stat-value {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
      letter-spacing: -0.5px;
    }

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

    /* 通用模块样式 */
    .section-wrap {
      padding: 80px 0;
      position: relative;
    }

    .section-alt {
      background: rgba(241, 245, 249, 0.5);
      border-top: 1px solid rgba(226, 232, 240, 0.6);
      border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    }

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

    .section-badge {
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--primary);
      background: rgba(99, 102, 241, 0.1);
      padding: 4px 12px;
      border-radius: var(--radius-full);
      display: inline-block;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

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

    /* 平台介绍 */
    .platform-intro-box {
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.85));
      border: 1px solid var(--border-holo);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-holo);
      margin-bottom: 40px;
    }

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

    .intro-item {
      background: #ffffff;
      padding: 24px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

    .intro-item h3 {
      font-size: 17px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .intro-item p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 模型矩阵徽章墙 */
    .models-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 30px;
    }

    .model-chip {
      padding: 8px 16px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-main);
      box-shadow: var(--shadow-sm);
      transition: all 0.2s;
    }

    .model-chip:hover {
      border-color: var(--holo-mid);
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* 服务与能力网格 */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-holo);
      border-color: rgba(99, 102, 241, 0.4);
    }

    .service-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-md);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.1));
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      color: var(--primary);
      font-size: 20px;
      font-weight: bold;
    }

    .service-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
      margin-bottom: 16px;
    }

    .service-card-tag {
      font-size: 12px;
      color: var(--primary);
      font-weight: 600;
    }

    /* 流程步骤 */
    .flow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .step-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .step-num {
      font-size: 12px;
      font-weight: 800;
      color: var(--holo-mid);
      margin-bottom: 8px;
      text-transform: uppercase;
    }

    .step-card h3 {
      font-size: 16px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 案例图片展示区 */
    .media-showcase-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 24px;
      margin-bottom: 40px;
    }

    .showcase-item {
      background: #ffffff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
    }

    .showcase-item img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.4s ease;
    }

    .showcase-item:hover img {
      transform: scale(1.02);
    }

    .showcase-caption {
      padding: 16px 20px;
      background: #ffffff;
    }

    .showcase-caption h4 {
      font-size: 15px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 4px;
    }

    .showcase-caption p {
      font-size: 12px;
      color: var(--text-light);
    }

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

    .banner-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

    .banner-card img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* 对比评测模块 */
    .eval-highlight-box {
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(236, 72, 153, 0.08));
      border: 1px solid var(--border-holo);
      border-radius: var(--radius-lg);
      padding: 30px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .eval-score-wrap {
      display: flex;
      align-items: center;
      gap: 20px;
    }

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

    .eval-stars {
      color: #f59e0b;
      font-size: 20px;
      margin-bottom: 4px;
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 14px;
    }

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

    .compare-table th {
      background: #f8fafc;
      font-weight: 700;
      color: #0f172a;
    }

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

    .highlight-col {
      background: rgba(99, 102, 241, 0.03);
      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-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .review-user {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f1f5f9;
      padding-top: 14px;
    }

    .review-avatar {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-full);
      background: linear-gradient(135deg, var(--holo-start), var(--holo-end));
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
    }

    .review-meta h4 {
      font-size: 14px;
      font-weight: 700;
      color: #0f172a;
    }

    .review-meta span {
      font-size: 12px;
      color: var(--text-light);
    }

    /* 常见问题折叠面板 */
    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: border-color 0.2s;
    }

    .faq-item.active {
      border-color: var(--holo-mid);
    }

    .faq-question {
      padding: 18px 24px;
      font-weight: 700;
      font-size: 15px;
      color: #0f172a;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }

    .faq-icon {
      font-size: 18px;
      color: var(--primary);
      transition: transform 0.3s ease;
    }

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

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
      padding: 0 24px;
      background: #fafafa;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 0 24px 18px;
      transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
    }

    .faq-answer p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 表单与联系模块 */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .form-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-md);
    }

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

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

    .form-control {
      width: 100%;
      padding: 12px 16px;
      font-size: 14px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      background: #f8fafc;
      color: var(--text-main);
      outline: none;
      transition: all 0.2s;
    }

    .form-control:focus {
      background: #ffffff;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
    }

    textarea.form-control {
      min-height: 110px;
      resize: vertical;
    }

    .contact-info-card {
      background: linear-gradient(145deg, #ffffff, #f8fafc);
      border: 1px solid var(--border-holo);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-holo);
    }

    .contact-info-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 16px;
      color: #0f172a;
    }

    .contact-detail-list {
      list-style: none;
      margin-bottom: 24px;
    }

    .contact-detail-list li {
      margin-bottom: 12px;
      font-size: 14px;
      color: var(--text-muted);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-qr-wrap {
      background: #ffffff;
      padding: 16px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      display: inline-block;
      text-align: center;
    }

    .contact-qr-wrap img {
      width: 140px;
      height: 140px;
      display: block;
      margin-bottom: 8px;
    }

    .contact-qr-wrap span {
      font-size: 12px;
      color: var(--text-light);
      font-weight: 600;
    }

    /* 资讯与友情链接 */
    .article-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 16px;
      margin-top: 20px;
    }

    .article-card-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 16px;
      text-decoration: none;
      display: block;
      transition: all 0.2s;
    }

    .article-card-item:hover {
      border-color: var(--primary);
      transform: translateY(-2px);
      box-shadow: var(--shadow-sm);
    }

    .article-card-item h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 4px;
    }

    .article-card-item span {
      font-size: 12px;
      color: var(--primary);
      word-break: break-all;
    }

    /* 页脚 */
    .site-footer {
      background: #ffffff;
      border-top: 1px solid var(--border-color);
      padding: 50px 0 30px;
      color: var(--text-muted);
      font-size: 13px;
    }

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

    .footer-brand p {
      margin-top: 12px;
      max-width: 320px;
      line-height: 1.6;
      font-size: 13px;
      color: var(--text-light);
    }

    .footer-links-col h4 {
      font-size: 14px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 14px;
    }

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

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

    .footer-links-col a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }

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

    .friend-links-box {
      border-top: 1px solid #f1f5f9;
      padding-top: 24px;
      margin-bottom: 24px;
    }

    .friend-links-box span {
      font-weight: 700;
      color: #0f172a;
      margin-right: 12px;
    }

    .friend-links-box a {
      color: var(--text-muted);
      text-decoration: none;
      margin-right: 16px;
      display: inline-block;
      margin-bottom: 8px;
    }

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

    .footer-bottom {
      border-top: 1px solid #f1f5f9;
      padding-top: 20px;
      text-align: center;
      color: var(--text-light);
      font-size: 12px;
    }

    /* 浮动组件 */
    .floating-actions {
      position: fixed;
      right: 20px;
      bottom: 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 99;
    }

    .float-btn {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-full);
      background: #ffffff;
      border: 1px solid var(--border-holo);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--primary);
      text-decoration: none;
      font-size: 18px;
      transition: all 0.2s;
    }

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

    /* 响应式断点 */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 36px;
      }
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .intro-grid, .service-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .flow-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .media-showcase-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        border-bottom: 1px solid var(--border-color);
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li {
        width: 100%;
        text-align: center;
      }
      .nav-links li a {
        display: block;
        padding: 10px 0;
      }
      .mobile-menu-toggle {
        display: block;
      }
      .hero-title {
        font-size: 28px;
      }
      .hero-subtitle {
        font-size: 15px;
      }
      .intro-grid, .service-grid, .reviews-grid, .flow-steps, .banner-tri-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .eval-highlight-box {
        flex-direction: column;
        text-align: center;
      }
      .eval-score-wrap {
        flex-direction: column;
      }
    }