:root {
      --primary: #0284c7;
      --primary-light: #e0f2fe;
      --primary-dark: #0369a1;
      --accent: #0ea5e9;
      --accent-warm: #f59e0b;
      --text-main: #0f172a;
      --text-muted: #475569;
      --bg-page: #f8fafc;
      --bg-card: #ffffff;
      --bg-alt: #f1f5f9;
      --border-color: #e2e8f0;
      --border-focus: #38bdf8;
      --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
      --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
      --shadow-lg: 0 10px 25px rgba(15, 23, 42, 0.1);
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 16px;
      --radius-full: 9999px;
      --transition: all 0.25s ease-in-out;
    }

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

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-page);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

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

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

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

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

    .logo-box {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-box .ai-page-logo {
      height: 40px;
      width: auto;
    }

    .logo-text {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
      letter-spacing: -0.5px;
    }

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

    .nav-links a {
      font-size: 14px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 8px 12px;
      border-radius: var(--radius-sm);
    }

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

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      font-size: 15px;
      font-weight: 600;
      border-radius: var(--radius-md);
      cursor: pointer;
      border: 1px solid transparent;
      transition: var(--transition);
      text-align: center;
      white-space: nowrap;
    }

    .btn-primary {
      background-color: var(--primary);
      color: #ffffff;
      box-shadow: 0 2px 8px rgba(2, 132, 199, 0.3);
    }

    .btn-primary:hover {
      background-color: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(2, 132, 199, 0.4);
    }

    .btn-outline {
      border-color: var(--primary);
      color: var(--primary);
      background-color: transparent;
    }

    .btn-outline:hover {
      background-color: var(--primary-light);
    }

    .btn-sm {
      padding: 6px 14px;
      font-size: 13px;
    }

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

    /* 通用区块与标题 */
    .section-spacing {
      padding-top: 70px;
      padding-bottom: 70px;
    }

    .section-bg-alt {
      background-color: var(--bg-alt);
    }

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

    .section-tag {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      background-color: var(--primary-light);
      padding: 4px 12px;
      border-radius: var(--radius-full);
      margin-bottom: 12px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .section-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 14px;
      line-height: 1.3;
    }

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

    /* 首屏 Hero 区 */
    .hero-section {
      padding-top: 80px;
      padding-bottom: 80px;
      background: linear-gradient(180deg, #ffffff 0%, #f0f9ff 100%);
      border-bottom: 1px solid var(--border-color);
      text-align: center;
    }

    .hero-content {
      max-width: 860px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: #ffffff;
      border: 1px solid #bae6fd;
      border-radius: var(--radius-full);
      font-size: 14px;
      color: var(--primary-dark);
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
    }

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

    .hero-title-highlight {
      color: var(--primary);
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 36px;
    }

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

    .hero-features-strip {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 40px;
    }

    .hero-feat-card {
      background: #ffffff;
      padding: 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      text-align: left;
    }

    .hero-feat-card h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text-main);
    }

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

    /* 数据指标条 */
    .metrics-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .metric-card {
      background: var(--bg-card);
      padding: 28px 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: var(--transition);
    }

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

    .metric-value {
      font-size: 36px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 6px;
      line-height: 1;
    }

    .metric-label {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 4px;
    }

    .metric-desc {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* 关于我们 & 平台介绍 */
    .about-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .about-text h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 16px;
      color: var(--text-main);
    }

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

    .about-list {
      list-style: none;
      margin-top: 20px;
    }

    .about-list li {
      font-size: 14px;
      color: var(--text-main);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .about-list-icon {
      width: 18px;
      height: 18px;
      background-color: var(--primary-light);
      color: var(--primary);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
    }

    .about-visual {
      background: #ffffff;
      padding: 24px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
    }

    .platform-caps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .cap-item {
      padding: 16px;
      border-radius: var(--radius-md);
      background-color: var(--bg-alt);
    }

    .cap-item h5 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    .cap-item p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 服务能力与场景矩阵 */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background-color: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      padding: 28px;
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }

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

    .service-card-tag {
      align-self: flex-start;
      font-size: 12px;
      font-weight: 600;
      padding: 3px 10px;
      background-color: var(--bg-alt);
      color: var(--text-muted);
      border-radius: var(--radius-sm);
      margin-bottom: 16px;
    }

    .service-card h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 12px;
    }

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

    /* 一站式制作特性 */
    .creation-showcase {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .creation-box {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 28px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .creation-box h4 {
      font-size: 19px;
      font-weight: 700;
      color: var(--text-main);
    }

    .creation-box p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .pill-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .pill-item {
      font-size: 12px;
      background-color: var(--primary-light);
      color: var(--primary-dark);
      padding: 4px 10px;
      border-radius: var(--radius-full);
      font-weight: 500;
    }

    /* 支持模型展示区 */
    .models-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
      margin-top: 32px;
    }

    .model-chip {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 8px 18px;
      border-radius: var(--radius-full);
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .model-chip:hover {
      border-color: var(--primary);
      color: var(--primary);
      transform: translateY(-2px);
    }

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

    .process-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      padding: 24px 20px;
      text-align: center;
      position: relative;
      transition: var(--transition);
    }

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

    .process-num {
      width: 44px;
      height: 44px;
      background: var(--primary);
      color: #ffffff;
      font-size: 18px;
      font-weight: 800;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
    }

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

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

    /* 案例展示区 */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .gallery-item {
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

    .gallery-item:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .gallery-media {
      width: 100%;
      height: 240px;
      background-color: var(--bg-alt);
      overflow: hidden;
    }

    .gallery-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .gallery-item:hover .gallery-media img {
      transform: scale(1.03);
    }

    .gallery-info {
      padding: 20px;
    }

    .gallery-info h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .gallery-info p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 对比评测 */
    .review-score-banner {
      background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
      color: #ffffff;
      padding: 32px;
      border-radius: var(--radius-lg);
      margin-bottom: 36px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 20px;
    }

    .review-score-left h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 8px;
    }

    .review-score-left p {
      font-size: 14px;
      opacity: 0.9;
    }

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

    .score-badge {
      font-size: 40px;
      font-weight: 900;
      background: rgba(255, 255, 255, 0.2);
      padding: 8px 24px;
      border-radius: var(--radius-md);
      border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .score-meta {
      font-size: 14px;
      line-height: 1.6;
    }

    .table-container {
      width: 100%;
      overflow-x: auto;
      background: var(--bg-card);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

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

    .compare-table th, .compare-table td {
      padding: 18px 20px;
      border-bottom: 1px solid var(--border-color);
    }

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

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

    .highlight-col {
      background-color: rgba(2, 132, 199, 0.03);
      font-weight: 600;
      color: var(--primary-dark);
    }

    /* Token比价参考表 */
    .token-table-wrap {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    /* 需求匹配与表单 */
    .matching-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: start;
    }

    .form-card {
      background: var(--bg-card);
      padding: 36px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
    }

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

    .form-label {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 6px;
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      font-size: 14px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      outline: none;
      transition: var(--transition);
      font-family: inherit;
    }

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(2, 132, 199, 0.15);
    }

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

    /* 客户评价卡片 */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .testimonial-card {
      background: var(--bg-card);
      padding: 26px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .testimonial-content {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid var(--border-color);
      padding-top: 14px;
    }

    .user-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background-color: var(--primary-light);
      color: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 15px;
    }

    .user-meta h5 {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
    }

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

    /* 常见问题 FAQ 折叠 */
    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: var(--transition);
    }

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

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

    .faq-icon {
      font-size: 18px;
      color: var(--primary);
      transition: transform 0.2s 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-color: #fafbfc;
    }

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

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

    /* 资讯与百科文章 */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .news-card {
      background: var(--bg-card);
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
    }

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

    .news-tag {
      align-self: flex-start;
      font-size: 11px;
      font-weight: 600;
      color: var(--primary);
      background-color: var(--primary-light);
      padding: 2px 8px;
      border-radius: 4px;
      margin-bottom: 12px;
    }

    .news-card h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
      line-height: 1.4;
    }

    .news-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .news-link {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    /* 加盟代理模块 */
    .agency-box {
      background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
      border: 1px solid #bbf7d0;
      border-radius: var(--radius-lg);
      padding: 40px;
      text-align: center;
    }

    .agency-box h3 {
      font-size: 26px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 14px;
    }

    .agency-box p {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto 28px auto;
      line-height: 1.7;
    }

    .agency-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 32px;
      text-align: left;
    }

    .agency-card {
      background: #ffffff;
      padding: 20px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
    }

    .agency-card h5 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
      color: var(--text-main);
    }

    .agency-card p {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0;
    }

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

    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background-color: var(--primary);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: var(--shadow-lg);
      cursor: pointer;
      position: relative;
      transition: var(--transition);
      border: none;
    }

    .float-btn:hover {
      background-color: var(--primary-dark);
      transform: scale(1.08);
    }

    .qr-popup {
      position: absolute;
      right: 60px;
      bottom: 0;
      background: #ffffff;
      padding: 12px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-color);
      display: none;
      width: 140px;
      text-align: center;
    }

    .float-btn:hover .qr-popup {
      display: block;
    }

    .qr-popup img {
      width: 116px;
      height: 116px;
      margin-bottom: 6px;
    }

    .qr-popup span {
      font-size: 11px;
      color: var(--text-muted);
      display: block;
    }

    /* 页脚 */
    .site-footer {
      background-color: #0f172a;
      color: #94a3b8;
      padding-top: 60px;
      padding-bottom: 30px;
      font-size: 14px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand h4 {
      color: #ffffff;
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .footer-col h5 {
      color: #ffffff;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a:hover {
      color: #38bdf8;
    }

    .footer-contact-item {
      margin-bottom: 10px;
      display: flex;
      gap: 8px;
      font-size: 13px;
    }

    .friend-links-area {
      border-top: 1px solid #1e293b;
      padding-top: 24px;
      margin-bottom: 24px;
      font-size: 13px;
    }

    .friend-links-title {
      color: #ffffff;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .friend-links-list {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .friend-links-list a {
      color: #94a3b8;
    }

    .friend-links-list a:hover {
      color: #38bdf8;
    }

    .footer-bottom {
      border-top: 1px solid #1e293b;
      padding-top: 24px;
      text-align: center;
      font-size: 12px;
      color: #64748b;
    }

    /* 响应式适配 */
    @media (max-width: 992px) {
      .hero-features-strip, .metrics-grid, .services-grid, .testimonials-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .about-layout, .matching-layout, .footer-grid, .process-grid, .agency-grid {
        grid-template-columns: 1fr;
      }
      .creation-showcase, .gallery-grid {
        grid-template-columns: 1fr;
      }
      .review-score-banner {
        flex-direction: column;
        text-align: center;
      }
      .review-score-right {
        justify-content: center;
      }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
      }
      .nav-links.active {
        display: flex;
      }
      .hero-title {
        font-size: 30px;
      }
      .section-title {
        font-size: 26px;
      }
      .hero-features-strip, .metrics-grid, .services-grid, .testimonials-grid, .news-grid {
        grid-template-columns: 1fr;
      }
    }