:root {
      --primary: #00b050;
      --primary-dark: #00873d;
      --primary-light: #e8f8ee;
      --accent: #10d876;
      --accent-glow: rgba(16, 216, 118, 0.25);
      --dark: #122117;
      --text: #2d3e33;
      --text-muted: #5e7365;
      --bg: #f5fbf7;
      --white: #ffffff;
      --card-bg: #ffffff;
      --border: #d4edd9;
      --shadow-sm: 0 4px 12px rgba(18, 33, 23, 0.04);
      --shadow-md: 0 10px 28px rgba(0, 176, 80, 0.08);
      --shadow-lg: 0 18px 45px rgba(0, 176, 80, 0.12);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --transition: all 0.28s ease;
    }

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

    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;
      background-color: var(--bg);
      color: var(--text);
      line-height: 1.65;
      overflow-x: hidden;
      background-image: radial-gradient(var(--border) 1px, transparent 1px);
      background-size: 32px 32px;
    }

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

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      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.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }

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

    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .logo-box {
      max-width: 140px;
      display: flex;
      align-items: center;
    }

    .brand-badge {
      font-size: 0.75rem;
      background: var(--primary-light);
      color: var(--primary-dark);
      padding: 3px 8px;
      border-radius: 4px;
      font-weight: 600;
    }

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

    .nav-links li a {
      font-size: 0.95rem;
      color: var(--dark);
      font-weight: 500;
      padding: 8px 12px;
      border-radius: var(--radius-sm);
    }

    .nav-links li a:hover {
      color: var(--primary-dark);
      background: var(--primary-light);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid transparent;
      transition: var(--transition);
      text-align: center;
    }

    .btn-primary {
      background: var(--primary);
      color: var(--white);
      box-shadow: 0 4px 14px rgba(0, 176, 80, 0.35);
    }

    .btn-primary:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(0, 176, 80, 0.45);
      color: var(--white);
    }

    .btn-outline {
      border-color: var(--primary);
      color: var(--primary-dark);
      background: transparent;
    }

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

    .btn-glow {
      background: linear-gradient(135deg, #10d876, #00b050);
      color: #fff;
      font-size: 1.05rem;
      padding: 14px 34px;
      border-radius: 30px;
      box-shadow: 0 8px 24px var(--accent-glow);
    }

    .btn-glow:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 12px 30px rgba(0, 176, 80, 0.4);
      color: #fff;
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--dark);
      cursor: pointer;
    }

    /* 区域通用样式 */
    .section {
      padding: 72px 0;
      position: relative;
    }

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

    .section-eyebrow {
      display: inline-block;
      font-size: 0.82rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--primary);
      background: var(--primary-light);
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 2.1rem;
      color: var(--dark);
      font-weight: 800;
      line-height: 1.35;
      margin-bottom: 14px;
    }

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

    /* 纯代码无图片 Hero 首屏 */
    .hero-section {
      padding: 80px 0 90px;
      background: linear-gradient(180deg, rgba(232, 248, 238, 0.6) 0%, rgba(245, 251, 247, 0) 100%);
      border-bottom: 1px solid var(--border);
      position: relative;
      overflow: hidden;
    }

    .hero-wrap {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1px solid var(--border);
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 0.88rem;
      color: var(--dark);
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
    }

    .hero-badge-pill span {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(16, 216, 118, 0.3);
    }

    .hero-title {
      font-size: 2.7rem;
      line-height: 1.25;
      font-weight: 900;
      color: var(--dark);
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-title .highlight {
      color: var(--primary);
      position: relative;
      display: inline-block;
    }

    .hero-desc {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 760px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

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

    /* 首屏数据指标卡 */
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 20px;
    }

    .hero-stat-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 22px 16px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: var(--transition);
    }

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

    .hero-stat-num {
      font-size: 2rem;
      font-weight: 800;
      color: var(--primary-dark);
      line-height: 1.1;
      margin-bottom: 6px;
      font-family: inherit;
    }

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

    /* 平台介绍 */
    .about-card-hero {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-md);
      margin-bottom: 30px;
    }

    .about-lead {
      font-size: 1.15rem;
      line-height: 1.8;
      color: var(--dark);
      margin-bottom: 24px;
    }

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

    .about-feat-item {
      background: var(--primary-light);
      padding: 20px;
      border-radius: var(--radius-md);
      border-left: 4px solid var(--primary);
    }

    .about-feat-item h3 {
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .about-feat-item p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* 核心能力卡片 */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

    .card-top h3 {
      font-size: 1.25rem;
      color: var(--dark);
      margin-bottom: 12px;
      font-weight: 700;
    }

    .card-top p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: auto;
      padding-top: 14px;
      border-top: 1px dashed var(--border);
    }

    .tag-pill {
      font-size: 0.75rem;
      background: var(--bg);
      color: var(--primary-dark);
      border: 1px solid var(--border);
      padding: 3px 8px;
      border-radius: 4px;
    }

    /* 场景大厅 */
    .scenarios-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .scenario-item {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 20px;
      transition: var(--transition);
    }

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

    .scenario-item h4 {
      font-size: 1.05rem;
      color: var(--dark);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .scenario-badge {
      font-size: 0.7rem;
      padding: 2px 6px;
      border-radius: 4px;
      background: var(--primary-light);
      color: var(--primary-dark);
    }

    .scenario-item p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 模型矩阵徽章墙 */
    .model-tags-wrapper {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow-sm);
    }

    .model-tags-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .model-chip {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--dark);
      transition: var(--transition);
    }

    .model-chip:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
      transform: scale(1.05);
    }

    /* 评测与对比表格 */
    .review-score-banner {
      background: linear-gradient(135deg, #00b050, #00873d);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 36px;
      margin-bottom: 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      box-shadow: var(--shadow-lg);
    }

    .score-left h3 {
      font-size: 1.8rem;
      margin-bottom: 8px;
    }

    .score-left p {
      font-size: 1rem;
      opacity: 0.9;
    }

    .score-number-box {
      text-align: right;
    }

    .score-big {
      font-size: 3.5rem;
      font-weight: 900;
      line-height: 1;
    }

    .score-scale {
      font-size: 1.1rem;
      opacity: 0.85;
    }

    .stars {
      color: #ffda44;
      font-size: 1.3rem;
      margin-bottom: 4px;
    }

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

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

    .compare-table th {
      background: #fafdfb;
      color: var(--dark);
      font-weight: 700;
    }

    .compare-table tr:hover td {
      background: var(--primary-light);
    }

    .highlight-col {
      background: rgba(0, 176, 80, 0.04);
      font-weight: 600;
      color: var(--primary-dark);
    }

    /* 案例展示区（带配图与图文组合） */
    .media-case-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 24px;
      margin-bottom: 30px;
    }

    .media-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }

    .media-img-wrap {
      width: 100%;
      overflow: hidden;
      background: #eef6f0;
    }

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

    .media-card-body h4 {
      font-size: 1.15rem;
      margin-bottom: 8px;
      color: var(--dark);
    }

    .media-card-body p {
      font-size: 0.88rem;
      color: var(--text-muted);
    }

    /* 宣传图画廊展示 */
    .banner-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 24px;
    }

    .gallery-img-box {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border);
      background: #eef6f0;
      box-shadow: var(--shadow-sm);
    }

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

    .step-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 26px;
      border-radius: var(--radius-md);
      position: relative;
    }

    .step-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .step-card h4 {
      font-size: 1.1rem;
      color: var(--dark);
      margin-bottom: 8px;
    }

    .step-card p {
      font-size: 0.86rem;
      color: var(--text-muted);
    }

    /* 用户评论 */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .review-card {
      background: var(--white);
      border: 1px solid var(--border);
      padding: 24px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-text {
      font-size: 0.92rem;
      color: var(--dark);
      line-height: 1.6;
      margin-bottom: 18px;
      font-style: italic;
    }

    .review-user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border);
      padding-top: 14px;
    }

    .avatar-fake {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--primary-light);
      color: var(--primary-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .user-meta h5 {
      font-size: 0.95rem;
      color: var(--dark);
    }

    .user-meta span {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* 文章列表 */
    .articles-container {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 30px;
    }

    .articles-links-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 16px;
    }

    .article-pill-link {
      background: var(--bg);
      border: 1px solid var(--border);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 0.88rem;
      color: var(--dark);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .article-pill-link:hover {
      border-color: var(--primary);
      color: var(--primary-dark);
      background: var(--primary-light);
    }

    /* FAQ 折叠面板 */
    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
    }

    .faq-card:hover {
      border-color: var(--primary);
    }

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

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

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

    .faq-card.active .faq-answer {
      max-height: 300px;
      padding: 0 24px 20px;
      border-top: 1px solid #f0f7f2;
    }

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

    /* 表单与转化区 */
    .contact-grid {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 36px;
      align-items: flex-start;
    }

    .contact-form-box {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-md);
    }

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

    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--dark);
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      outline: none;
      transition: var(--transition);
      background: #fff;
    }

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px var(--accent-glow);
    }

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

    .contact-sidebar {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      box-shadow: var(--shadow-sm);
    }

    .contact-sidebar h3 {
      font-size: 1.3rem;
      color: var(--dark);
      margin-bottom: 20px;
    }

    .contact-info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
      font-size: 0.92rem;
      color: var(--text);
      margin-bottom: 24px;
    }

    .contact-info-list li strong {
      color: var(--dark);
    }

    .qr-box {
      text-align: center;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 18px;
    }

    .qr-box img {
      max-width: 150px;
      margin: 0 auto 10px;
      border-radius: var(--radius-sm);
    }

    /* 代理加盟专区 */
    .partner-banner {
      background: linear-gradient(135deg, #122117, #1b3824);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-top: 40px;
    }

    .partner-banner h3 {
      font-size: 1.6rem;
      margin-bottom: 8px;
    }

    .partner-banner p {
      opacity: 0.85;
      font-size: 0.95rem;
      max-width: 680px;
    }

    /* 页脚 */
    .site-footer {
      background: #0f1d14;
      color: #d1ded6;
      padding: 60px 0 24px;
      border-top: 3px solid var(--primary);
    }

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

    .footer-col h4 {
      color: #fff;
      font-size: 1.1rem;
      margin-bottom: 18px;
      position: relative;
      padding-bottom: 8px;
    }

    .footer-col h4::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 24px;
      height: 2px;
      background: var(--primary);
    }

    .footer-col p {
      font-size: 0.88rem;
      line-height: 1.7;
      margin-bottom: 14px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 0.88rem;
    }

    .footer-links a {
      color: #a8bdaf;
    }

    .footer-links a:hover {
      color: var(--accent);
      padding-left: 4px;
    }

    .friend-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 14px;
      font-size: 0.85rem;
    }

    .friend-links-wrap a {
      color: #a8bdaf;
    }

    .friend-links-wrap a:hover {
      color: var(--accent);
    }

    .footer-bottom {
      border-top: 1px solid #1f3325;
      padding-top: 24px;
      text-align: center;
      font-size: 0.82rem;
      color: #7b9685;
    }

    /* 浮动工具栏 */
    .floating-tools {
      position: fixed;
      right: 20px;
      bottom: 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
    }

    .floating-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
      font-size: 1.1rem;
      cursor: pointer;
      border: none;
      transition: var(--transition);
      text-decoration: none;
    }

    .floating-btn:hover {
      background: var(--primary-dark);
      transform: scale(1.08);
      color: #fff;
    }

    /* 响应式调整 */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 2.2rem;
      }
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .cards-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .media-case-grid {
        grid-template-columns: 1fr;
      }
      .steps-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .testimonials-grid {
        grid-template-columns: 1fr;
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .mobile-menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 16px 20px;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border);
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links li a {
        display: block;
        padding: 10px 0;
      }
      .hero-title {
        font-size: 1.85rem;
      }
      .hero-stats-grid {
        grid-template-columns: 1fr;
      }
      .cards-grid {
        grid-template-columns: 1fr;
      }
      .scenarios-grid {
        grid-template-columns: 1fr;
      }
      .about-features-grid {
        grid-template-columns: 1fr;
      }
      .banner-gallery-grid {
        grid-template-columns: 1fr;
      }
      .steps-grid {
        grid-template-columns: 1fr;
      }
      .footer-top {
        grid-template-columns: 1fr;
      }
      .review-score-banner {
        flex-direction: column;
        text-align: center;
      }
      .score-number-box {
        text-align: center;
      }
    }