:root {
      --primary: #059669;
      --primary-hover: #047857;
      --primary-light: #ecfdf5;
      --primary-bright: #10b981;
      --accent-lime: #84cc16;
      --text-main: #1f2937;
      --text-muted: #4b5563;
      --text-light: #6b7280;
      --bg-page: #f8fafc;
      --bg-surface: #ffffff;
      --bg-alt: #f0fdf4;
      --border-color: #d1fae5;
      --border-soft: #e2e8f0;
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 10px 15px -3px rgba(16, 185, 129, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --container-max: 1200px;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
      color: var(--text-main);
      background-color: var(--bg-page);
      line-height: 1.6;
    }
    body {
      background: radial-gradient(circle at 50% 0%, #ecfdf5 0%, #f8fafc 40%, #f1f5f9 100%);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow-x: hidden;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s ease;
    }
    .site-wrapper {
      width: 100%;
      max-width: var(--container-max);
      padding: 0 20px;
      margin: 0 auto;
    }
    /* 顶部导航 */
    .site-header {
      width: 100%;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      position: sticky;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid var(--border-color);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-logo-wrap {
      max-height: 42px;
      display: flex;
      align-items: center;
    }
    .ai-page-logo {
      height: 38px;
      width: auto;
      object-fit: contain;
    }
    .brand-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary);
      letter-spacing: -0.5px;
    }
    .nav-container {
      display: flex;
      align-items: center;
    }
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
    }
    .nav-links li a {
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--text-main);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
      display: inline-block;
      transition: all 0.2s ease;
    }
    .nav-links li a:hover {
      color: var(--primary);
      background-color: var(--primary-light);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      border-radius: var(--radius-md);
      transition: all 0.25s ease;
      cursor: pointer;
      border: 1px solid transparent;
      padding: 9px 18px;
      font-size: 0.95rem;
      text-align: center;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary-bright), var(--primary));
      color: #ffffff;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, #059669, #047857);
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    }
    .btn-outline {
      border-color: var(--primary);
      color: var(--primary);
      background-color: transparent;
    }
    .btn-outline:hover {
      background-color: var(--primary-light);
    }
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-main);
      cursor: pointer;
      padding: 6px;
    }

    /* 主内容区 */
    main {
      width: 100%;
      display: flex;
      flex-direction: column;
      gap: 60px;
      padding: 40px 0 60px;
    }

    /* Hero 首屏 (无图片) */
    .hero-section {
      background: linear-gradient(180deg, #ffffff 0%, var(--primary-light) 100%);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 60px 40px;
      text-align: center;
      position: relative;
      box-shadow: var(--shadow-sm);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      color: var(--primary);
      border-radius: 999px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 24px;
    }
    .hero-title {
      font-size: 2.3rem;
      font-weight: 800;
      color: #0f172a;
      line-height: 1.3;
      margin-bottom: 20px;
    }
    .hero-desc {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 820px;
      margin: 0 auto 36px;
    }
    .hero-cta-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .hero-cta-group .btn {
      padding: 14px 32px;
      font-size: 1.05rem;
    }
    .hero-data-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
      border-top: 1px solid rgba(16, 185, 129, 0.2);
      padding-top: 30px;
    }
    .data-stat-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 16px;
      border: 1px solid var(--border-color);
    }
    .data-stat-card .val {
      font-size: 1.7rem;
      font-weight: 800;
      color: var(--primary);
    }
    .data-stat-card .lab {
      font-size: 0.88rem;
      color: var(--text-light);
      margin-top: 4px;
    }

    /* 区域通用标题 */
    .section-head {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-tag {
      font-size: 0.82rem;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--primary);
      letter-spacing: 1px;
      margin-bottom: 8px;
    }
    .section-head h2 {
      font-size: 1.85rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 12px;
    }
    .section-head p {
      font-size: 1rem;
      color: var(--text-light);
      max-width: 680px;
      margin: 0 auto;
    }

    /* 平台介绍 & 关于我们 */
    .about-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 40px;
      box-shadow: var(--shadow-sm);
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }
    .about-text h3 {
      font-size: 1.45rem;
      color: var(--text-main);
      margin-bottom: 16px;
    }
    .about-text p {
      color: var(--text-muted);
      margin-bottom: 14px;
      line-height: 1.7;
    }
    .about-highlights {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 24px;
    }
    .highlight-item {
      background: var(--bg-alt);
      padding: 16px;
      border-radius: var(--radius-md);
      border-left: 4px solid var(--primary);
    }
    .highlight-item h4 {
      font-size: 1rem;
      color: var(--primary);
      margin-bottom: 6px;
    }
    .highlight-item p {
      font-size: 0.88rem;
      color: var(--text-muted);
      margin: 0;
    }
    .image-frame {
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      background: #f1f5f9;
    }
    .image-frame img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* 场景卡片矩阵网格 */
    .cards-grid-3 {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }
    .feature-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary-bright);
    }
    .feature-icon-badge {
      width: 44px;
      height: 44px;
      background: var(--primary-light);
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--primary);
      margin-bottom: 16px;
      font-weight: bold;
    }
    .feature-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
    }
    .feature-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .feature-tag {
      align-self: flex-start;
      font-size: 0.78rem;
      padding: 3px 8px;
      background: var(--bg-alt);
      color: var(--primary);
      border-radius: 4px;
      font-weight: 600;
    }

    /* 模型矩阵与标签云 */
    .model-tags-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 28px;
    }
    .model-chip {
      background: var(--bg-alt);
      border: 1px solid rgba(16, 185, 129, 0.25);
      color: var(--text-main);
      padding: 6px 14px;
      border-radius: 999px;
      font-size: 0.88rem;
      font-weight: 500;
      transition: all 0.2s ease;
    }
    .model-chip:hover {
      background: var(--primary);
      color: #ffffff;
      transform: translateY(-1px);
    }

    /* 流程步骤 */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }
    .step-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      position: relative;
    }
    .step-num {
      position: absolute;
      top: 16px;
      right: 16px;
      font-size: 1.5rem;
      font-weight: 800;
      color: rgba(16, 185, 129, 0.2);
    }
    .step-card h4 {
      font-size: 1.1rem;
      color: var(--primary);
      margin-bottom: 8px;
    }
    .step-card p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* 对比评测模块 */
    .eval-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 36px;
      box-shadow: var(--shadow-sm);
    }
    .eval-score-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: linear-gradient(135deg, var(--bg-alt), #ffffff);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px 32px;
      margin-bottom: 28px;
    }
    .eval-score-main h3 {
      font-size: 1.4rem;
      color: #0f172a;
      margin-bottom: 4px;
    }
    .eval-score-main p {
      color: var(--text-muted);
      font-size: 0.95rem;
    }
    .eval-badge-box {
      text-align: right;
    }
    .stars {
      color: #f59e0b;
      font-size: 1.3rem;
      letter-spacing: 2px;
    }
    .score-num {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
    }
    .table-container {
      width: 100%;
      overflow-x: auto;
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.93rem;
    }
    .compare-table th, .compare-table td {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border-soft);
    }
    .compare-table th {
      background: var(--bg-alt);
      color: var(--text-main);
      font-weight: 600;
    }
    .compare-table tr:hover td {
      background-color: var(--primary-light);
    }
    .tag-pro {
      color: var(--primary);
      font-weight: 700;
    }

    /* 案例中心 & 宣传图 */
    .case-gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 24px;
    }
    .case-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .case-img-box {
      aspect-ratio: 16/9;
      background: #e2e8f0;
      overflow: hidden;
    }
    .case-img-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    .case-card:hover .case-img-box img {
      transform: scale(1.03);
    }
    .case-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .case-body h4 {
      font-size: 1.1rem;
      color: #0f172a;
      margin-bottom: 8px;
    }
    .case-body p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 客户评价 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
    }
    .review-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-text {
      font-size: 0.94rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      font-style: italic;
    }
    .reviewer-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border-soft);
      padding-top: 12px;
    }
    .reviewer-avatar-placeholder {
      width: 40px;
      height: 40px;
      background: var(--primary-light);
      border: 1px solid var(--border-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: var(--primary);
    }
    .reviewer-info h5 {
      font-size: 0.95rem;
      color: #0f172a;
      font-weight: 600;
    }
    .reviewer-info span {
      font-size: 0.82rem;
      color: var(--text-light);
    }

    /* FAQ 折叠面板 */
    .faq-container {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 24px 32px;
    }
    .faq-item {
      border-bottom: 1px solid var(--border-soft);
    }
    .faq-item:last-child {
      border-bottom: none;
    }
    .faq-question {
      width: 100%;
      padding: 18px 0;
      background: none;
      border: none;
      text-align: left;
      font-size: 1.05rem;
      font-weight: 600;
      color: #0f172a;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      transition: color 0.2s ease;
    }
    .faq-question:hover {
      color: var(--primary);
    }
    .faq-icon {
      font-size: 1.2rem;
      color: var(--primary);
      transition: transform 0.2s ease;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      color: var(--text-muted);
      font-size: 0.94rem;
      line-height: 1.7;
    }
    .faq-answer-inner {
      padding-bottom: 18px;
    }

    /* 需求匹配表单与联系我们 */
    .contact-form-section {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 40px;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--text-main);
    }
    .form-control {
      width: 100%;
      padding: 11px 14px;
      border: 1px solid var(--border-soft);
      border-radius: var(--radius-sm);
      font-size: 0.95rem;
      background: #fcfdfd;
      color: var(--text-main);
      transition: all 0.2s ease;
    }
    .form-control:focus {
      outline: none;
      border-color: var(--primary-bright);
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    }
    textarea.form-control {
      resize: vertical;
      min-height: 100px;
    }
    .contact-info-list {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 24px;
    }
    .contact-info-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
      color: var(--text-muted);
    }
    .contact-icon-box {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--bg-alt);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-weight: bold;
    }
    .qr-block {
      background: var(--bg-alt);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 18px;
      display: inline-flex;
      align-items: center;
      gap: 16px;
    }
    .qr-block img {
      width: 100px;
      height: 100px;
      border-radius: 4px;
      background: #ffffff;
      border: 1px solid var(--border-soft);
    }
    .qr-desc h5 {
      font-size: 1rem;
      color: #0f172a;
      margin-bottom: 4px;
    }
    .qr-desc p {
      font-size: 0.85rem;
      color: var(--text-light);
    }

    /* 资讯与百科文章 */
    .article-links-wrap {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px;
    }
    .article-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .article-list li a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      background: var(--bg-page);
      color: var(--text-main);
      font-size: 0.93rem;
      transition: all 0.2s ease;
    }
    .article-list li a:hover {
      background: var(--bg-alt);
      color: var(--primary);
      padding-left: 18px;
    }

    /* 加盟代理模块 */
    .agent-box {
      background: linear-gradient(135deg, #059669, #065f46);
      border-radius: var(--radius-lg);
      padding: 40px;
      color: #ffffff;
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 30px;
      align-items: center;
    }
    .agent-box h3 {
      font-size: 1.8rem;
      margin-bottom: 14px;
      color: #ffffff;
    }
    .agent-box p {
      font-size: 1rem;
      color: #d1fae5;
      line-height: 1.6;
      margin-bottom: 24px;
    }
    .agent-features {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 24px;
    }
    .agent-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.92rem;
      color: #ecfdf5;
    }
    .agent-right {
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(4px);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: var(--radius-md);
      padding: 24px;
      text-align: center;
    }
    .agent-right h4 {
      font-size: 1.2rem;
      margin-bottom: 8px;
      color: #ffffff;
    }
    .agent-right p {
      font-size: 0.88rem;
      color: #d1fae5;
      margin-bottom: 16px;
    }

    /* 友情链接 */
    .friendly-links-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
    }
    .friendly-links-card span {
      font-weight: 700;
      color: var(--text-main);
      font-size: 0.9rem;
    }
    .friendly-links-card a {
      font-size: 0.88rem;
      color: var(--text-muted);
      padding: 4px 10px;
      border-radius: 4px;
      background: var(--bg-page);
    }
    .friendly-links-card a:hover {
      color: var(--primary);
      background: var(--bg-alt);
    }

    /* 页脚 */
    .site-footer {
      width: 100%;
      background: #111827;
      color: #9ca3af;
      padding: 40px 0 24px;
      border-top: 1px solid #1f2937;
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      border-bottom: 1px solid #1f2937;
      padding-bottom: 24px;
    }
    .footer-brand h4 {
      color: #f9fafb;
      font-size: 1.2rem;
      margin-bottom: 8px;
    }
    .footer-brand p {
      font-size: 0.88rem;
      max-width: 400px;
      color: #9ca3af;
    }
    .footer-nav {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-nav a {
      color: #d1d5db;
      font-size: 0.9rem;
    }
    .footer-nav a:hover {
      color: var(--primary-bright);
    }
    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.85rem;
      color: #6b7280;
    }
    .footer-bottom a {
      color: #9ca3af;
    }

    /* 悬浮客服挂件 */
    .float-service {
      position: fixed;
      right: 20px;
      bottom: 40px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--primary);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
      cursor: pointer;
      border: none;
      font-size: 1.1rem;
      transition: all 0.2s ease;
      position: relative;
    }
    .float-btn:hover {
      background: var(--primary-hover);
      transform: scale(1.08);
    }
    .float-qr-pop {
      position: absolute;
      right: 60px;
      bottom: 0;
      background: #ffffff;
      padding: 12px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-color);
      display: none;
      width: 140px;
      text-align: center;
    }
    .float-qr-pop img {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }
    .float-qr-pop span {
      display: block;
      font-size: 0.75rem;
      color: var(--text-main);
      margin-top: 6px;
      font-weight: 600;
    }
    .float-btn:hover .float-qr-pop {
      display: block;
    }

    /* 响应式样式 */
    @media (max-width: 992px) {
      .about-grid, .contact-grid, .agent-box {
        grid-template-columns: 1fr;
      }
      .hero-title {
        font-size: 1.85rem;
      }
      .nav-container {
        display: none;
      }
      .nav-container.active {
        display: block;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        border-bottom: 1px solid var(--border-color);
        padding: 16px 20px;
        box-shadow: var(--shadow-md);
      }
      .nav-links {
        flex-direction: column;
        align-items: flex-start;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links li a {
        width: 100%;
        padding: 10px 0;
      }
      .mobile-menu-toggle {
        display: block;
      }
    }
    @media (max-width: 640px) {
      .hero-section {
        padding: 40px 20px;
      }
      .hero-title {
        font-size: 1.5rem;
      }
      .about-card, .eval-card, .contact-form-section, .agent-box {
        padding: 24px 16px;
      }
      .eval-score-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
      .eval-badge-box {
        text-align: left;
      }
      .agent-features {
        grid-template-columns: 1fr;
      }
      .float-service {
        right: 12px;
        bottom: 24px;
      }
    }