:root {
      --primary: #ff0055;
      --primary-gradient: linear-gradient(135deg, #ff0055 0%, #ff5500 50%, #ffbb00 100%);
      --accent-cyan: #00e5ff;
      --accent-purple: #7928ca;
      --accent-green: #00df89;
      --bg-light: #fbfbfe;
      --bg-card: #ffffff;
      --text-main: #0f172a;
      --text-muted: #475569;
      --border-color: rgba(226, 232, 240, 0.9);
      --shadow-sm: 0 4px 12px rgba(255, 0, 85, 0.08);
      --shadow-lg: 0 16px 36px rgba(121, 40, 202, 0.12);
      --radius: 16px;
    }

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

    html {
      scroll-behavior: smooth;
    }

    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-light);
      background-image: 
        radial-gradient(at 0% 0%, rgba(255, 0, 85, 0.06) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(0, 229, 255, 0.08) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(255, 187, 0, 0.04) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(121, 40, 202, 0.06) 0px, transparent 50%);
      background-attachment: fixed;
      color: var(--text-main);
      line-height: 1.6;
      font-size: 16px;
      overflow-x: hidden;
    }

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

    /* 顶部导航 */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 2px solid rgba(255, 0, 85, 0.15);
      transition: all 0.3s ease;
    }

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

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

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

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

    .brand-name span {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

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

    .nav-links li {
      margin: 0 4px;
    }

    .nav-links a {
      display: block;
      padding: 8px 12px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-muted);
      text-decoration: none;
      border-radius: 8px;
      transition: all 0.25s ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
      background: rgba(255, 0, 85, 0.06);
    }

    .nav-action-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      font-size: 14px;
      font-weight: 700;
      color: #ffffff;
      background: var(--primary-gradient);
      text-decoration: none;
      border-radius: 99px;
      box-shadow: 0 4px 15px rgba(255, 0, 85, 0.3);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .nav-action-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(255, 0, 85, 0.45);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }

    .menu-toggle span {
      display: block;
      width: 24px;
      height: 3px;
      background-color: var(--text-main);
      margin: 4px 0;
      border-radius: 2px;
      transition: 0.3s;
    }

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

    .section-head {
      text-align: center;
      margin-bottom: 44px;
    }

    .section-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 6px 14px;
      border-radius: 99px;
      background: linear-gradient(135deg, rgba(255,0,85,0.1), rgba(0,229,255,0.1));
      color: var(--primary);
      border: 1px solid rgba(255,0,85,0.2);
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-main);
      letter-spacing: -0.5px;
      margin-bottom: 12px;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }

    /* 首屏 Hero */
    .hero-section {
      padding: 70px 0 60px 0;
      text-align: center;
      background: radial-gradient(circle at center, rgba(255,255,255,0.9) 0%, rgba(255,245,248,0.7) 100%);
      border-bottom: 1px solid rgba(255, 0, 85, 0.1);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      padding: 8px 20px;
      border-radius: 99px;
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      border: 1px solid rgba(255, 0, 85, 0.25);
      box-shadow: 0 4px 16px rgba(255, 0, 85, 0.08);
      margin-bottom: 24px;
      animation: floatBadge 3s ease-in-out infinite alternate;
    }

    @keyframes floatBadge {
      from { transform: translateY(0); }
      to { transform: translateY(-4px); }
    }

    .hero-title {
      font-size: 42px;
      font-weight: 900;
      line-height: 1.25;
      letter-spacing: -1px;
      color: #0f172a;
      max-width: 960px;
      margin: 0 auto 20px auto;
    }

    .hero-title .highlight {
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

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

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

    .btn-main-hero {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 18px;
      font-weight: 800;
      color: #ffffff;
      background: var(--primary-gradient);
      padding: 16px 36px;
      border-radius: 14px;
      text-decoration: none;
      box-shadow: 0 10px 30px rgba(255, 0, 85, 0.4);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .btn-main-hero:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 16px 40px rgba(255, 0, 85, 0.55);
    }

    .btn-secondary-hero {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      background: #ffffff;
      padding: 15px 30px;
      border-radius: 14px;
      text-decoration: none;
      border: 2px solid #e2e8f0;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
      transition: all 0.25s ease;
    }

    .btn-secondary-hero:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: rgba(255, 0, 85, 0.02);
      transform: translateY(-2px);
    }

    .hero-stats-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1040px;
      margin: 0 auto;
    }

    .stat-pill {
      background: #ffffff;
      border: 1px solid rgba(226, 232, 240, 0.9);
      padding: 18px 12px;
      border-radius: 14px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.03);
      text-align: center;
      transition: all 0.3s ease;
    }

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

    .stat-num {
      font-size: 28px;
      font-weight: 900;
      background: var(--primary-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1.2;
    }

    .stat-lbl {
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* 平台介绍 */
    .about-box {
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 0, 85, 0.15);
      padding: 40px;
      box-shadow: var(--shadow-lg);
      margin-bottom: 30px;
    }

    .about-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 30px;
    }

    .about-item {
      background: linear-gradient(145deg, #ffffff 0%, #fdf6f8 100%);
      border: 1px solid #fed7e2;
      padding: 24px;
      border-radius: 12px;
      transition: all 0.3s ease;
    }

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

    .about-item h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

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

    /* AIGC 服务矩阵卡片 */
    .service-cards {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 20px;
    }

    .service-card {
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid #f1f5f9;
      padding: 24px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--primary-gradient);
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255, 0, 85, 0.3);
      box-shadow: 0 12px 30px rgba(255, 0, 85, 0.12);
    }

    .service-card:hover::before {
      opacity: 1;
    }

    .service-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: 4px;
      background: rgba(0, 229, 255, 0.1);
      color: #008ba3;
      margin-bottom: 12px;
    }

    .service-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
    }

    .service-card p {
      font-size: 13.5px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 模型生态芯片墙 */
    .model-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 24px;
    }

    .model-chip {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-main);
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
      transition: all 0.2s ease;
    }

    .model-chip:hover {
      background: var(--text-main);
      color: #ffffff;
      border-color: var(--text-main);
      transform: scale(1.05);
    }

    /* 素材与图文案例 */
    .media-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 24px;
      align-items: center;
      margin-top: 30px;
    }

    .media-card {
      background: #ffffff;
      border-radius: var(--radius);
      padding: 16px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-sm);
    }

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

    .media-card .media-title {
      font-size: 15px;
      font-weight: 700;
      margin-top: 12px;
      color: var(--text-main);
    }

    .media-card .media-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-top: 4px;
    }

    /* 流程步骤 */
    .step-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .step-card {
      background: #ffffff;
      border-radius: var(--radius);
      padding: 24px;
      border: 1px solid #e2e8f0;
      position: relative;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      transition: all 0.3s ease;
    }

    .step-card:hover {
      transform: translateY(-4px);
      border-color: var(--accent-purple);
      box-shadow: var(--shadow-sm);
    }

    .step-num {
      width: 44px;
      height: 44px;
      border-radius: 12px;
      background: var(--primary-gradient);
      color: #ffffff;
      font-weight: 800;
      font-size: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      box-shadow: 0 6px 16px rgba(255, 0, 85, 0.3);
    }

    .step-card h3 {
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 8px;
    }

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

    /* 对比评测表格与卡片 */
    .rating-banner {
      background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
      color: #ffffff;
      border-radius: var(--radius);
      padding: 36px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 30px;
      box-shadow: 0 20px 40px rgba(49, 16, 66, 0.25);
    }

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

    .score-giant {
      font-size: 56px;
      font-weight: 900;
      background: linear-gradient(135deg, #ff0055, #ffbb00);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
    }

    .score-stars {
      color: #ffbb00;
      font-size: 22px;
      margin-bottom: 4px;
    }

    .score-details {
      font-size: 14px;
      color: #cbd5e1;
    }

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

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

    .compare-table th,
    .compare-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #f1f5f9;
      font-size: 14px;
    }

    .compare-table th {
      background: #f8fafc;
      font-weight: 700;
      color: var(--text-main);
    }

    .compare-table td.highlight-col {
      background: rgba(255, 0, 85, 0.03);
      font-weight: 700;
      color: var(--primary);
    }

    /* 客户评价 */
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
    }

    .testimonial-card {
      background: #ffffff;
      border-radius: var(--radius);
      padding: 24px;
      border: 1px solid #e2e8f0;
      box-shadow: 0 4px 16px rgba(0,0,0,0.03);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

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

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

    .testi-avatar-pill {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--primary-gradient);
      color: #ffffff;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .testi-meta h4 {
      font-size: 15px;
      font-weight: 700;
    }

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

    .testi-body {
      font-size: 14px;
      color: #334155;
      line-height: 1.6;
    }

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

    .faq-item {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      overflow: hidden;
      transition: all 0.25s ease;
    }

    .faq-item.active {
      border-color: var(--primary);
      box-shadow: 0 6px 20px rgba(255, 0, 85, 0.08);
    }

    .faq-question {
      width: 100%;
      text-align: left;
      background: none;
      border: none;
      padding: 18px 20px;
      font-size: 15.5px;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .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 ease;
      background: #fafcff;
    }

    .faq-answer-inner {
      padding: 0 20px 18px 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 表单与需求匹配 */
    .form-wrapper {
      background: #ffffff;
      border-radius: var(--radius);
      border: 1px solid rgba(255, 0, 85, 0.2);
      padding: 36px;
      box-shadow: var(--shadow-lg);
      max-width: 720px;
      margin: 0 auto;
    }

    .form-row {
      margin-bottom: 18px;
    }

    .form-row label {
      display: block;
      font-size: 13.5px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    .form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 12px 14px;
      font-size: 14px;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      background: #f8fafc;
      color: var(--text-main);
      outline: none;
      transition: all 0.2s ease;
    }

    .form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(255, 0, 85, 0.1);
    }

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

    .btn-submit {
      width: 100%;
      padding: 14px;
      font-size: 16px;
      font-weight: 800;
      color: #ffffff;
      background: var(--primary-gradient);
      border: none;
      border-radius: 10px;
      cursor: pointer;
      box-shadow: 0 8px 20px rgba(255, 0, 85, 0.35);
      transition: all 0.3s ease;
    }

    .btn-submit:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(255, 0, 85, 0.5);
    }

    /* 资讯文章与知识库 */
    .article-box {
      background: #ffffff;
      border-radius: var(--radius);
      padding: 24px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }

    .article-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 14px;
    }

    .article-links a {
      display: inline-block;
      padding: 8px 16px;
      background: #f1f5f9;
      color: var(--text-main);
      text-decoration: none;
      font-size: 13px;
      font-weight: 600;
      border-radius: 6px;
      transition: all 0.2s ease;
    }

    .article-links a:hover {
      background: var(--primary);
      color: #ffffff;
    }

    /* 宣传图画廊 */
    .banner-strip {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-top: 30px;
    }

    .banner-item {
      border-radius: var(--radius);
      overflow: hidden;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-sm);
    }

    .banner-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }

    .banner-item:hover img {
      transform: scale(1.03);
    }

    /* 页脚 */
    footer.site-footer {
      background: #0b0f19;
      color: #94a3b8;
      padding: 60px 0 24px 0;
      border-top: 4px solid var(--primary);
    }

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

    .footer-col h4 {
      color: #ffffff;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .footer-col p {
      font-size: 13.5px;
      line-height: 1.7;
      margin-bottom: 10px;
    }

    .footer-col a {
      color: #cbd5e1;
      text-decoration: none;
      transition: color 0.2s ease;
    }

    .footer-col a:hover {
      color: var(--accent-cyan);
    }

    .footer-qr-block {
      background: #ffffff;
      padding: 8px;
      border-radius: 8px;
      display: inline-block;
      margin-top: 8px;
    }

    .footer-qr-block img {
      width: 108px;
      height: 108px;
      display: block;
    }

    .footer-friend-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      padding-top: 20px;
      margin-top: 20px;
      border-top: 1px solid #1e293b;
    }

    .footer-friend-links a {
      font-size: 13px;
      color: #94a3b8;
      text-decoration: none;
    }

    .footer-friend-links a:hover {
      color: #ffffff;
    }

    .footer-bottom {
      text-align: center;
      padding-top: 24px;
      border-top: 1px solid #1e293b;
      font-size: 13px;
      color: #64748b;
    }

    /* 浮动客服入口 */
    .floating-contact {
      position: fixed;
      right: 20px;
      bottom: 24px;
      z-index: 990;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .floating-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: var(--primary-gradient);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
      box-shadow: 0 8px 24px rgba(255, 0, 85, 0.4);
      cursor: pointer;
      border: none;
      transition: transform 0.2s ease;
    }

    .floating-btn:hover {
      transform: scale(1.1);
    }

    /* 响应式断点 */
    @media (max-width: 992px) {
      .hero-title {
        font-size: 32px;
      }
      .hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .media-grid {
        grid-template-columns: 1fr;
      }
      .banner-strip {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        padding: 20px;
        border-bottom: 2px solid var(--primary);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li {
        width: 100%;
        margin: 4px 0;
      }
      .nav-links a {
        padding: 12px;
      }
      .hero-title {
        font-size: 26px;
      }
      .hero-desc {
        font-size: 15px;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .rating-banner {
        flex-direction: column;
        align-items: flex-start;
      }
    }