/* 基础重置与全局变量 (霓虹亮彩风 - 浅色底基) */
    :root {
      --bg-main: #f8fafc;
      --bg-card: #ffffff;
      --bg-alt: #f1f5f9;
      --text-main: #0f172a;
      --text-muted: #475569;
      --text-sub: #64748b;
      --primary: #4f46e5;
      --primary-neon: #06b6d4;
      --accent-pink: #ec4899;
      --accent-purple: #8b5cf6;
      --neon-glow: 0 0 20px rgba(6, 182, 212, 0.25), 0 0 40px rgba(139, 92, 246, 0.15);
      --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
      --card-hover-shadow: 0 20px 30px -10px rgba(79, 70, 229, 0.18), 0 0 15px rgba(6, 182, 212, 0.2);
      --border-color: rgba(226, 232, 240, 0.8);
      --border-neon: rgba(139, 92, 246, 0.4);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-pill: 9999px;
      --max-width: 1240px;
    }

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

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-main);
      line-height: 1.6;
      background-image: 
        radial-gradient(at 0% 0%, rgba(6, 182, 212, 0.08) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(236, 72, 153, 0.08) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(139, 92, 246, 0.05) 0px, transparent 50%);
      background-attachment: fixed;
      overflow-x: hidden;
    }

    /* 容器居中系统 */
    .container {
      width: 100%;
      max-width: var(--max-width);
      margin-left: auto;
      margin-right: auto;
      padding-left: 24px;
      padding-right: 24px;
    }

    /* 顶部导航 */
    .header-nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

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

    .brand-logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text-main);
    }

    .ai-page-logo {
      height: 42px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    .brand-title-wrap {
      display: flex;
      flex-direction: column;
    }

    .brand-name {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #1e1b4b, #4f46e5 50%, #06b6d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .brand-tag {
      font-size: 0.72rem;
      color: var(--text-sub);
      letter-spacing: 0.5px;
    }

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

    .nav-links li a {
      display: inline-block;
      padding: 8px 14px;
      font-size: 0.95rem;
      font-weight: 500;
      color: var(--text-main);
      text-decoration: none;
      border-radius: var(--radius-sm);
      transition: all 0.25s ease;
    }

    .nav-links li a:hover {
      color: var(--primary);
      background: rgba(79, 70, 229, 0.06);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      text-decoration: none;
      padding: 10px 22px;
      border-radius: var(--radius-pill);
      font-size: 0.95rem;
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      border: 1px solid transparent;
      text-align: center;
      line-height: 1.2;
    }

    .btn-neon {
      background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35), 0 0 10px rgba(6, 182, 212, 0.2);
    }

    .btn-neon:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(79, 70, 229, 0.45), 0 0 20px rgba(6, 182, 212, 0.4);
      color: #ffffff;
    }

    .btn-outline {
      background: #ffffff;
      color: var(--primary);
      border-color: rgba(79, 70, 229, 0.3);
    }

    .btn-outline:hover {
      background: rgba(79, 70, 229, 0.05);
      border-color: var(--primary);
      transform: translateY(-2px);
    }

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

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

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

    .neon-pill {
      display: inline-block;
      padding: 4px 16px;
      background: rgba(6, 182, 212, 0.1);
      border: 1px solid rgba(6, 182, 212, 0.3);
      color: #0284c7;
      font-size: 0.82rem;
      font-weight: 700;
      border-radius: var(--radius-pill);
      margin-bottom: 14px;
      letter-spacing: 1px;
      text-transform: uppercase;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 14px;
      line-height: 1.3;
    }

    .section-subtitle {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 首屏 HERO 区域 (严格不使用图片，纯 CSS 几何与霓虹科技感) */
    .hero-section {
      padding: 100px 0 80px 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(241, 245, 249, 0.6) 100%);
      position: relative;
      overflow: hidden;
    }

    .hero-glow-1 {
      position: absolute;
      top: -10%;
      left: 10%;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
      pointer-events: none;
      filter: blur(40px);
    }

    .hero-glow-2 {
      position: absolute;
      bottom: -10%;
      right: 10%;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(236, 72, 153, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
      pointer-events: none;
      filter: blur(50px);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 960px;
      margin: 0 auto;
    }

    .hero-h1 {
      font-size: 2.8rem;
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 24px;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }

    .hero-desc {
      font-size: 1.2rem;
      color: var(--text-muted);
      margin-bottom: 36px;
      line-height: 1.7;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero-btn-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }

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

    .stat-card {
      background: #ffffff;
      padding: 24px 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      transition: all 0.3s ease;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #4f46e5, #06b6d4, #ec4899);
      opacity: 0.8;
    }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--card-hover-shadow);
      border-color: var(--border-neon);
    }

    .stat-num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 6px;
      display: block;
    }

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

    /* 平台矩阵标签云 */
    .models-badge-wall {
      background: #ffffff;
      border: 1px dashed rgba(139, 92, 246, 0.4);
      padding: 20px 24px;
      border-radius: var(--radius-md);
      margin-top: 36px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    }

    .models-badge-wall-title {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .models-tags-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }

    .model-tag {
      font-size: 0.8rem;
      padding: 4px 10px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: var(--radius-sm);
      color: var(--text-main);
      font-weight: 600;
      transition: all 0.2s ease;
    }

    .model-tag:hover {
      background: #4f46e5;
      color: #ffffff;
      border-color: #4f46e5;
      transform: translateY(-1px);
    }

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

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

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

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: var(--card-shadow);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--card-hover-shadow);
      border-color: rgba(6, 182, 212, 0.5);
    }

    .card-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.1));
      border: 1px solid rgba(79, 70, 229, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 20px;
      color: var(--primary);
    }

    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-main);
    }

    .card-text {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
    }

    /* 图片与宣传区域 */
    .banner-gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 36px;
    }

    .media-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      transition: all 0.3s ease;
    }

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

    .media-card .img-wrap {
      width: 100%;
      position: relative;
      background: #f1f5f9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .media-card img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

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

    /* 评测与对比模块 */
    .rating-highlight-box {
      background: linear-gradient(135deg, #ffffff 0%, #f5f3ff 100%);
      border: 2px solid var(--accent-purple);
      border-radius: var(--radius-lg);
      padding: 36px;
      margin-bottom: 36px;
      box-shadow: var(--neon-glow);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .rating-score-box {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .score-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4f46e5, #ec4899);
      color: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
    }

    .score-circle .big-num {
      font-size: 1.8rem;
      line-height: 1;
    }

    .score-circle .sub-text {
      font-size: 0.72rem;
      opacity: 0.9;
    }

    .rating-info h3 {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    .stars-icon {
      color: #f59e0b;
      font-size: 1.2rem;
      letter-spacing: 2px;
    }

    .compare-table-wrap {
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      overflow-x: auto;
      box-shadow: var(--card-shadow);
    }

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

    .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: var(--text-main);
      font-size: 0.95rem;
    }

    .compare-table td {
      font-size: 0.92rem;
      color: var(--text-muted);
    }

    .compare-table tr:hover td {
      background: #faf5ff;
    }

    .badge-win {
      display: inline-block;
      padding: 4px 10px;
      background: rgba(16, 185, 129, 0.1);
      color: #059669;
      font-weight: 700;
      border-radius: var(--radius-sm);
      font-size: 0.8rem;
    }

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

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

    .step-number {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, #4f46e5, #06b6d4);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      margin-bottom: 16px;
    }

    .step-title {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-main);
    }

    /* 客户评价板块 */
    .testimonial-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .avatar-placeholder {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, #e0e7ff, #fce7f3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--primary);
    }

    .user-meta .user-name {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .user-meta .user-role {
      font-size: 0.8rem;
      color: var(--text-sub);
    }

    .testimonial-text {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* FAQ 折叠面板 */
    .faq-container {
      max-width: 860px;
      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(--card-shadow);
      transition: all 0.25s ease;
    }

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

    .faq-question {
      padding: 18px 24px;
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }

    .faq-question:hover {
      color: var(--primary);
      background: #f8fafc;
    }

    .faq-icon {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
      color: var(--text-sub);
    }

    .faq-item.active .faq-icon {
      transform: rotate(180deg);
      color: var(--primary);
    }

    .faq-answer {
      padding: 0 24px;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .faq-item.active .faq-answer {
      padding: 0 24px 20px 24px;
      max-height: 300px;
    }

    /* 表单与需求匹配 */
    .form-wrapper {
      background: #ffffff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-neon);
      padding: 40px;
      box-shadow: var(--card-hover-shadow);
      max-width: 820px;
      margin: 0 auto;
    }

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

    .form-group-full {
      grid-column: span 2;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .form-group label {
      font-size: 0.92rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      border: 1px solid #cbd5e1;
      font-size: 0.95rem;
      color: var(--text-main);
      background: #f8fafc;
      transition: all 0.25s ease;
      font-family: inherit;
    }

    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    }

    /* 资讯列表 */
    .article-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: center;
      margin-top: 24px;
    }

    .article-item-link {
      display: inline-block;
      padding: 8px 18px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-pill);
      font-size: 0.9rem;
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .article-item-link:hover {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    /* 联系与客服二维码 */
    .contact-card-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
    }

    .contact-details-box {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 32px;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
    }

    .contact-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 20px;
    }

    .contact-item:last-child {
      margin-bottom: 0;
    }

    .contact-icon-badge {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(79, 70, 229, 0.1);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .qr-showcase-box {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 32px;
      border: 1px solid var(--border-neon);
      text-align: center;
      box-shadow: var(--card-shadow);
    }

    .qr-img-wrap {
      width: 180px;
      height: 180px;
      margin: 0 auto 16px auto;
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1px solid #e2e8f0;
      padding: 6px;
      background: #ffffff;
    }

    .qr-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    /* 友情链接与页脚 */
    .friendly-links-section {
      padding: 36px 0;
      background: #ffffff;
      border-top: 1px solid var(--border-color);
      border-bottom: 1px solid var(--border-color);
    }

    .links-title {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 14px;
      text-align: center;
    }

    .friendly-links-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }

    .friendly-links-grid a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.88rem;
      transition: color 0.2s ease;
    }

    .friendly-links-grid a:hover {
      color: var(--primary);
      text-decoration: underline;
    }

    footer {
      background: #ffffff;
      padding: 40px 0 30px 0;
      color: var(--text-sub);
      font-size: 0.88rem;
    }

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

    .footer-brand {
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--text-main);
    }

    /* 浮动客服与返回顶部 */
    .floating-tools {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      text-decoration: none;
      font-weight: 700;
      font-size: 1.1rem;
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .float-btn:hover {
      background: var(--primary);
      color: #ffffff;
      transform: translateY(-3px);
      box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3);
    }

    /* 响应式媒体查询 */
    @media (max-width: 992px) {
      .hero-h1 {
        font-size: 2.2rem;
      }
      .grid-4, .steps-grid, .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }
      .banner-gallery-grid, .contact-card-grid {
        grid-template-columns: 1fr;
      }
      .form-grid {
        grid-template-columns: 1fr;
      }
      .form-group-full {
        grid-column: span 1;
      }
    }

    @media (max-width: 768px) {
      .mobile-menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li a {
        width: 100%;
        padding: 10px;
      }
      .hero-h1 {
        font-size: 1.85rem;
      }
      .hero-desc {
        font-size: 1rem;
      }
      .grid-2, .grid-3, .grid-4, .steps-grid, .hero-stats-grid {
        grid-template-columns: 1fr;
      }
      .rating-highlight-box {
        flex-direction: column;
        text-align: center;
      }
      .rating-score-box {
        flex-direction: column;
      }
    }