:root {
      --bg-main: #0a0518;
      --bg-card: rgba(26, 15, 46, 0.75);
      --bg-card-hover: rgba(38, 22, 68, 0.9);
      --border-neon: rgba(217, 70, 239, 0.3);
      --border-cyan: rgba(6, 182, 212, 0.3);
      --pink-neon: #ec4899;
      --purple-neon: #a855f7;
      --purple-deep: #7e22ce;
      --cyan-neon: #06b6d4;
      --text-white: #f8fafc;
      --text-muted: #cbd5e1;
      --text-dim: #94a3b8;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }

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

    body {
      background-color: var(--bg-main);
      color: var(--text-white);
      font-family: var(--font-family);
      line-height: 1.6;
      overflow-x: hidden;
      background-image: 
        radial-gradient(circle at 10% 15%, rgba(236, 72, 153, 0.15), transparent 40%),
        radial-gradient(circle at 90% 45%, rgba(168, 85, 247, 0.18), transparent 45%),
        radial-gradient(circle at 50% 85%, rgba(6, 182, 212, 0.12), transparent 40%);
      background-attachment: fixed;
    }

    /* 统一外层居中容器 */
    .container {
      width: 100%;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* 顶部导航 */
    .header-nav {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(10, 5, 24, 0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-neon);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }
    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text-white);
    }
    .logo-img-box {
      max-width: 140px;
      display: flex;
      align-items: center;
    }
    .brand-title {
      font-size: 1.25rem;
      font-weight: 700;
      letter-spacing: 1px;
      background: linear-gradient(90deg, #f472b6, #c084fc, #38bdf8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav-menu {
      display: flex;
      align-items: center;
    }
    /* 关键约束：.nav-links 的 gap 属性设置为 0 */
    .nav-links {
      display: flex;
      list-style: none;
      gap: 0;
      align-items: center;
    }
    .nav-links li a {
      color: var(--text-muted);
      text-decoration: none;
      font-size: 0.95rem;
      padding: 8px 14px;
      transition: all 0.25s ease;
      display: block;
      border-radius: 4px;
    }
    .nav-links li a:hover,
    .nav-links li a.active {
      color: #fff;
      background: rgba(217, 70, 239, 0.15);
      text-shadow: 0 0 8px rgba(236, 72, 153, 0.6);
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 14px;
    }
    .btn-portal {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 9px 20px;
      border-radius: 9999px;
      font-size: 0.92rem;
      font-weight: 600;
      text-decoration: none;
      color: #fff;
      background: linear-gradient(135deg, #ec4899, #8b5cf6);
      box-shadow: 0 0 16px rgba(236, 72, 153, 0.4);
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.2);
    }
    .btn-portal:hover {
      box-shadow: 0 0 24px rgba(236, 72, 153, 0.8);
      transform: translateY(-1px);
    }

    .nav-toggle-btn {
      display: none;
      background: transparent;
      border: 1px solid var(--border-neon);
      color: var(--text-white);
      padding: 6px 10px;
      border-radius: 6px;
      font-size: 1.2rem;
      cursor: pointer;
    }

    /* 通用区块排版 */
    .section-wrap {
      padding: 70px 0;
      position: relative;
    }
    .section-header {
      text-align: center;
      margin-bottom: 45px;
    }
    .section-tag {
      display: inline-block;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--cyan-neon);
      padding: 4px 14px;
      background: rgba(6, 182, 212, 0.1);
      border: 1px solid var(--border-cyan);
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 2.1rem;
      font-weight: 700;
      margin-bottom: 12px;
      background: linear-gradient(90deg, #ffffff, #f0abfc, #67e8f9);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto;
    }

    /* 首屏 HERO（严格规定：无任何图片） */
    .hero-section {
      padding: 90px 0 65px;
      text-align: center;
      position: relative;
    }
    .hero-badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 18px;
      border-radius: 9999px;
      background: rgba(236, 72, 153, 0.12);
      border: 1px solid rgba(236, 72, 153, 0.4);
      color: #f472b6;
      font-size: 0.88rem;
      margin-bottom: 24px;
      box-shadow: 0 0 20px rgba(236, 72, 153, 0.2);
    }
    /* H1 精确改写（<= 20字） */
    .hero-h1 {
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #ffffff 20%, #f472b6 65%, #c084fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-intro {
      font-size: 1.12rem;
      color: var(--text-muted);
      max-width: 820px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-cta-group {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 18px;
      margin-bottom: 45px;
    }
    .btn-main-glow {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 34px;
      border-radius: 12px;
      background: linear-gradient(90deg, #ec4899, #d946ef, #8b5cf6);
      color: #ffffff;
      font-size: 1.05rem;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 0 25px rgba(217, 70, 239, 0.65);
      border: 1px solid rgba(255, 255, 255, 0.3);
      transition: all 0.3s ease;
    }
    .btn-main-glow:hover {
      box-shadow: 0 0 35px rgba(217, 70, 239, 0.9);
      transform: translateY(-2px);
    }
    .btn-outline-neon {
      display: inline-flex;
      align-items: center;
      padding: 13px 30px;
      border-radius: 12px;
      border: 1px solid var(--cyan-neon);
      background: rgba(6, 182, 212, 0.08);
      color: #67e8f9;
      font-size: 1.05rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
    }
    .btn-outline-neon:hover {
      background: rgba(6, 182, 212, 0.2);
      box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
      transform: translateY(-2px);
    }

    /* 纯CSS首屏科技核心矩阵（代替图片展示） */
    .hero-data-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 15px;
    }
    .hero-stat-card {
      background: rgba(30, 16, 54, 0.7);
      border: 1px solid var(--border-neon);
      border-radius: 14px;
      padding: 22px 16px;
      text-align: center;
      transition: transform 0.3s, border-color 0.3s;
      box-shadow: inset 0 0 15px rgba(168, 85, 247, 0.08);
    }
    .hero-stat-card:hover {
      transform: translateY(-4px);
      border-color: var(--pink-neon);
    }
    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      color: #f472b6;
      line-height: 1.1;
      margin-bottom: 6px;
      text-shadow: 0 0 10px rgba(236, 72, 153, 0.5);
    }
    .stat-label {
      font-size: 0.88rem;
      color: var(--text-dim);
    }

    /* 模型滚动标签云 */
    .model-tags-bar {
      margin-top: 36px;
      padding: 16px 20px;
      background: rgba(20, 10, 38, 0.6);
      border-radius: 12px;
      border: 1px dashed rgba(217, 70, 239, 0.35);
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .model-chip {
      display: inline-block;
      padding: 4px 12px;
      border-radius: 6px;
      font-size: 0.82rem;
      background: rgba(255, 255, 255, 0.06);
      color: #e2e8f0;
      border: 1px solid rgba(255, 255, 255, 0.08);
      transition: all 0.2s;
    }
    .model-chip:hover {
      background: rgba(236, 72, 153, 0.2);
      border-color: var(--pink-neon);
      color: #fff;
    }

    /* 通用卡片容器网格 */
    .cards-grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }
    .cards-grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .cards-grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .neon-card {
      background: var(--bg-card);
      border: 1px solid var(--border-neon);
      border-radius: 16px;
      padding: 26px;
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
    }
    .neon-card:hover {
      background: var(--bg-card-hover);
      border-color: rgba(236, 72, 153, 0.65);
      transform: translateY(-5px);
      box-shadow: 0 12px 35px rgba(217, 70, 239, 0.25);
    }
    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(139, 92, 246, 0.2));
      border: 1px solid var(--border-neon);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 16px;
      color: #f472b6;
    }
    .card-title {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: #fff;
    }
    .card-text {
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 平台介绍大板块 */
    .about-feature-box {
      background: linear-gradient(135deg, rgba(29, 14, 56, 0.85), rgba(16, 7, 34, 0.95));
      border: 1px solid rgba(217, 70, 239, 0.4);
      border-radius: 20px;
      padding: 40px;
      margin-bottom: 30px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.45);
    }
    .about-feature-box h3 {
      font-size: 1.6rem;
      color: #f472b6;
      margin-bottom: 15px;
    }
    .platform-points {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 25px;
    }
    .point-item {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 12px;
      padding: 18px;
    }
    .point-item strong {
      display: block;
      color: var(--cyan-neon);
      font-size: 1.05rem;
      margin-bottom: 6px;
    }

    /* 案例中心配图卡片 */
    .case-media-card {
      background: var(--bg-card);
      border: 1px solid var(--border-neon);
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .case-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #120924;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .case-img-wrap.square-ratio {
      aspect-ratio: 1 / 1;
    }
    .case-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .case-media-card:hover .case-img-wrap img {
      transform: scale(1.05);
    }
    .case-info {
      padding: 18px 20px;
      flex-grow: 1;
    }

    /* 宣传图画廊展区 */
    .banner-gallery-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 30px;
    }
    .gallery-img-card {
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-neon);
      background: #15092a;
    }
    .gallery-img-card img {
      width: 100%;
      height: auto;
      display: block;
      transition: transform 0.3s ease;
    }
    .gallery-img-card:hover img {
      transform: scale(1.03);
    }

    /* 对比评测精美表格与评分看板 */
    .review-score-banner {
      background: linear-gradient(90deg, rgba(236, 72, 153, 0.2), rgba(168, 85, 247, 0.2));
      border: 1px solid var(--pink-neon);
      border-radius: 16px;
      padding: 24px 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 28px;
    }
    .score-left {
      display: flex;
      align-items: center;
      gap: 18px;
    }
    .big-score {
      font-size: 3.2rem;
      font-weight: 900;
      color: #fb7185;
      text-shadow: 0 0 20px rgba(251, 113, 133, 0.8);
      line-height: 1;
    }
    .score-detail h4 {
      font-size: 1.3rem;
      color: #fff;
    }
    .star-rating {
      color: #facc15;
      font-size: 1.2rem;
      letter-spacing: 2px;
      margin-top: 4px;
    }

    .custom-table-container {
      width: 100%;
      overflow-x: auto;
      border-radius: 14px;
      border: 1px solid var(--border-neon);
      background: rgba(18, 9, 36, 0.85);
    }
    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 680px;
    }
    .compare-table th, 
    .compare-table td {
      padding: 16px 20px;
      border-bottom: 1px solid rgba(217, 70, 239, 0.15);
      font-size: 0.95rem;
    }
    .compare-table th {
      background: rgba(36, 17, 68, 0.9);
      color: var(--cyan-neon);
      font-weight: 700;
    }
    .compare-table tr:last-child td {
      border-bottom: none;
    }
    .compare-table tr:hover td {
      background: rgba(236, 72, 153, 0.05);
    }
    .highlight-col {
      color: #f472b6;
      font-weight: 600;
      background: rgba(236, 72, 153, 0.07);
    }

    /* 流程步骤条 */
    .process-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }
    .process-item {
      background: var(--bg-card);
      border: 1px solid var(--border-neon);
      border-radius: 14px;
      padding: 24px 20px;
      position: relative;
    }
    .step-number {
      font-size: 1.8rem;
      font-weight: 900;
      color: rgba(236, 72, 153, 0.4);
      margin-bottom: 8px;
      line-height: 1;
    }

    /* FAQ 手风琴 */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item {
      background: rgba(26, 14, 48, 0.75);
      border: 1px solid var(--border-neon);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.25s;
    }
    .faq-question {
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      font-size: 1.02rem;
      color: #fff;
    }
    .faq-question:hover {
      background: rgba(217, 70, 239, 0.1);
      color: #f472b6;
    }
    .faq-icon-arrow {
      font-size: 1.2rem;
      transition: transform 0.3s;
      color: var(--cyan-neon);
    }
    .faq-item.active .faq-icon-arrow {
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
      background: rgba(14, 7, 28, 0.6);
      padding: 0 22px;
      color: var(--text-muted);
      font-size: 0.94rem;
      line-height: 1.7;
    }
    .faq-item.active .faq-answer {
      max-height: 280px;
      padding: 14px 22px 20px;
      border-top: 1px solid rgba(217, 70, 239, 0.12);
    }

    /* 客户真实评价 6 条卡片 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .review-card {
      background: var(--bg-card);
      border: 1px solid var(--border-neon);
      border-radius: 14px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .user-avatar-placeholder {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #ec4899, #6366f1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      color: #fff;
      font-size: 1.1rem;
    }
    .user-meta h5 {
      font-size: 1rem;
      color: #fff;
    }
    .user-meta span {
      font-size: 0.82rem;
      color: var(--cyan-neon);
    }
    .review-body {
      font-size: 0.93rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 资讯与百科文章 */
    .news-article-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      margin-top: 20px;
    }
    .news-link-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      background: rgba(24, 12, 44, 0.7);
      border: 1px solid var(--border-neon);
      border-radius: 10px;
      text-decoration: none;
      color: var(--text-white);
      transition: all 0.25s;
    }
    .news-link-card:hover {
      background: rgba(217, 70, 239, 0.15);
      border-color: var(--pink-neon);
      transform: translateX(4px);
    }
    .news-link-card span {
      font-size: 0.95rem;
      font-weight: 500;
    }
    .news-link-card i {
      color: var(--cyan-neon);
      font-style: normal;
    }

    /* 表单区域 */
    .form-box {
      max-width: 780px;
      margin: 0 auto;
      background: rgba(26, 14, 48, 0.85);
      border: 1px solid var(--border-neon);
      border-radius: 18px;
      padding: 36px;
      box-shadow: 0 15px 45px rgba(0,0,0,0.5);
    }
    .form-group-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }
    .form-group {
      margin-bottom: 16px;
    }
    .form-group label {
      display: block;
      margin-bottom: 6px;
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .form-control {
      width: 100%;
      padding: 12px 16px;
      border-radius: 8px;
      background: rgba(14, 7, 28, 0.8);
      border: 1px solid rgba(217, 70, 239, 0.3);
      color: #fff;
      font-size: 0.95rem;
      outline: none;
      transition: border-color 0.2s;
    }
    .form-control:focus {
      border-color: var(--pink-neon);
      box-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
    }
    textarea.form-control {
      min-height: 110px;
      resize: vertical;
    }
    .btn-submit {
      width: 100%;
      padding: 14px;
      border-radius: 10px;
      background: linear-gradient(90deg, #ec4899, #a855f7);
      color: #fff;
      font-size: 1.05rem;
      font-weight: 700;
      border: none;
      cursor: pointer;
      box-shadow: 0 0 20px rgba(236, 72, 153, 0.5);
      transition: all 0.3s;
    }
    .btn-submit:hover {
      box-shadow: 0 0 30px rgba(236, 72, 153, 0.8);
      transform: translateY(-2px);
    }

    /* 客服与联系展示 */
    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      gap: 30px;
      align-items: start;
    }
    .contact-info-panel {
      background: var(--bg-card);
      border: 1px solid var(--border-neon);
      border-radius: 18px;
      padding: 30px;
    }
    .contact-item-row {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }
    .contact-qr-box {
      text-align: center;
      background: rgba(15, 8, 30, 0.8);
      padding: 18px;
      border-radius: 12px;
      border: 1px dashed var(--border-neon);
      margin-top: 20px;
    }
    .contact-qr-box img {
      max-width: 140px;
      height: auto;
      border-radius: 8px;
      display: inline-block;
      margin-bottom: 8px;
    }

    /* 友情链接与页脚 */
    .friend-links-area {
      padding: 24px 0;
      border-top: 1px solid rgba(217, 70, 239, 0.2);
      margin-top: 40px;
    }
    .friend-links-list {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
    }
    .friend-links-list a {
      color: var(--text-dim);
      text-decoration: none;
      font-size: 0.9rem;
      transition: color 0.2s;
    }
    .friend-links-list a:hover {
      color: var(--pink-neon);
    }

    .site-footer {
      background: #060310;
      border-top: 1px solid rgba(217, 70, 239, 0.25);
      padding: 36px 0 28px;
      color: var(--text-dim);
      font-size: 0.9rem;
    }
    .footer-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-copy {
      color: #94a3b8;
    }
    .footer-contact-items {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    /* 浮动组件：右侧客服与返回顶部 */
    .float-dock {
      position: fixed;
      right: 20px;
      bottom: 30px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1000;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: rgba(26, 14, 48, 0.85);
      border: 1px solid var(--pink-neon);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      box-shadow: 0 0 15px rgba(236, 72, 153, 0.4);
      cursor: pointer;
      font-size: 1.1rem;
      transition: all 0.25s;
    }
    .float-btn:hover {
      background: var(--pink-neon);
      transform: scale(1.08);
    }

    /* 响应式适配 */
    @media (max-width: 992px) {
      .cards-grid-4, .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .cards-grid-3, .reviews-grid, .banner-gallery-row, .platform-points {
        grid-template-columns: repeat(1, 1fr);
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .hero-data-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .news-article-list {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-toggle-btn {
        display: block;
      }
      .nav-menu {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #0d061e;
        border-bottom: 1px solid var(--border-neon);
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
      }
      .nav-menu.open {
        display: flex;
      }
      .nav-links {
        flex-direction: column;
        width: 100%;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links li a {
        padding: 10px 0;
      }
      .nav-actions {
        width: 100%;
        justify-content: flex-start;
        padding-top: 10px;
      }
      .hero-data-grid, .cards-grid-2, .cards-grid-4, .process-grid {
        grid-template-columns: 1fr;
      }
      .form-group-row {
        grid-template-columns: 1fr;
      }
      .section-title {
        font-size: 1.75rem;
      }
    }