:root {
      --primary: #1230B0;
      --accent: #FF5A1F;
      --secondary: #00B4D8;
      --neon-yellow: #FFE600;
      --dark-text: #181C26;
      --muted-text: #4B5565;
      --light-bg: #F8F9FD;
      --card-bg: #FFFFFF;
      --border-color: #E2E8F0;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      background-color: var(--light-bg);
      color: var(--dark-text);
      font-family: var(--font-family);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    .container {
      width: 100%;
      max-width: 1240px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    .top-bar {
      background: #0E1A38;
      color: #D1D5DB;
      font-size: 13px;
      padding: 8px 0;
      border-bottom: 2px solid var(--accent);
    }
    .top-bar-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
    }
    .top-bar-links a {
      color: #D1D5DB;
      margin-left: 14px;
      transition: color 0.2s;
    }
    .top-bar-links a:hover {
      color: var(--neon-yellow);
    }
    .header-nav {
      background: rgba(255, 255, 255, 0.98);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 4px 20px rgba(18, 48, 176, 0.08);
      border-bottom: 1px solid var(--border-color);
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 74px;
    }
    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-area .ai-page-logo {
      height: 42px;
      width: auto;
      display: block;
    }
    .brand-title {
      font-size: 20px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: -0.5px;
    }
    .nav-links {
      display: flex;
      align-items: center;
      list-style: none;
      gap: 0;
    }
    .nav-links li a {
      display: inline-block;
      padding: 10px 11px;
      font-weight: 600;
      font-size: 14px;
      color: var(--dark-text);
      transition: all 0.2s;
      border-radius: 6px;
    }
    .nav-links li a:hover {
      color: var(--accent);
      background: rgba(255, 90, 31, 0.08);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 14px;
      font-weight: 700;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
      border: 2px solid transparent;
      white-space: nowrap;
    }
    .btn-contrast {
      background: var(--accent);
      color: #FFFFFF;
      box-shadow: 0 6px 16px rgba(255, 90, 31, 0.35);
    }
    .btn-contrast:hover {
      background: #E04810;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(255, 90, 31, 0.45);
    }
    .btn-primary {
      background: var(--primary);
      color: #FFFFFF;
      box-shadow: 0 6px 16px rgba(18, 48, 176, 0.3);
    }
    .btn-primary:hover {
      background: #0D2385;
      transform: translateY(-2px);
    }
    .btn-outline {
      background: transparent;
      border-color: var(--primary);
      color: var(--primary);
    }
    .btn-outline:hover {
      background: var(--primary);
      color: #FFFFFF;
    }
    .mobile-menu-toggle {
      display: none;
      background: transparent;
      border: none;
      font-size: 26px;
      color: var(--primary);
      cursor: pointer;
    }
    .section-wrap {
      padding: 76px 0;
      position: relative;
    }
    .section-wrap:nth-child(even) {
      background: #FFFFFF;
    }
    .section-head {
      text-align: center;
      max-width: 780px;
      margin: 0 auto 52px auto;
    }
    .section-tag {
      display: inline-block;
      padding: 5px 14px;
      background: rgba(18, 48, 176, 0.08);
      color: var(--primary);
      font-size: 13px;
      font-weight: 700;
      border-radius: 30px;
      margin-bottom: 14px;
      border: 1px solid rgba(18, 48, 176, 0.2);
    }
    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: #0E1A38;
      line-height: 1.35;
      margin-bottom: 14px;
    }
    .section-subtitle {
      font-size: 16px;
      color: var(--muted-text);
      line-height: 1.65;
    }
    .hero-section {
      background: radial-gradient(circle at 85% 15%, rgba(0, 180, 216, 0.18) 0%, transparent 45%),
                  radial-gradient(circle at 10% 90%, rgba(255, 90, 31, 0.12) 0%, transparent 40%),
                  linear-gradient(135deg, #FFFFFF 0%, #F1F4FD 100%);
      padding: 90px 0 80px 0;
      border-bottom: 3px solid var(--accent);
      position: relative;
      overflow: hidden;
    }
    .hero-content {
      text-align: center;
      max-width: 920px;
      margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #FFF4EE;
      color: var(--accent);
      border: 1px solid #FFD3C0;
      padding: 7px 18px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 24px;
      box-shadow: 0 4px 12px rgba(255, 90, 31, 0.15);
    }
    .hero-title {
      font-size: 44px;
      font-weight: 900;
      color: #0B1936;
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .hero-title span {
      color: var(--accent);
      background: linear-gradient(120deg, var(--accent) 0%, #D9381E 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: 19px;
      color: #334155;
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 820px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-buttons {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .hero-btn-main {
      font-size: 18px;
      padding: 16px 42px;
      border-radius: 10px;
      background: var(--accent);
      color: #FFFFFF;
      font-weight: 800;
      box-shadow: 0 10px 25px rgba(255, 90, 31, 0.42);
      transform: scale(1.03);
    }
    .hero-btn-main:hover {
      background: #E04810;
      transform: scale(1.06) translateY(-2px);
    }
    .hero-metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 20px;
    }
    .metric-card {
      background: #FFFFFF;
      border: 2px solid #E2E8F0;
      border-radius: 12px;
      padding: 22px 16px;
      box-shadow: 0 6px 16px rgba(18, 48, 176, 0.06);
      transition: transform 0.2s, border-color 0.2s;
    }
    .metric-card:hover {
      border-color: var(--secondary);
      transform: translateY(-4px);
    }
    .metric-num {
      font-size: 32px;
      font-weight: 900;
      color: var(--primary);
      line-height: 1;
      margin-bottom: 8px;
    }
    .metric-num em {
      font-style: normal;
      font-size: 20px;
      color: var(--accent);
    }
    .metric-text {
      font-size: 14px;
      color: var(--muted-text);
      font-weight: 600;
    }
    .feature-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }
    .feature-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-top: 4px solid var(--primary);
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 8px 24px rgba(18, 48, 176, 0.05);
      transition: all 0.25s ease;
    }
    .feature-card:hover {
      border-top-color: var(--accent);
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(18, 48, 176, 0.12);
    }
    .feature-icon-badge {
      width: 52px;
      height: 52px;
      border-radius: 10px;
      background: rgba(18, 48, 176, 0.08);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: 900;
      margin-bottom: 18px;
    }
    .feature-card h3 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #0E1A38;
    }
    .feature-card p {
      font-size: 14px;
      color: var(--muted-text);
      line-height: 1.65;
    }
    .models-tag-matrix {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 30px;
      padding: 24px;
      background: #F2F5FD;
      border-radius: 16px;
      border: 1px dashed #BAC9E8;
    }
    .model-badge {
      background: #FFFFFF;
      color: #1230B0;
      border: 1px solid #CBD5E1;
      font-size: 13px;
      font-weight: 700;
      padding: 7px 14px;
      border-radius: 6px;
      transition: all 0.2s;
    }
    .model-badge:hover {
      background: var(--accent);
      color: #FFFFFF;
      border-color: var(--accent);
      transform: scale(1.05);
    }
    .scenario-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .scenario-card {
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: 12px;
      padding: 24px;
      position: relative;
      transition: all 0.2s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .scenario-card:hover {
      border-color: var(--accent);
      box-shadow: 0 10px 25px rgba(255, 90, 31, 0.12);
    }
    .scenario-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }
    .scenario-title {
      font-size: 17px;
      font-weight: 800;
      color: #0E1A38;
    }
    .scenario-tag {
      font-size: 11px;
      font-weight: 700;
      color: #FFFFFF;
      background: var(--primary);
      padding: 3px 8px;
      border-radius: 4px;
    }
    .scenario-card:nth-child(even) .scenario-tag {
      background: var(--accent);
    }
    .scenario-desc {
      font-size: 13px;
      color: #4B5565;
      line-height: 1.6;
    }
    .steps-flow-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .step-box {
      background: #FFFFFF;
      border: 2px solid #E2E8F0;
      border-radius: 12px;
      padding: 28px 20px;
      text-align: center;
      position: relative;
    }
    .step-digit {
      width: 44px;
      height: 44px;
      margin: 0 auto 16px auto;
      background: var(--accent);
      color: #FFFFFF;
      border-radius: 50%;
      font-size: 18px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 12px rgba(255, 90, 31, 0.3);
    }
    .step-box h4 {
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 8px;
      color: #0E1A38;
    }
    .step-box p {
      font-size: 13px;
      color: var(--muted-text);
      line-height: 1.55;
    }
    .cases-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .case-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      transition: transform 0.2s;
    }
    .case-card:hover {
      transform: translateY(-5px);
    }
    .case-img-box {
      width: 100%;
      overflow: hidden;
      background: #E2E8F0;
    }
    .case-img-box img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }
    .case-card:hover .case-img-box img {
      transform: scale(1.03);
    }
    .case-body {
      padding: 20px;
    }
    .case-body h4 {
      font-size: 17px;
      font-weight: 800;
      margin-bottom: 8px;
      color: #0E1A38;
    }
    .case-body p {
      font-size: 13px;
      color: var(--muted-text);
      line-height: 1.6;
    }
    .eval-score-banner {
      background: linear-gradient(135deg, #1230B0 0%, #0B1936 100%);
      color: #FFFFFF;
      border-radius: 16px;
      padding: 36px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 36px;
      box-shadow: 0 12px 30px rgba(18, 48, 176, 0.25);
    }
    .eval-score-left h3 {
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 6px;
      color: #FFFFFF;
    }
    .eval-score-left p {
      color: #BAC9E8;
      font-size: 14px;
    }
    .eval-stars-block {
      text-align: right;
    }
    .score-big {
      font-size: 46px;
      font-weight: 900;
      color: var(--neon-yellow);
      line-height: 1;
    }
    .score-sub {
      font-size: 14px;
      font-weight: 700;
      color: #FFFFFF;
      margin-top: 4px;
    }
    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    }
    .eval-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 14px;
    }
    .eval-table th {
      background: #0E1A38;
      color: #FFFFFF;
      padding: 16px 20px;
      font-weight: 700;
    }
    .eval-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #EDF2F7;
      color: #334155;
    }
    .eval-table tr:hover td {
      background: #F8FAFC;
    }
    .highlight-cell {
      background: #F0FDF4;
      font-weight: 700;
      color: #15803D !important;
    }
    .match-form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 36px;
      background: #FFFFFF;
      border: 2px solid #E2E8F0;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(18, 48, 176, 0.06);
    }
    .match-info-col h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 16px;
      color: #0E1A38;
    }
    .match-info-col p {
      font-size: 14px;
      color: var(--muted-text);
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .perks-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .perks-list li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      font-weight: 600;
      color: #1E293B;
    }
    .perk-check {
      width: 22px;
      height: 22px;
      background: #DCFCE7;
      color: #16A34A;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 900;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 700;
      color: #1E293B;
      margin-bottom: 6px;
    }
    .form-control {
      width: 100%;
      padding: 12px 14px;
      font-size: 14px;
      border: 1px solid #CBD5E1;
      border-radius: 8px;
      outline: none;
      background: #F8FAFC;
      transition: border-color 0.2s;
    }
    .form-control:focus {
      border-color: var(--primary);
      background: #FFFFFF;
    }
    textarea.form-control {
      resize: vertical;
      min-height: 96px;
    }
    .price-compare-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }
    .price-card {
      background: #FFFFFF;
      border: 2px solid var(--border-color);
      border-radius: 14px;
      padding: 32px 24px;
      text-align: center;
      transition: transform 0.2s, box-shadow 0.2s;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .price-card.featured {
      border-color: var(--accent);
      box-shadow: 0 12px 30px rgba(255, 90, 31, 0.18);
      position: relative;
    }
    .price-tag-badge {
      position: absolute;
      top: -12px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--accent);
      color: #FFFFFF;
      font-size: 12px;
      font-weight: 800;
      padding: 4px 14px;
      border-radius: 20px;
    }
    .price-title {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #0E1A38;
    }
    .price-val {
      font-size: 34px;
      font-weight: 900;
      color: var(--primary);
      margin-bottom: 18px;
    }
    .price-card.featured .price-val {
      color: var(--accent);
    }
    .price-features {
      list-style: none;
      text-align: left;
      font-size: 13px;
      color: #475569;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 24px;
    }
    .faq-accordion {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item.active {
      border-color: var(--primary);
    }
    .faq-question {
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-size: 16px;
      font-weight: 700;
      color: #0F172A;
      user-select: none;
    }
    .faq-icon {
      font-size: 18px;
      font-weight: 800;
      color: var(--primary);
      transition: transform 0.2s;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      color: var(--accent);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #F8FAFC;
    }
    .faq-answer-inner {
      padding: 18px 22px;
      font-size: 14px;
      color: var(--muted-text);
      line-height: 1.7;
      border-top: 1px solid #EDF2F7;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-text {
      font-size: 14px;
      color: #334155;
      line-height: 1.65;
      margin-bottom: 20px;
      position: relative;
    }
    .review-user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #F1F5F9;
      padding-top: 14px;
    }
    .review-avatar-char {
      width: 40px;
      height: 40px;
      background: var(--primary);
      color: #FFFFFF;
      font-weight: 800;
      font-size: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .review-meta h5 {
      font-size: 14px;
      font-weight: 700;
      color: #0F172A;
    }
    .review-meta span {
      font-size: 12px;
      color: #64748B;
    }
    .articles-container {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 30px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }
    .articles-raw-box {
      margin-bottom: 24px;
      padding: 16px;
      background: #F1F5F9;
      border-left: 4px solid var(--primary);
      font-size: 14px;
      color: #334155;
    }
    .article-links-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }
    .article-link-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 16px;
      background: #F8FAFC;
      border: 1px solid #E2E8F0;
      border-radius: 8px;
      font-size: 14px;
      color: #1E293B;
      font-weight: 600;
      transition: all 0.2s;
    }
    .article-link-item:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: #FFF7ED;
    }
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
    }
    .contact-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 32px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
    }
    .qr-box {
      text-align: center;
      margin-top: 18px;
    }
    .qr-box img {
      width: 170px;
      height: 170px;
      display: inline-block;
      border: 3px solid var(--primary);
      border-radius: 10px;
      padding: 4px;
      background: #FFFFFF;
    }
    .site-footer {
      background: #091224;
      color: #94A3B8;
      font-size: 14px;
      padding: 50px 0 30px 0;
      border-top: 4px solid var(--accent);
    }
    .footer-inner {
      display: flex;
      flex-direction: column;
      gap: 26px;
    }
    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      border-bottom: 1px solid #1E293B;
      padding-bottom: 24px;
    }
    .footer-logo-title {
      font-size: 20px;
      font-weight: 800;
      color: #FFFFFF;
    }
    .friend-links-area {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
    }
    .friend-links-area a {
      color: #CBD5E1;
      transition: color 0.2s;
    }
    .friend-links-area a:hover {
      color: var(--neon-yellow);
    }
    .footer-bottom {
      text-align: center;
      color: #64748B;
      font-size: 13px;
    }
    .footer-bottom a {
      color: #94A3B8;
    }
    .footer-bottom a:hover {
      color: #FFFFFF;
    }
    .floating-bar {
      position: fixed;
      right: 20px;
      bottom: 25px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .floating-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #0E1A38;
      color: #FFFFFF;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
      border: 2px solid var(--accent);
      transition: transform 0.2s;
    }
    .floating-btn:hover {
      transform: scale(1.1);
      background: var(--accent);
    }
    @media (max-width: 992px) {
      .hero-title {
        font-size: 34px;
      }
      .hero-metrics-grid, .feature-grid-3, .scenario-grid, .price-compare-cards, .reviews-grid, .cases-gallery {
        grid-template-columns: repeat(2, 1fr);
      }
      .steps-flow-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .match-form-grid, .contact-grid {
        grid-template-columns: 1fr;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        align-items: stretch;
        border-bottom: 2px solid var(--primary);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
      }
      .nav-links.show {
        display: flex;
      }
      .nav-links li a {
        padding: 12px 24px;
        border-radius: 0;
      }
      .mobile-menu-toggle {
        display: block;
      }
    }
    @media (max-width: 640px) {
      .hero-title {
        font-size: 28px;
      }
      .hero-metrics-grid, .feature-grid-3, .scenario-grid, .price-compare-cards, .reviews-grid, .steps-flow-grid, .cases-gallery, .article-links-list {
        grid-template-columns: 1fr;
      }
      .eval-score-banner {
        flex-direction: column;
        text-align: center;
      }
      .eval-stars-block {
        text-align: center;
      }
      .top-bar-inner {
        justify-content: center;
      }
      .header-nav {
        height: auto;
      }
    }