:root {
      --rainbow-red: #ff4d4f;
      --rainbow-orange: #fa8c16;
      --rainbow-yellow: #fadb14;
      --rainbow-green: #52c41a;
      --rainbow-cyan: #13c2c2;
      --rainbow-blue: #1890ff;
      --rainbow-purple: #722ed1;
      --text-main: #262626;
      --text-sub: #595959;
      --text-light: #8c8c8c;
      --bg-page: #f9fbfd;
      --bg-card: #ffffff;
      --border-color: #f0f2f5;
      --primary: #1890ff;
      --primary-dark: #096dd9;
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }

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

    body {
      font-family: var(--font-family);
      color: var(--text-main);
      background-color: var(--bg-page);
      line-height: 1.6;
      overflow-x: hidden;
      background-image: 
        radial-gradient(circle at 10% 20%, rgba(24, 144, 255, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(114, 46, 209, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 50% 60%, rgba(82, 196, 26, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 90%, rgba(250, 140, 22, 0.04) 0%, transparent 40%);
      background-attachment: fixed;
    }

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

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

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(12px);
      border-bottom: 2px solid transparent;
      border-image: linear-gradient(90deg, var(--rainbow-red), var(--rainbow-orange), var(--rainbow-yellow), var(--rainbow-green), var(--rainbow-cyan), var(--rainbow-blue), var(--rainbow-purple)) 1;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }

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

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

    .brand-wrap .ai-page-logo {
      height: 42px;
      width: auto;
      display: block;
    }

    .brand-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .brand-badge {
      font-size: 11px;
      padding: 2px 8px;
      background: linear-gradient(135deg, #e6f7ff, #f9f0ff);
      color: var(--primary);
      border-radius: 20px;
      font-weight: 500;
      border: 1px solid rgba(24, 144, 255, 0.2);
    }

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

    .nav-links a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-sub);
      padding: 8px 14px;
      border-radius: 6px;
      display: inline-block;
    }

    .nav-links a:hover {
      color: var(--primary);
      background-color: #f0f7ff;
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 10px 22px;
      font-size: 15px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      border: none;
      transition: all 0.25s ease;
      white-space: nowrap;
    }

    .btn-rainbow {
      background: linear-gradient(90deg, #ff4d4f, #fa8c16, #52c41a, #1890ff, #722ed1);
      background-size: 300% 100%;
      color: #ffffff;
      box-shadow: 0 4px 15px rgba(24, 144, 255, 0.25);
      animation: rainbow-flow 6s ease infinite alternate;
    }

    .btn-rainbow:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(24, 144, 255, 0.35);
      color: #ffffff;
    }

    .btn-outline {
      border: 1px solid #d9d9d9;
      background: #ffffff;
      color: var(--text-main);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: #f0f7ff;
    }

    @keyframes rainbow-flow {
      0% { background-position: 0% 50%; }
      100% { background-position: 100% 50%; }
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 6px;
      flex-direction: column;
      gap: 5px;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-main);
      transition: 0.3s;
    }

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

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      border: 1px solid #ffd591;
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 13px;
      color: #d46b08;
      box-shadow: 0 2px 8px rgba(250, 140, 22, 0.08);
      margin-bottom: 24px;
    }

    .hero-title {
      font-size: 40px;
      font-weight: 800;
      color: #1a1a1a;
      line-height: 1.3;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero-title .highlight {
      background: linear-gradient(135deg, #fa541c 0%, #fa8c16 25%, #1890ff 70%, #722ed1 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--text-sub);
      max-width: 820px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }

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

    .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);
      padding: 24px 16px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      position: relative;
      overflow: hidden;
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
    }

    .stat-card:nth-child(1)::before { background: var(--rainbow-red); }
    .stat-card:nth-child(2)::before { background: var(--rainbow-green); }
    .stat-card:nth-child(3)::before { background: var(--rainbow-blue); }
    .stat-card:nth-child(4)::before { background: var(--rainbow-purple); }

    .stat-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    }

    .stat-num {
      font-size: 32px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: 14px;
      color: var(--text-sub);
    }

    /* 板块通用标题 */
    .section-head {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-tag {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 14px;
      border-radius: 20px;
      background: #f0f5ff;
      color: var(--primary);
      margin-bottom: 12px;
      border: 1px solid #d6e4ff;
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      color: #1f1f1f;
      margin-bottom: 12px;
    }

    .section-desc {
      font-size: 16px;
      color: var(--text-sub);
      max-width: 680px;
      margin: 0 auto;
    }

    .page-section {
      padding: 70px 0;
    }

    /* 模型矩阵胶囊云 */
    .models-stream-box {
      background: #ffffff;
      border: 1px solid #e8e8e8;
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.02);
      margin-bottom: 30px;
    }

    .model-tags-container {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .model-badge {
      background: #fafafa;
      border: 1px solid #f0f0f0;
      color: #262626;
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 500;
      transition: all 0.2s;
    }

    .model-badge:hover {
      background: #ffffff;
      border-color: var(--primary);
      color: var(--primary);
      box-shadow: 0 2px 8px rgba(24, 144, 255, 0.15);
      transform: translateY(-2px);
    }

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

    .service-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 28px 24px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
      transition: all 0.25s ease;
      display: flex;
      flex-direction: column;
      position: relative;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
      border-color: #adc6ff;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 18px;
      color: #ffffff;
    }

    .service-card:nth-child(6n+1) .service-icon { background: linear-gradient(135deg, #ff4d4f, #ff7875); }
    .service-card:nth-child(6n+2) .service-icon { background: linear-gradient(135deg, #fa8c16, #ffa940); }
    .service-card:nth-child(6n+3) .service-icon { background: linear-gradient(135deg, #52c41a, #73d13d); }
    .service-card:nth-child(6n+4) .service-icon { background: linear-gradient(135deg, #13c2c2, #36cfc9); }
    .service-card:nth-child(6n+5) .service-icon { background: linear-gradient(135deg, #1890ff, #40a9ff); }
    .service-card:nth-child(6n+6) .service-icon { background: linear-gradient(135deg, #722ed1, #9254de); }

    .service-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: #1f1f1f;
    }

    .service-desc {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.65;
      flex-grow: 1;
    }

    /* 一站式制作工作流 */
    .flow-steps-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }

    .flow-step-card {
      background: #ffffff;
      padding: 24px;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
      text-align: center;
      position: relative;
    }

    .step-badge {
      width: 38px;
      height: 38px;
      line-height: 38px;
      border-radius: 50%;
      background: #e6f7ff;
      color: var(--primary);
      font-weight: 700;
      margin: 0 auto 16px;
      font-size: 16px;
      border: 2px solid var(--primary);
    }

    .flow-step-card h3 {
      font-size: 17px;
      margin-bottom: 8px;
      color: #262626;
    }

    .flow-step-card p {
      font-size: 13px;
      color: var(--text-sub);
      line-height: 1.6;
    }

    /* 案例中心 */
    .media-card-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-bottom: 30px;
    }

    .media-card {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 12px rgba(0,0,0,0.03);
      transition: transform 0.25s ease;
    }

    .media-card:hover {
      transform: translateY(-4px);
    }

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

    .media-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .media-card-body {
      padding: 20px;
    }

    .media-card-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #262626;
    }

    .media-card-desc {
      font-size: 14px;
      color: var(--text-sub);
    }

    .banner-strip-wrap {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 24px;
    }

    .banner-img-item {
      border-radius: 8px;
      overflow: hidden;
      border: 1px solid var(--border-color);
      background: #ffffff;
      aspect-ratio: 4 / 3;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .banner-img-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* 对比评测表格与评级 */
    .eval-box {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid var(--border-color);
      padding: 36px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .eval-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      padding-bottom: 24px;
      border-bottom: 1px solid #f0f0f0;
      margin-bottom: 24px;
    }

    .eval-score-badge {
      display: flex;
      align-items: center;
      gap: 16px;
      background: linear-gradient(135deg, #fff7e6, #fffbe6);
      padding: 14px 24px;
      border-radius: 12px;
      border: 1px solid #ffe58f;
    }

    .score-stars {
      color: #faad14;
      font-size: 22px;
      letter-spacing: 2px;
    }

    .score-value {
      font-size: 26px;
      font-weight: 800;
      color: #d46b08;
    }

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

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

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

    .eval-table th {
      background: #fafafa;
      color: #595959;
      font-weight: 600;
    }

    .eval-table td.highlight-cell {
      background: rgba(24, 144, 255, 0.04);
      color: var(--primary);
      font-weight: 600;
    }

    /* Token 比价列表 */
    .token-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .token-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      padding: 24px;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
      transition: all 0.25s;
    }

    .token-card:hover {
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
      border-color: #d3adf7;
    }

    .token-card-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 16px;
    }

    .token-title {
      font-size: 18px;
      font-weight: 700;
    }

    .token-save-badge {
      font-size: 12px;
      background: #f6ffed;
      color: #52c41a;
      border: 1px solid #b7eb8f;
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
    }

    .token-price {
      font-size: 28px;
      font-weight: 800;
      color: #fa541c;
      margin-bottom: 14px;
    }

    .token-price small {
      font-size: 13px;
      color: var(--text-light);
      font-weight: 400;
    }

    .token-features {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .token-features li {
      font-size: 13px;
      color: var(--text-sub);
      padding: 6px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .token-features li::before {
      content: "✓";
      color: #52c41a;
      font-weight: bold;
    }

    /* 客户评价 6条 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .review-card {
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      padding: 24px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    }

    .review-user-info {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .user-avatar-initial {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: linear-gradient(135deg, #1890ff, #722ed1);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
    }

    .user-meta h4 {
      font-size: 15px;
      color: #262626;
      margin-bottom: 2px;
    }

    .user-meta p {
      font-size: 12px;
      color: var(--text-light);
    }

    .review-content {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.65;
    }

    /* FAQ 手风琴 */
    .faq-wrapper {
      max-width: 900px;
      margin: 0 auto;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 10px;
      margin-bottom: 12px;
      overflow: hidden;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    }

    .faq-question {
      padding: 18px 24px;
      font-size: 16px;
      font-weight: 600;
      color: #262626;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #ffffff;
      transition: background 0.2s;
    }

    .faq-question:hover {
      background: #f9fbfd;
      color: var(--primary);
    }

    .faq-icon {
      font-size: 18px;
      color: #8c8c8c;
      transition: transform 0.25s ease;
    }

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

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

    .faq-item.active .faq-answer {
      padding: 16px 24px;
      max-height: 300px;
      border-top: 1px solid #f0f0f0;
    }

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

    /* 表单与联系模块 */
    .contact-container {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 36px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    }

    .contact-info-panel h3 {
      font-size: 22px;
      margin-bottom: 16px;
      color: #262626;
    }

    .contact-info-panel p {
      font-size: 14px;
      color: var(--text-sub);
      margin-bottom: 24px;
      line-height: 1.7;
    }

    .info-list-item {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 16px;
      font-size: 14px;
      color: var(--text-main);
    }

    .info-icon-tag {
      width: 32px;
      height: 32px;
      background: #e6f7ff;
      color: var(--primary);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      font-size: 13px;
    }

    .qr-block-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 24px;
      padding: 16px;
      background: #fafafa;
      border-radius: 10px;
      border: 1px dashed #d9d9d9;
    }

    .qr-block-wrap img {
      width: 90px;
      height: 90px;
      object-fit: cover;
      border-radius: 6px;
      display: block;
    }

    .qr-text-meta h5 {
      font-size: 15px;
      margin-bottom: 4px;
      color: #262626;
    }

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

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

    .form-group label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #262626;
      margin-bottom: 6px;
    }

    .form-control {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid #d9d9d9;
      border-radius: 8px;
      font-size: 14px;
      color: var(--text-main);
      outline: none;
      background: #fafafa;
      transition: all 0.2s;
    }

    .form-control:focus {
      border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 2px rgba(24, 144, 255, 0.15);
    }

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

    /* 资讯与友情链接 */
    .resource-box {
      background: #ffffff;
      border-radius: 12px;
      padding: 24px;
      border: 1px solid var(--border-color);
      margin-bottom: 24px;
    }

    .resource-box h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 14px;
      color: #262626;
      border-left: 3px solid var(--primary);
      padding-left: 10px;
    }

    .link-pills-list {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .link-pills-list a {
      font-size: 13px;
      color: var(--text-sub);
      background: #f5f5f5;
      padding: 6px 14px;
      border-radius: 20px;
      border: 1px solid #e8e8e8;
    }

    .link-pills-list a:hover {
      color: var(--primary);
      border-color: var(--primary);
      background: #e6f7ff;
    }

    /* 页脚 */
    .site-footer {
      background: #ffffff;
      border-top: 1px solid #e8e8e8;
      padding: 40px 0 30px;
      color: #595959;
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
    }

    .footer-brand p {
      margin-top: 6px;
      color: #8c8c8c;
    }

    .footer-nav {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-nav a {
      color: #595959;
    }

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

    /* 浮动工具栏 */
    .float-dock {
      position: fixed;
      right: 20px;
      bottom: 40px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      z-index: 999;
    }

    .float-btn {
      width: 48px;
      height: 48px;
      background: #ffffff;
      border: 1px solid #e8e8e8;
      border-radius: 50%;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 18px;
      color: var(--text-main);
      transition: all 0.2s;
    }

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

    /* 响应式调整 */
    @media (max-width: 992px) {
      .hero-stats-grid { grid-template-columns: repeat(2, 1fr); }
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .flow-steps-grid { grid-template-columns: repeat(2, 1fr); }
      .reviews-grid { grid-template-columns: repeat(2, 1fr); }
      .token-grid { grid-template-columns: 1fr; }
      .contact-container { grid-template-columns: 1fr; }
      .banner-strip-wrap { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .mobile-menu-toggle { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 16px 20px;
        border-bottom: 1px solid #eee;
        box-shadow: 0 6px 12px rgba(0,0,0,0.05);
      }
      .nav-links.show { display: flex; }
      .hero-title { font-size: 28px; }
      .hero-subtitle { font-size: 15px; }
      .hero-stats-grid { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; }
      .flow-steps-grid { grid-template-columns: 1fr; }
      .media-card-grid { grid-template-columns: 1fr; }
      .reviews-grid { grid-template-columns: 1fr; }
      .banner-strip-wrap { grid-template-columns: 1fr; }
      .header-actions { display: none; }
    }