:root {
      --primary: #4361ee;
      --secondary: #7209b7;
      --accent-pink: #f72585;
      --accent-cyan: #4cc9f0;
      --accent-amber: #f8961e;
      --accent-green: #06d6a0;
      --bg-light: #f8faff;
      --bg-card: #ffffff;
      --text-main: #1e293b;
      --text-muted: #64748b;
      --border-color: #e2e8f0;
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.07);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
      --rainbow-gradient: linear-gradient(135deg, #4361ee, #7209b7, #f72585, #f8961e, #06d6a0, #4cc9f0);
    }

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

    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

    body {
      background-color: var(--bg-light);
      color: var(--text-main);
      line-height: 1.6;
      background-image: 
        radial-gradient(circle at 10% 10%, rgba(67, 97, 238, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 90%, rgba(247, 37, 133, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(76, 201, 240, 0.03) 0%, transparent 50%);
      background-attachment: fixed;
    }

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

    /* 顶部导航 */
    header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

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

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text-main);
      font-weight: 700;
      font-size: 1.25rem;
    }

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

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

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

    .nav-links a:hover {
      color: var(--primary);
      background: rgba(67, 97, 238, 0.08);
    }

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

    .btn-nav-primary {
      background: var(--rainbow-gradient);
      background-size: 200% 200%;
      color: #ffffff !important;
      padding: 8px 18px;
      border-radius: 20px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 10px rgba(67, 97, 238, 0.25);
    }

    .btn-nav-primary:hover {
      background-position: right center;
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(67, 97, 238, 0.35);
    }

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

    /* 彩虹线装饰 */
    .rainbow-line {
      height: 4px;
      width: 100%;
      background: var(--rainbow-gradient);
    }

    /* 区域标题通用 */
    .section-head {
      text-align: center;
      margin-bottom: 48px;
      position: relative;
    }

    .section-tag {
      display: inline-block;
      padding: 4px 12px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--primary);
      background: rgba(67, 97, 238, 0.1);
      border-radius: 20px;
      margin-bottom: 10px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

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

    .section-desc {
      color: var(--text-muted);
      font-size: 1.05rem;
      max-width: 650px;
      margin: 0 auto;
    }

    /* 首屏 HERO 纯CSS设计 */
    .hero-section {
      padding: 80px 0 60px;
      background: linear-gradient(180deg, #ffffff 0%, rgba(248, 250, 255, 0.8) 100%);
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--border-color);
    }

    .hero-wrapper {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
    }

    .hero-content h1 {
      font-size: 2.5rem;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 20px;
      color: #0f172a;
    }

    .hero-content h1 span {
      background: var(--rainbow-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .hero-subhead {
      font-size: 1.15rem;
      color: var(--text-muted);
      margin-bottom: 30px;
      line-height: 1.6;
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }

    .hero-badge-item {
      display: flex;
      align-items: center;
      gap: 6px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 0.85rem;
      color: #334155;
      font-weight: 500;
      box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    }

    .hero-badge-item .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--accent-green);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
    }

    .btn-hero-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--rainbow-gradient);
      background-size: 200% 200%;
      color: #ffffff;
      font-size: 1.1rem;
      font-weight: 700;
      padding: 14px 32px;
      border-radius: 30px;
      text-decoration: none;
      box-shadow: 0 10px 20px rgba(67, 97, 238, 0.3);
      transition: all 0.3s ease;
    }

    .btn-hero-primary:hover {
      background-position: right center;
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(67, 97, 238, 0.4);
    }

    .btn-hero-secondary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #ffffff;
      color: var(--text-main);
      font-size: 1rem;
      font-weight: 600;
      padding: 13px 26px;
      border-radius: 30px;
      border: 1px solid var(--border-color);
      text-decoration: none;
      transition: all 0.25s ease;
    }

    .btn-hero-secondary:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: #f1f5f9;
    }

    /* 首屏纯CSS控制台卡片 */
    .hero-visual {
      position: relative;
    }

    .hero-dashboard-card {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 16px;
      padding: 24px;
      box-shadow: var(--shadow-lg);
      position: relative;
      overflow: hidden;
    }

    .hero-dashboard-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--rainbow-gradient);
    }

    .dashboard-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid #f1f5f9;
    }

    .dashboard-dots {
      display: flex;
      gap: 6px;
    }

    .dashboard-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: #e2e8f0;
    }

    .dashboard-dots span:nth-child(1) { background: #ff5f56; }
    .dashboard-dots span:nth-child(2) { background: #ffbd2e; }
    .dashboard-dots span:nth-child(3) { background: #27c93f; }

    .dashboard-title {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .dashboard-metrics {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-bottom: 20px;
    }

    .metric-box {
      background: #f8fafc;
      padding: 14px;
      border-radius: 10px;
      border: 1px solid #edf2f7;
    }

    .metric-label {
      font-size: 0.8rem;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .metric-val {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .metric-tag {
      font-size: 0.75rem;
      color: var(--accent-green);
      font-weight: 600;
    }

    .dashboard-flow {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .flow-step-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #ffffff;
      border: 1px dashed var(--border-color);
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 0.85rem;
    }

    .flow-step-item .flow-name {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
    }

    .flow-step-item .status-tag {
      font-size: 0.75rem;
      padding: 2px 8px;
      border-radius: 4px;
      background: rgba(6, 214, 160, 0.15);
      color: #059669;
      font-weight: 600;
    }

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

    .section-alt {
      background-color: #ffffff;
    }

    /* 模型矩阵展示 */
    .model-pills-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      max-width: 1000px;
      margin: 0 auto 30px;
    }

    .model-pill {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #334155;
      box-shadow: var(--shadow-sm);
      transition: all 0.2s ease;
    }

    .model-pill:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 4px 10px rgba(67, 97, 238, 0.15);
    }

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

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

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

    .feature-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 24px;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      position: relative;
      overflow: hidden;
    }

    .feature-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: transparent;
      transition: background 0.3s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: #cbd5e1;
    }

    .feature-card:hover::before {
      background: var(--rainbow-gradient);
    }

    .card-icon-wrap {
      width: 46px;
      height: 46px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(114, 9, 183, 0.1));
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 16px;
    }

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

    .card-text {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

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

    .process-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 24px 20px;
      border-radius: 12px;
      position: relative;
      box-shadow: var(--shadow-sm);
    }

    .process-num {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--rainbow-gradient);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.9rem;
      margin-bottom: 14px;
    }

    .process-item h3 {
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .process-item p {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* 案例图片展示容器规范 */
    .showcase-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .showcase-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
    }

    .showcase-media {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #f1f5f9;
      overflow: hidden;
    }

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

    .showcase-card:hover .showcase-media img {
      transform: scale(1.04);
    }

    .showcase-body {
      padding: 16px 20px;
      flex: 1;
    }

    .showcase-body h3 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .showcase-body p {
      font-size: 0.85rem;
      color: var(--text-muted);
    }

    /* 对比评测表格与评分卡 */
    .review-summary-card {
      background: linear-gradient(135deg, #ffffff, #f8fafc);
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 30px;
      margin-bottom: 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-sm);
    }

    .score-badge-area {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .score-number {
      font-size: 3.5rem;
      font-weight: 900;
      background: var(--rainbow-gradient);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
    }

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

    .score-text {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

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

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

    .comparison-table th, .comparison-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
      font-size: 0.92rem;
    }

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

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

    .highlight-col {
      background: rgba(67, 97, 238, 0.03);
      font-weight: 600;
      color: var(--primary);
    }

    /* 用户评论 */
    .testimonial-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 22px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testimonial-body {
      font-size: 0.92rem;
      color: #334155;
      line-height: 1.6;
      margin-bottom: 16px;
      font-style: italic;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 10px;
      border-top: 1px dashed var(--border-color);
      padding-top: 12px;
    }

    .author-avatar {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--rainbow-gradient);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.85rem;
    }

    .author-info h3 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .author-info p {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

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

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

    .faq-question {
      padding: 16px 20px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #ffffff;
      transition: background 0.2s ease;
    }

    .faq-question:hover {
      background: #f8fafc;
    }

    .faq-arrow {
      transition: transform 0.3s ease;
      font-weight: normal;
      color: var(--primary);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 20px;
      font-size: 0.92rem;
      color: var(--text-muted);
      background: #fbfcfe;
    }

    .faq-item.active .faq-answer {
      max-height: 300px;
      padding: 14px 20px 18px;
      border-top: 1px solid #f1f5f9;
    }

    .faq-item.active .faq-arrow {
      transform: rotate(180deg);
    }

    /* 文章列表 */
    .article-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 900px;
      margin: 0 auto 30px;
    }

    .article-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 14px 20px;
      border-radius: 8px;
      text-decoration: none;
      color: var(--text-main);
      transition: all 0.2s ease;
    }

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

    .article-title {
      font-size: 0.95rem;
      font-weight: 600;
    }

    .article-meta {
      font-size: 0.8rem;
      color: var(--primary);
      font-weight: 600;
    }

    /* 表单与联系模块 */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 40px;
      box-shadow: var(--shadow-md);
    }

    .contact-info h3 {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 16px;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-bottom: 24px;
    }

    .contact-detail-row {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 0.95rem;
    }

    .contact-detail-row strong {
      color: var(--text-main);
      min-width: 80px;
    }

    .qr-box {
      background: #f8fafc;
      border: 1px dashed var(--border-color);
      padding: 16px;
      border-radius: 12px;
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .qr-box img {
      width: 130px;
      height: 130px;
      display: block;
      border-radius: 6px;
    }

    .qr-box span {
      font-size: 0.8rem;
      color: var(--text-muted);
      font-weight: 600;
    }

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

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

    .form-control {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--border-color);
      border-radius: 8px;
      font-size: 0.92rem;
      font-family: inherit;
      background: #ffffff;
      outline: none;
      transition: border-color 0.2s ease;
    }

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.15);
    }

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

    .btn-submit {
      width: 100%;
      padding: 12px;
      background: var(--rainbow-gradient);
      background-size: 200% 200%;
      border: none;
      border-radius: 8px;
      color: #ffffff;
      font-size: 1rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(67, 97, 238, 0.25);
      transition: all 0.3s ease;
    }

    .btn-submit:hover {
      background-position: right center;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(67, 97, 238, 0.35);
    }

    /* 友情链接与页脚 */
    footer {
      background: #ffffff;
      border-top: 1px solid var(--border-color);
      padding: 40px 0 30px;
      color: var(--text-muted);
      font-size: 0.88rem;
    }

    .footer-links-wrap {
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid #f1f5f9;
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      align-items: center;
    }

    .footer-links-wrap strong {
      color: var(--text-main);
      font-size: 0.9rem;
    }

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

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

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom a {
      color: var(--text-muted);
      text-decoration: none;
    }

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

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

    .float-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-main);
      text-decoration: none;
      font-size: 1.1rem;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .float-btn:hover {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      transform: scale(1.08);
    }

    /* 响应式断点 */
    @media (max-width: 992px) {
      .hero-wrapper {
        grid-template-columns: 1fr;
      }
      .grid-4, .process-timeline {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3, .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-wrapper {
        grid-template-columns: 1fr;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-links a {
        width: 100%;
        padding: 10px 0;
      }
      .mobile-menu-btn {
        display: block;
      }
    }

    @media (max-width: 640px) {
      .grid-4, .grid-3, .grid-2, .showcase-grid, .process-timeline {
        grid-template-columns: 1fr;
      }
      .hero-content h1 {
        font-size: 1.85rem;
      }
      .section-title {
        font-size: 1.6rem;
      }
      .review-summary-card {
        flex-direction: column;
        gap: 20px;
        text-align: center;
      }
      .score-badge-area {
        flex-direction: column;
      }
      .contact-wrapper {
        padding: 20px;
      }
    }