:root {
      --primary-yellow: #FFD000;
      --primary-hover: #E5BB00;
      --accent-yellow-light: #FFF9E6;
      --accent-yellow-subtle: #FFFDF5;
      --dark-text: #18191B;
      --mid-text: #4E525A;
      --light-text: #828894;
      --border-color: #EBECEF;
      --card-bg: #FFFFFF;
      --page-bg: #F8F9FA;
      --card-shadow: 0 8px 24px rgba(24, 25, 27, 0.04);
      --hover-shadow: 0 16px 32px rgba(255, 208, 0, 0.16);
      --container-width: 1200px;
    }

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

    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      color: var(--dark-text);
      background-color: var(--page-bg);
      line-height: 1.6;
    }

    body {
      overflow-x: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
    }

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

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

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

    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .brand-wrap .logo-box {
      max-height: 40px;
      display: flex;
      align-items: center;
    }

    .brand-wrap .brand-name {
      font-size: 20px;
      font-weight: 800;
      color: var(--dark-text);
      letter-spacing: -0.5px;
    }

    .brand-wrap .brand-tag {
      background: var(--primary-yellow);
      color: var(--dark-text);
      font-size: 11px;
      font-weight: 700;
      padding: 2px 8px;
      border-radius: 4px;
      margin-left: 4px;
    }

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

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

    .nav-links li a:hover {
      color: var(--dark-text);
      background: var(--accent-yellow-light);
    }

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

    .btn-nav-primary {
      background: var(--primary-yellow);
      color: var(--dark-text);
      text-decoration: none;
      font-weight: 700;
      font-size: 14px;
      padding: 9px 20px;
      border-radius: 8px;
      border: 1px solid #E5BB00;
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .btn-nav-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(255, 208, 0, 0.35);
    }

    .mobile-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--dark-text);
    }

    /* 醒目 Hero 首屏 (无图片) */
    .hero-section {
      background: linear-gradient(180deg, #FFFDF5 0%, #FFFFFF 100%);
      padding: 70px 0 60px 0;
      border-bottom: 1px solid var(--border-color);
      position: relative;
    }

    .hero-content {
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--accent-yellow-light);
      border: 1px solid rgba(255, 208, 0, 0.4);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 700;
      color: #946C00;
      margin-bottom: 24px;
    }

    .hero-badge .dot {
      width: 8px;
      height: 8px;
      background: #FF9900;
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 8px #FF9900;
    }

    .hero-title {
      font-size: 42px;
      font-weight: 900;
      line-height: 1.25;
      color: var(--dark-text);
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .hero-title .highlight {
      background: linear-gradient(180deg, transparent 65%, var(--primary-yellow) 65%);
      padding: 0 4px;
    }

    .hero-desc {
      font-size: 18px;
      color: var(--mid-text);
      max-width: 760px;
      margin: 0 auto 36px auto;
      line-height: 1.6;
    }

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

    .btn-hero-main {
      background: var(--primary-yellow);
      color: var(--dark-text);
      font-size: 16px;
      font-weight: 800;
      padding: 14px 34px;
      border-radius: 10px;
      text-decoration: none;
      border: 2px solid #E5BB00;
      box-shadow: 0 8px 20px rgba(255, 208, 0, 0.35);
      transition: all 0.25s ease;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .btn-hero-main:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(255, 208, 0, 0.45);
    }

    .btn-hero-secondary {
      background: #FFFFFF;
      color: var(--dark-text);
      font-size: 16px;
      font-weight: 700;
      padding: 14px 28px;
      border-radius: 10px;
      text-decoration: none;
      border: 2px solid var(--border-color);
      transition: all 0.25s ease;
    }

    .btn-hero-secondary:hover {
      border-color: var(--dark-text);
      background: var(--accent-yellow-subtle);
    }

    /* 核心数据卡片 */
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 10px;
    }

    .stat-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 24px 20px;
      text-align: left;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease;
    }

    .stat-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: var(--primary-yellow);
    }

    .stat-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary-yellow);
    }

    .stat-card .stat-number {
      font-size: 28px;
      font-weight: 900;
      color: var(--dark-text);
      margin-bottom: 4px;
    }

    .stat-card .stat-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--mid-text);
      margin-bottom: 4px;
    }

    .stat-card .stat-sub {
      font-size: 12px;
      color: var(--light-text);
    }

    /* 通用Section */
    section.section-block {
      padding: 70px 0;
      border-bottom: 1px solid var(--border-color);
    }

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

    .section-eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 800;
      color: #946C00;
      background: var(--accent-yellow-light);
      padding: 4px 12px;
      border-radius: 6px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--dark-text);
      letter-spacing: -0.5px;
      margin-bottom: 14px;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--mid-text);
      line-height: 1.6;
    }

    /* 平台介绍模块 */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .about-text h3 {
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 16px;
      color: var(--dark-text);
    }

    .about-text p {
      font-size: 15px;
      color: var(--mid-text);
      margin-bottom: 16px;
      line-height: 1.7;
    }

    .about-features {
      list-style: none;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 24px;
    }

    .about-features li {
      font-size: 14px;
      font-weight: 700;
      color: var(--dark-text);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .about-features li::before {
      content: "✓";
      color: #946C00;
      font-weight: 900;
      background: var(--primary-yellow);
      width: 20px;
      height: 20px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 12px;
    }

    .media-card-box {
      background: #FFFFFF;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }

    .media-card-box .img-container {
      width: 100%;
      line-height: 0;
      background: #F0F2F5;
    }

    .media-card-box .img-container img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .media-card-box .card-caption {
      padding: 16px 20px;
      font-size: 14px;
      font-weight: 600;
      color: var(--mid-text);
      background: #FFFFFF;
    }

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

    .service-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 28px 24px;
      box-shadow: var(--card-shadow);
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
    }

    .service-card:hover {
      transform: translateY(-4px);
      border-color: var(--primary-yellow);
      box-shadow: var(--hover-shadow);
    }

    .service-icon-box {
      width: 48px;
      height: 48px;
      background: var(--primary-yellow);
      color: var(--dark-text);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 900;
      margin-bottom: 20px;
    }

    .service-card h4 {
      font-size: 18px;
      font-weight: 800;
      color: var(--dark-text);
      margin-bottom: 10px;
    }

    .service-card p {
      font-size: 14px;
      color: var(--mid-text);
      line-height: 1.6;
      flex-grow: 1;
    }

    .service-tag {
      margin-top: 16px;
      font-size: 12px;
      font-weight: 700;
      color: #7A5700;
      background: var(--accent-yellow-light);
      display: inline-block;
      padding: 3px 10px;
      border-radius: 4px;
      width: fit-content;
    }

    /* 矩阵模型支持 */
    .models-cloud-wrap {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 32px;
      box-shadow: var(--card-shadow);
      text-align: center;
    }

    .models-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-top: 20px;
    }

    .model-chip {
      background: var(--accent-yellow-subtle);
      border: 1px solid #EFE4BF;
      color: var(--dark-text);
      font-size: 13px;
      font-weight: 700;
      padding: 8px 16px;
      border-radius: 30px;
      transition: all 0.2s ease;
    }

    .model-chip:hover {
      background: var(--primary-yellow);
      transform: scale(1.05);
    }

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

    .process-card {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 24px 20px;
      position: relative;
      box-shadow: var(--card-shadow);
    }

    .process-num {
      width: 36px;
      height: 36px;
      background: var(--dark-text);
      color: var(--primary-yellow);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 16px;
      margin-bottom: 16px;
    }

    .process-card h4 {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 8px;
      color: var(--dark-text);
    }

    .process-card p {
      font-size: 13px;
      color: var(--mid-text);
      line-height: 1.5;
    }

    /* 对比评测板块 */
    .compare-container {
      background: #FFFFFF;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-shadow: var(--card-shadow);
    }

    .compare-score-header {
      background: linear-gradient(90deg, #FFF9E6 0%, #FFFFFF 100%);
      padding: 28px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid #F0E6C8;
      flex-wrap: wrap;
      gap: 20px;
    }

    .score-left h4 {
      font-size: 20px;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .score-left p {
      font-size: 14px;
      color: var(--mid-text);
    }

    .score-right {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .rating-badge {
      background: var(--primary-yellow);
      color: var(--dark-text);
      font-size: 24px;
      font-weight: 900;
      padding: 10px 20px;
      border-radius: 10px;
      border: 2px solid #E5BB00;
      box-shadow: 0 4px 12px rgba(255, 208, 0, 0.3);
    }

    .rating-stars {
      color: #FF9900;
      font-size: 20px;
      letter-spacing: 2px;
    }

    .table-responsive {
      width: 100%;
      overflow-x: auto;
    }

    .compare-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
    }

    .compare-table th, .compare-table td {
      padding: 16px 24px;
      font-size: 14px;
      border-bottom: 1px solid var(--border-color);
    }

    .compare-table th {
      background: #FAFAFB;
      font-weight: 800;
      color: var(--dark-text);
    }

    .compare-table td.highlight-col {
      background: #FFFDF5;
      font-weight: 700;
      color: var(--dark-text);
      border-left: 2px solid var(--primary-yellow);
      border-right: 2px solid var(--primary-yellow);
    }

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

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

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

    .review-card .quote-text {
      font-size: 14px;
      color: var(--mid-text);
      line-height: 1.6;
      margin-bottom: 20px;
      position: relative;
    }

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

    .avatar-icon {
      width: 40px;
      height: 40px;
      background: var(--accent-yellow-light);
      color: #946C00;
      font-weight: 800;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
    }

    .author-info .author-name {
      font-size: 14px;
      font-weight: 800;
      color: var(--dark-text);
    }

    .author-info .author-role {
      font-size: 12px;
      color: var(--light-text);
    }

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

    .faq-item {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      overflow: hidden;
      transition: border-color 0.25s ease;
    }

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

    .faq-question {
      width: 100%;
      padding: 18px 24px;
      text-align: left;
      background: none;
      border: none;
      font-size: 15px;
      font-weight: 700;
      color: var(--dark-text);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .faq-question:hover {
      background: var(--accent-yellow-subtle);
    }

    .faq-icon {
      font-size: 18px;
      font-weight: 700;
      transition: transform 0.25s ease;
    }

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

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: #FAFAFA;
    }

    .faq-item.active .faq-answer {
      max-height: 250px;
      padding: 16px 24px 20px 24px;
      border-top: 1px solid var(--border-color);
    }

    .faq-answer p {
      font-size: 14px;
      color: var(--mid-text);
      line-height: 1.6;
    }

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

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

    .contact-info-col p {
      font-size: 14px;
      color: var(--mid-text);
      margin-bottom: 24px;
    }

    .contact-items-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 30px;
    }

    .contact-items-list li {
      font-size: 14px;
      color: var(--dark-text);
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .contact-items-list strong {
      min-width: 80px;
      color: var(--light-text);
    }

    .qr-box-wrap {
      display: flex;
      align-items: center;
      gap: 20px;
      padding: 16px;
      background: var(--accent-yellow-subtle);
      border: 1px solid #EFE4BF;
      border-radius: 12px;
    }

    .qr-img {
      width: 90px;
      height: 90px;
      border-radius: 6px;
      overflow: hidden;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .qr-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .qr-text h5 {
      font-size: 15px;
      font-weight: 800;
      margin-bottom: 4px;
    }

    .qr-text p {
      font-size: 12px;
      color: var(--mid-text);
      margin-bottom: 0;
    }

    .form-col {
      background: #FAFAFA;
      padding: 30px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
    }

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

    .form-group label {
      display: block;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--dark-text);
    }

    .form-control {
      width: 100%;
      padding: 10px 14px;
      border: 1px solid var(--border-color);
      border-radius: 6px;
      font-size: 14px;
      background: #FFFFFF;
      color: var(--dark-text);
      outline: none;
      transition: border-color 0.2s ease;
    }

    .form-control:focus {
      border-color: #FFD000;
      box-shadow: 0 0 0 3px rgba(255, 208, 0, 0.2);
    }

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

    .btn-submit {
      width: 100%;
      background: var(--primary-yellow);
      color: var(--dark-text);
      font-size: 15px;
      font-weight: 800;
      padding: 12px;
      border-radius: 8px;
      border: 1px solid #E5BB00;
      cursor: pointer;
      transition: all 0.25s ease;
    }

    .btn-submit:hover {
      background: var(--primary-hover);
      box-shadow: 0 4px 12px rgba(255, 208, 0, 0.35);
    }

    /* 资讯与友情链接 */
    .articles-container {
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 14px;
      padding: 24px;
      margin-bottom: 30px;
    }

    .articles-grid-links {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 16px;
    }

    .article-item-link {
      display: block;
      padding: 12px 16px;
      background: #F8F9FA;
      border-radius: 8px;
      font-size: 13px;
      color: var(--mid-text);
      text-decoration: none;
      border: 1px solid transparent;
      transition: all 0.2s ease;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .article-item-link:hover {
      border-color: var(--primary-yellow);
      background: var(--accent-yellow-subtle);
      color: var(--dark-text);
    }

    .friendly-links-wrap {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 12px;
      padding: 20px 0;
      border-top: 1px solid var(--border-color);
    }

    .friendly-links-wrap strong {
      font-size: 13px;
      color: var(--mid-text);
      margin-right: 8px;
    }

    .friendly-links-wrap a {
      font-size: 13px;
      color: var(--mid-text);
      text-decoration: none;
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      padding: 4px 12px;
      border-radius: 4px;
      transition: all 0.2s ease;
    }

    .friendly-links-wrap a:hover {
      background: var(--primary-yellow);
      color: var(--dark-text);
      border-color: #E5BB00;
    }

    /* 页脚 */
    footer.site-footer {
      background: #18191B;
      color: #A0A5B1;
      padding: 48px 0 24px 0;
      margin-top: auto;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      border-bottom: 1px solid #2B2D33;
      padding-bottom: 24px;
      margin-bottom: 24px;
    }

    .footer-brand h4 {
      font-size: 20px;
      font-weight: 800;
      color: #FFFFFF;
      margin-bottom: 6px;
    }

    .footer-brand p {
      font-size: 13px;
      color: #828894;
    }

    .footer-nav {
      display: flex;
      gap: 20px;
      list-style: none;
      flex-wrap: wrap;
    }

    .footer-nav a {
      color: #A0A5B1;
      text-decoration: none;
      font-size: 13px;
      transition: color 0.2s ease;
    }

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

    .footer-bottom {
      text-align: center;
      font-size: 12px;
      color: #636874;
    }

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

    .float-btn {
      width: 48px;
      height: 48px;
      background: var(--primary-yellow);
      color: var(--dark-text);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      font-size: 18px;
      font-weight: 900;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
      border: 2px solid #FFFFFF;
      cursor: pointer;
      transition: transform 0.2s ease;
    }

    .float-btn:hover {
      transform: scale(1.1);
    }

    /* 响应式适配 */
    @media (max-width: 992px) {
      .hero-stats-grid,
      .services-grid,
      .process-steps-grid,
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-grid,
      .contact-wrapper {
        grid-template-columns: 1fr;
      }
      .articles-grid-links {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .mobile-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #FFFFFF;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
      }
      .nav-links.show {
        display: flex;
      }
      .hero-title {
        font-size: 28px;
      }
      .hero-stats-grid,
      .services-grid,
      .process-steps-grid,
      .reviews-grid {
        grid-template-columns: 1fr;
      }
      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }