:root {
      --primary: #4f46e5;
      --primary-hover: #4338ca;
      --accent-cyan: #06b6d4;
      --accent-pink: #ec4899;
      --accent-violet: #8b5cf6;
      --bg-light: #f6f9fc;
      --card-bg: #ffffff;
      --text-main: #0f172a;
      --text-muted: #475569;
      --text-sub: #64748b;
      --border-color: #e2e8f0;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
      --shadow-md: 0 10px 25px -5px rgba(79, 70, 229, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 20px 35px -10px rgba(99, 102, 241, 0.12);
      --laser-glow: linear-gradient(135deg, rgba(6, 182, 212, 0.12), rgba(139, 92, 246, 0.15), rgba(236, 72, 153, 0.12));
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background-color: var(--bg-light);
      background-image: 
        radial-gradient(circle at 10% 20%, rgba(224, 242, 254, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 90% 40%, rgba(243, 232, 255, 0.7) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(252, 231, 243, 0.6) 0%, transparent 50%);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }

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

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

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.88);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

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

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

    .nav-brand-logo-wrap {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .brand-name {
      font-size: 1.25rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #1e1b4b 0%, #4f46e5 50%, #06b6d4 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

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

    .nav-links li a {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text-muted);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      position: relative;
    }

    .nav-links li a:hover {
      color: var(--primary);
      background: rgba(79, 70, 229, 0.06);
    }

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

    .btn-nav-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 18px;
      background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
      color: #ffffff !important;
      font-size: 0.9rem;
      font-weight: 600;
      border-radius: 9999px;
      box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
    }

    .btn-nav-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 18px rgba(79, 70, 229, 0.4);
    }

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

    /* 模块通用样式 */
    .section-wrap {
      padding: 72px 0;
      position: relative;
    }

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

    .section-tag {
      display: inline-block;
      padding: 6px 14px;
      font-size: 0.8rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.15) 100%);
      color: var(--primary);
      border: 1px solid rgba(79, 70, 229, 0.2);
      border-radius: 9999px;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      line-height: 1.25;
      color: var(--text-main);
      margin-bottom: 14px;
    }

    .section-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 首屏 Hero */
    .hero-section {
      padding: 80px 0 60px 0;
      text-align: center;
      position: relative;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 18px;
      background: #ffffff;
      border: 1px solid rgba(139, 92, 246, 0.3);
      border-radius: 9999px;
      box-shadow: 0 4px 15px rgba(139, 92, 246, 0.1);
      margin-bottom: 24px;
      font-size: 0.9rem;
      font-weight: 600;
      color: #6366f1;
    }

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

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

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

    .btn-laser-main {
      padding: 14px 34px;
      background: linear-gradient(135deg, #4f46e5 0%, #9333ea 50%, #06b6d4 100%);
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 700;
      border-radius: 9999px;
      box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
      border: none;
      cursor: pointer;
    }

    .btn-laser-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 32px rgba(79, 70, 229, 0.45);
      color: #ffffff;
    }

    .btn-laser-outline {
      padding: 13px 30px;
      background: #ffffff;
      color: var(--text-main);
      font-size: 1.05rem;
      font-weight: 700;
      border-radius: 9999px;
      border: 1px solid #cbd5e1;
      box-shadow: var(--shadow-sm);
    }

    .btn-laser-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: rgba(248, 250, 252, 0.9);
    }

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

    .stat-card {
      background: #ffffff;
      padding: 24px 16px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(226, 232, 240, 0.8);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #06b6d4, #8b5cf6, #ec4899);
    }

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

    .stat-num {
      font-size: 2.1rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 0.9rem;
      color: var(--text-sub);
      font-weight: 600;
    }

    /* 标签云/支持模型 */
    .model-tags-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
    }

    .model-pill {
      background: #ffffff;
      border: 1px solid #e2e8f0;
      padding: 6px 14px;
      border-radius: 9999px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #334155;
      box-shadow: 0 2px 5px rgba(0,0,0,0.02);
      transition: all 0.2s ease;
    }

    .model-pill:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: scale(1.05);
    }

    /* 服务与一站式制作卡片网格 */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 28px 24px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(99, 102, 241, 0.4);
    }

    .service-icon-box {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(6, 182, 212, 0.15));
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
    }

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

    .service-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
    }

    .service-badge {
      margin-top: 16px;
      display: inline-block;
      font-size: 0.78rem;
      font-weight: 600;
      padding: 4px 10px;
      background: #f1f5f9;
      color: #475569;
      border-radius: 6px;
      width: fit-content;
    }

    /* 行业方案 */
    .solutions-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .solution-item {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 24px 20px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-sm);
      transition: all 0.25s ease;
    }

    .solution-item:hover {
      border-color: var(--accent-cyan);
      box-shadow: var(--shadow-md);
    }

    .solution-item h4 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-main);
    }

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

    /* 标准流程时间线 */
    .timeline-steps {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 16px;
      position: relative;
    }

    .timeline-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 24px 18px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-sm);
      text-align: center;
      position: relative;
    }

    .step-badge {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--primary);
      color: #ffffff;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 14px auto;
      font-size: 0.95rem;
    }

    .timeline-card h4 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

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

    /* 案例中心图文 */
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

    .case-img-wrap {
      width: 100%;
      overflow: hidden;
      background: #f1f5f9;
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .case-img-wrap.square {
      aspect-ratio: 1 / 1;
    }

    .case-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .case-card:hover .case-img-wrap img {
      transform: scale(1.04);
    }

    .case-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

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

    .case-body p {
      font-size: 0.9rem;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 对比评测 */
    .eval-box {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 36px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-md);
    }

    .eval-score-banner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      padding: 20px 28px;
      background: linear-gradient(135deg, rgba(79, 70, 229, 0.06), rgba(6, 182, 212, 0.08));
      border-radius: var(--radius-md);
      border: 1px solid rgba(79, 70, 229, 0.15);
      margin-bottom: 28px;
    }

    .eval-stars {
      color: #f59e0b;
      font-size: 1.4rem;
      letter-spacing: 3px;
    }

    .eval-score-text {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary);
    }

    .eval-table-wrap {
      overflow-x: auto;
    }

    .eval-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      font-size: 0.95rem;
    }

    .eval-table th, .eval-table td {
      padding: 16px 20px;
      border-bottom: 1px solid #edf2f7;
    }

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

    .eval-table td:first-child {
      font-weight: 600;
      color: var(--text-main);
    }

    .highlight-col {
      background: rgba(79, 70, 229, 0.03);
      font-weight: 700;
      color: var(--primary);
    }

    /* 表单与需求匹配 */
    .form-container {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 40px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-md);
      max-width: 860px;
      margin: 0 auto;
    }

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

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group.full-width {
      grid-column: span 2;
    }

    .form-group label {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-main);
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      font-size: 0.95rem;
      border: 1px solid #cbd5e1;
      border-radius: var(--radius-sm);
      outline: none;
      background: #f8fafc;
      color: var(--text-main);
      transition: all 0.2s;
    }

    .form-control:focus {
      border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    }

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

    .btn-submit {
      width: 100%;
      padding: 14px;
      background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 700;
      border: none;
      border-radius: var(--radius-sm);
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(79, 70, 229, 0.3);
      transition: all 0.25s ease;
    }

    .btn-submit:hover {
      background: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
      box-shadow: 0 6px 20px rgba(79, 70, 229, 0.4);
    }

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

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

    .faq-item.active {
      border-color: var(--primary);
    }

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

    .faq-question::after {
      content: "+";
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--primary);
      transition: transform 0.25s ease;
    }

    .faq-item.active .faq-question::after {
      transform: rotate(45deg);
    }

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

    .faq-item.active .faq-answer {
      padding: 0 24px 20px 24px;
      max-height: 240px;
    }

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

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

    .review-stars {
      color: #f59e0b;
      margin-bottom: 12px;
      font-size: 0.9rem;
    }

    .review-content {
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .reviewer-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f1f5f9;
      padding-top: 14px;
    }

    .reviewer-avatar {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, #e0e7ff, #c7d2fe);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .reviewer-info h5 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .reviewer-info p {
      font-size: 0.8rem;
      color: var(--text-sub);
    }

    /* 文章与资讯 */
    .articles-container {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 32px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-sm);
    }

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

    .article-pill {
      padding: 8px 16px;
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      font-size: 0.9rem;
      color: var(--primary);
      font-weight: 600;
    }

    .article-pill:hover {
      background: rgba(79, 70, 229, 0.08);
      border-color: var(--primary);
    }

    /* 加盟代理与联系我们 */
    .contact-agent-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 28px;
    }

    .contact-card, .agent-card {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 36px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--shadow-sm);
    }

    .contact-card h3, .agent-card h3 {
      font-size: 1.4rem;
      font-weight: 800;
      margin-bottom: 16px;
      color: var(--text-main);
    }

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

    .qr-container {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #f8fafc;
      padding: 16px;
      border-radius: var(--radius-md);
      border: 1px solid #edf2f7;
    }

    .qr-box {
      width: 100px;
      height: 100px;
      background: #ffffff;
      border: 1px solid #e2e8f0;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    /* 友情链接与页脚 */
    .site-footer {
      background: #ffffff;
      border-top: 1px solid #e2e8f0;
      padding: 48px 0 32px 0;
      color: var(--text-muted);
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      flex-wrap: wrap;
      gap: 32px;
      margin-bottom: 36px;
    }

    .footer-brand {
      max-width: 360px;
    }

    .footer-links-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 14px;
    }

    .friend-links-box {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .friend-links-box a {
      font-size: 0.9rem;
      color: var(--text-muted);
      background: #f8fafc;
      padding: 6px 12px;
      border-radius: 6px;
      border: 1px solid #e2e8f0;
    }

    .friend-links-box a:hover {
      color: var(--primary);
      border-color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid #f1f5f9;
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 0.88rem;
      color: var(--text-sub);
    }

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

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

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

    /* 响应式断点 */
    @media (max-width: 1024px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .timeline-steps {
        grid-template-columns: repeat(3, 1fr);
      }
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .cases-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 16px 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        border-bottom: 1px solid #e2e8f0;
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li a {
        display: block;
        padding: 12px;
      }
      .mobile-menu-btn {
        display: block;
      }
      .hero-title {
        font-size: 2.2rem;
      }
      .section-title {
        font-size: 1.8rem;
      }
      .services-grid, 
      .solutions-grid, 
      .timeline-steps, 
      .reviews-grid, 
      .cases-grid, 
      .contact-agent-grid {
        grid-template-columns: 1fr;
      }
      .form-grid {
        grid-template-columns: 1fr;
      }
      .form-group.full-width {
        grid-column: span 1;
      }
      .eval-score-banner {
        flex-direction: column;
        align-items: flex-start;
      }
    }