:root {
      --bg-main: #f8fafc;
      --bg-white: #ffffff;
      --text-main: #0f172a;
      --text-muted: #475569;
      --neon-cyan: #06b6d4;
      --neon-blue: #3b82f6;
      --neon-purple: #8b5cf6;
      --neon-pink: #ec4899;
      --neon-green: #10b981;
      --primary-gradient: linear-gradient(135deg, #2563eb, #7c3aed, #06b6d4);
      --neon-glow: 0 0 20px rgba(6, 182, 212, 0.35);
      --border-color: #e2e8f0;
      --card-shadow: 0 10px 25px -5px rgba(15, 23, 42, 0.05), 0 8px 10px -6px rgba(15, 23, 42, 0.05);
      --card-hover-shadow: 0 20px 30px -10px rgba(99, 102, 241, 0.18), 0 0 15px rgba(6, 182, 212, 0.25);
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
    }
    html {
      scroll-behavior: smooth;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
    }
    body {
      background-color: var(--bg-main);
      color: var(--text-main);
      line-height: 1.65;
      overflow-x: hidden;
      position: relative;
    }
    body::before {
      content: "";
      position: fixed;
      top: -200px;
      left: 50%;
      transform: translateX(-50%);
      width: 1000px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.12), rgba(139, 92, 246, 0.08), transparent 70%);
      z-index: -1;
      pointer-events: none;
    }
    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.25s ease;
    }
    .container {
      width: 100%;
      max-width: 1240px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 20px;
      padding-right: 20px;
    }
    .section-padding {
      padding: 72px 0;
    }
    .text-center {
      text-align: center;
    }
    .neon-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 16px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #0284c7;
      background: rgba(6, 182, 212, 0.08);
      border: 1px solid rgba(6, 182, 212, 0.3);
      border-radius: 9999px;
      margin-bottom: 16px;
      box-shadow: 0 0 12px rgba(6, 182, 212, 0.15);
    }
    .neon-badge::before {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #06b6d4;
      box-shadow: 0 0 8px #06b6d4;
    }
    .section-title {
      font-size: 2rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
      letter-spacing: -0.02em;
    }
    .section-desc {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 720px;
      margin: 0 auto 48px auto;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 28px;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      border: none;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .btn-primary {
      background: linear-gradient(135deg, #0284c7, #6366f1);
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(2, 132, 199, 0.35);
    }
    .btn-primary:hover {
      background: linear-gradient(135deg, #0369a1, #4f46e5);
      box-shadow: 0 6px 20px rgba(99, 102, 241, 0.45);
      transform: translateY(-2px);
    }
    .btn-neon {
      background: linear-gradient(135deg, #06b6d4, #3b82f6);
      color: #ffffff;
      box-shadow: 0 4px 18px rgba(6, 182, 212, 0.4);
    }
    .btn-neon:hover {
      box-shadow: 0 6px 25px rgba(6, 182, 212, 0.6);
      transform: translateY(-2px);
    }
    .btn-secondary {
      background: #ffffff;
      color: var(--text-main);
      border: 1px solid var(--border-color);
    }
    .btn-secondary:hover {
      background: #f1f5f9;
      border-color: #cbd5e1;
      transform: translateY(-2px);
    }
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand-area {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .ai-page-logo {
      height: 38px;
      width: auto;
      object-fit: contain;
    }
    .brand-name {
      font-size: 1.25rem;
      font-weight: 800;
      background: linear-gradient(135deg, #0284c7, #7c3aed);
      -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: 500;
      color: var(--text-muted);
      padding: 8px 14px;
      border-radius: 6px;
    }
    .nav-links li a:hover {
      color: #0284c7;
      background: rgba(6, 182, 212, 0.06);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .mobile-menu-btn {
      display: none;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 6px;
      color: var(--text-main);
    }
    .hero-section {
      padding: 72px 0 54px 0;
      text-align: center;
      position: relative;
    }
    .hero-title {
      font-size: 2.5rem;
      font-weight: 900;
      line-height: 1.2;
      color: #0f172a;
      margin-bottom: 20px;
      letter-spacing: -0.03em;
    }
    .hero-title span {
      background: linear-gradient(135deg, #0284c7, #8b5cf6, #ec4899);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: 1.15rem;
      color: var(--text-muted);
      max-width: 820px;
      margin: 0 auto 32px auto;
      line-height: 1.7;
    }
    .hero-cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-bottom: 40px;
    }
    .stat-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 20px 16px;
      box-shadow: var(--card-shadow);
      position: relative;
      overflow: hidden;
    }
    .stat-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #06b6d4, #3b82f6, #ec4899);
    }
    .stat-number {
      font-size: 1.8rem;
      font-weight: 800;
      color: #0284c7;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .model-ticker {
      background: #ffffff;
      border: 1px solid rgba(226, 232, 240, 0.8);
      border-radius: 12px;
      padding: 16px;
      box-shadow: var(--card-shadow);
    }
    .ticker-title {
      font-size: 0.85rem;
      font-weight: 700;
      color: #64748b;
      text-transform: uppercase;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }
    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 8px;
    }
    .tag-item {
      font-size: 0.8rem;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 6px;
      background: #f1f5f9;
      color: #334155;
      border: 1px solid #e2e8f0;
      transition: all 0.2s ease;
    }
    .tag-item:hover {
      background: #e0f2fe;
      color: #0284c7;
      border-color: #7dd3fc;
      transform: translateY(-1px);
    }
    .intro-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .intro-card {
      background: #ffffff;
      border-radius: 14px;
      padding: 30px 24px;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      transition: all 0.3s ease;
      position: relative;
    }
    .intro-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--card-hover-shadow);
      border-color: rgba(6, 182, 212, 0.4);
    }
    .intro-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      margin-bottom: 18px;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
      color: #0284c7;
      border: 1px solid rgba(6, 182, 212, 0.2);
    }
    .intro-card h3 {
      font-size: 1.2rem;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
    }
    .intro-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.6;
    }
    .service-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .service-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 24px;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .service-card:hover {
      transform: translateY(-3px);
      border-color: #38bdf8;
      box-shadow: var(--card-hover-shadow);
    }
    .service-card-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 12px;
    }
    .service-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      color: #0f172a;
    }
    .service-tag {
      font-size: 0.72rem;
      padding: 2px 8px;
      border-radius: 4px;
      background: #f0fdf4;
      color: #16a34a;
      border: 1px solid #bbf7d0;
      font-weight: 600;
    }
    .service-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      flex-grow: 1;
      line-height: 1.6;
    }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 36px;
    }
    .gallery-item {
      background: #ffffff;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
    }
    .gallery-img-wrap {
      width: 100%;
      background: #e2e8f0;
      overflow: hidden;
      position: relative;
    }
    .gallery-img-wrap img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
    }
    .gallery-item:hover .gallery-img-wrap img {
      transform: scale(1.03);
    }
    .gallery-content {
      padding: 20px;
    }
    .gallery-content h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .gallery-content p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }
    .banner-strip-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 24px;
    }
    .banner-card {
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      background: #ffffff;
      box-shadow: var(--card-shadow);
    }
    .banner-card img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
    }
    .banner-card-info {
      padding: 10px 12px;
      font-size: 0.85rem;
      font-weight: 600;
      color: #334155;
      text-align: center;
    }
    .eval-container {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #e2e8f0;
      box-shadow: var(--card-shadow);
      padding: 36px;
    }
    .eval-header-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
      padding-bottom: 24px;
      margin-bottom: 24px;
      border-bottom: 1px solid #f1f5f9;
    }
    .eval-score-box {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .score-circle {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0284c7, #8b5cf6);
      color: #ffffff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      box-shadow: 0 0 15px rgba(2, 132, 199, 0.4);
    }
    .score-circle .big {
      font-size: 1.5rem;
      line-height: 1;
    }
    .score-circle .small {
      font-size: 0.65rem;
      opacity: 0.85;
    }
    .eval-score-text h4 {
      font-size: 1.25rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 4px;
    }
    .eval-stars {
      color: #f59e0b;
      font-size: 1.1rem;
      letter-spacing: 2px;
    }
    .table-wrapper {
      overflow-x: auto;
    }
    .eval-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 680px;
    }
    .eval-table th, .eval-table td {
      padding: 14px 18px;
      border-bottom: 1px solid #f1f5f9;
      font-size: 0.92rem;
    }
    .eval-table th {
      background: #f8fafc;
      color: #475569;
      font-weight: 700;
    }
    .eval-table tr:hover td {
      background: #f0fdfa;
    }
    .td-highlight {
      font-weight: 700;
      color: #0284c7;
    }
    .price-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .price-card {
      background: #ffffff;
      border-radius: 14px;
      padding: 32px 24px;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      position: relative;
    }
    .price-card.featured {
      border: 2px solid #06b6d4;
      box-shadow: 0 0 25px rgba(6, 182, 212, 0.25);
    }
    .price-badge-top {
      position: absolute;
      top: -12px;
      right: 24px;
      background: linear-gradient(135deg, #06b6d4, #3b82f6);
      color: #fff;
      font-size: 0.75rem;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
    }
    .price-card h3 {
      font-size: 1.3rem;
      font-weight: 800;
      margin-bottom: 8px;
    }
    .price-card .price-num {
      font-size: 2.2rem;
      font-weight: 900;
      color: #0f172a;
      margin-bottom: 16px;
    }
    .price-card .price-num span {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--text-muted);
    }
    .price-features {
      list-style: none;
      margin-bottom: 24px;
      flex-grow: 1;
    }
    .price-features li {
      font-size: 0.9rem;
      color: var(--text-muted);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .price-features li::before {
      content: "✓";
      color: #10b981;
      font-weight: 900;
    }
    .flow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .step-box {
      background: #ffffff;
      padding: 24px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      position: relative;
    }
    .step-number {
      font-size: 1.8rem;
      font-weight: 900;
      color: #06b6d4;
      opacity: 0.8;
      margin-bottom: 8px;
    }
    .step-box h4 {
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .step-box p {
      font-size: 0.88rem;
      color: var(--text-muted);
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .review-card {
      background: #ffffff;
      border-radius: 12px;
      padding: 24px;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .review-text {
      font-size: 0.92rem;
      color: var(--text-main);
      line-height: 1.6;
      margin-bottom: 16px;
      position: relative;
    }
    .reviewer-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f1f5f9;
      padding-top: 12px;
    }
    .reviewer-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, #0284c7, #8b5cf6);
      color: #fff;
      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: #0f172a;
    }
    .reviewer-info p {
      font-size: 0.78rem;
      color: var(--text-muted);
    }
    .faq-wrapper {
      max-width: 900px;
      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;
      box-shadow: var(--card-shadow);
      transition: all 0.25s ease;
    }
    .faq-header {
      padding: 18px 20px;
      font-size: 1rem;
      font-weight: 700;
      color: #0f172a;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    .faq-icon {
      font-size: 1.2rem;
      color: #0284c7;
      transition: transform 0.3s ease;
    }
    .faq-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      background: #f8fafc;
    }
    .faq-body {
      padding: 16px 20px 20px 20px;
      font-size: 0.92rem;
      color: var(--text-muted);
      line-height: 1.65;
      border-top: 1px solid #f1f5f9;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-item.active .faq-content {
      max-height: 240px;
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .article-box {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 24px;
      box-shadow: var(--card-shadow);
    }
    .article-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .article-list li {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      border-bottom: 1px dashed #e2e8f0;
      padding-bottom: 10px;
    }
    .article-list li a {
      font-size: 0.93rem;
      font-weight: 600;
      color: #1e293b;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .article-list li a:hover {
      color: #0284c7;
      transform: translateX(4px);
    }
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 36px;
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      box-shadow: var(--card-shadow);
      padding: 36px;
    }
    .form-group {
      margin-bottom: 18px;
    }
    .form-group label {
      display: block;
      font-size: 0.88rem;
      font-weight: 600;
      margin-bottom: 6px;
      color: #334155;
    }
    .form-control {
      width: 100%;
      padding: 12px 14px;
      font-size: 0.92rem;
      border: 1px solid #cbd5e1;
      border-radius: 8px;
      background: #f8fafc;
      color: #0f172a;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .form-control:focus {
      border-color: #06b6d4;
      box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
      background: #ffffff;
    }
    textarea.form-control {
      min-height: 110px;
      resize: vertical;
    }
    .contact-info-panel {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .contact-meta-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 20px;
    }
    .contact-meta-list li {
      font-size: 0.9rem;
      color: #475569;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .qrcode-box {
      text-align: center;
      background: #ffffff;
      padding: 16px;
      border-radius: 8px;
      border: 1px solid #e2e8f0;
    }
    .qrcode-box img {
      width: 140px;
      height: 140px;
      object-fit: contain;
      margin: 0 auto 8px auto;
      display: block;
    }
    .qrcode-box p {
      font-size: 0.82rem;
      color: #64748b;
    }
    .site-footer {
      background: #0f172a;
      color: #94a3b8;
      padding: 56px 0 32px 0;
      border-top: 1px solid #1e293b;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1.5fr;
      gap: 36px;
      margin-bottom: 40px;
    }
    .footer-col h4 {
      color: #f8fafc;
      font-size: 1.05rem;
      font-weight: 700;
      margin-bottom: 16px;
    }
    .footer-links-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .footer-links-wrap a {
      color: #94a3b8;
      font-size: 0.88rem;
      padding: 4px 10px;
      background: #1e293b;
      border-radius: 4px;
    }
    .footer-links-wrap a:hover {
      color: #38bdf8;
      background: #334155;
    }
    .footer-bottom {
      border-top: 1px solid #1e293b;
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 0.85rem;
    }
    .floating-bar {
      position: fixed;
      right: 20px;
      bottom: 30px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 99;
    }
    .float-btn {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid #cbd5e1;
      color: #0284c7;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      cursor: pointer;
      transition: all 0.2s;
    }
    .float-btn:hover {
      background: #0284c7;
      color: #ffffff;
      transform: scale(1.08);
    }
    @media (max-width: 1024px) {
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .intro-grid, .service-grid, .price-grid, .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .flow-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      .banner-strip-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 16px 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: 0 10px 20px rgba(0,0,0,0.08);
      }
      .nav-links.active {
        display: flex;
      }
      .nav-links li {
        width: 100%;
      }
      .nav-links li a {
        display: block;
        padding: 10px 0;
      }
      .mobile-menu-btn {
        display: block;
      }
      .hero-title {
        font-size: 1.9rem;
      }
      .intro-grid, .service-grid, .gallery-grid, .price-grid, .reviews-grid, .flow-steps, .articles-grid, .contact-wrapper {
        grid-template-columns: 1fr;
      }
      .hero-stats-grid {
        grid-template-columns: 1fr;
      }
      .banner-strip-grid {
        grid-template-columns: 1fr;
      }
    }