:root {
      --candy-pink: #ff6584;
      --candy-purple: #705df2;
      --candy-cyan: #00d2d3;
      --candy-yellow: #ff9f43;
      --candy-green: #10ac84;
      --candy-bg: #fffbf9;
      --text-main: #222f3e;
      --text-muted: #576574;
      --card-bg: #ffffff;
      --border-color: #f1f2f6;
      --shadow-sm: 0 4px 14px rgba(112, 93, 242, 0.08);
      --shadow-md: 0 10px 30px rgba(112, 93, 242, 0.12);
      --shadow-hover: 0 14px 40px rgba(255, 101, 132, 0.18);
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 24px;
      --radius-full: 9999px;
    }
    * {
      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;
      background-color: var(--candy-bg);
      color: var(--text-main);
      line-height: 1.6;
    }
    body {
      overflow-x: hidden;
      background: radial-gradient(circle at 10% 10%, rgba(255, 101, 132, 0.04) 0%, transparent 40%),
                  radial-gradient(circle at 90% 80%, rgba(0, 210, 211, 0.05) 0%, transparent 40%),
                  radial-gradient(circle at 50% 50%, rgba(112, 93, 242, 0.03) 0%, transparent 60%);
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.25s ease;
    }
    ul {
      list-style: none;
    }
    .container {
      width: 100%;
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 24px;
    }
    .section-title-wrap {
      text-align: center;
      margin-bottom: 48px;
    }
    .candy-tag {
      display: inline-block;
      padding: 6px 16px;
      background: linear-gradient(135deg, rgba(255, 101, 132, 0.12), rgba(112, 93, 242, 0.12));
      color: var(--candy-purple);
      border-radius: var(--radius-full);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 12px;
      border: 1px solid rgba(112, 93, 242, 0.2);
    }
    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .section-desc {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      font-size: 15px;
      font-weight: 700;
      border-radius: var(--radius-full);
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
    }
    .btn-candy {
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple));
      color: #ffffff;
      box-shadow: 0 6px 20px rgba(255, 101, 132, 0.35);
    }
    .btn-candy:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(255, 101, 132, 0.5);
    }
    .btn-cyan {
      background: linear-gradient(135deg, var(--candy-cyan), #0abde3);
      color: #ffffff;
      box-shadow: 0 6px 20px rgba(0, 210, 211, 0.3);
    }
    .btn-cyan:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(0, 210, 211, 0.45);
    }
    .btn-outline {
      background: #ffffff;
      color: var(--candy-purple);
      border: 2px solid var(--candy-purple);
    }
    .btn-outline:hover {
      background: var(--candy-purple);
      color: #ffffff;
      transform: translateY(-2px);
    }

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(241, 242, 246, 0.9);
      transition: all 0.3s ease;
    }
    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
    }
    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .logo-container {
      width: 140px;
      display: flex;
      align-items: center;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
    }
    .nav-item {
      padding: 8px 14px;
      font-size: 15px;
      font-weight: 600;
      color: var(--text-main);
      border-radius: var(--radius-full);
      transition: all 0.2s ease;
    }
    .nav-item:hover {
      color: var(--candy-purple);
      background: rgba(112, 93, 242, 0.06);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--text-main);
      cursor: pointer;
    }

    /* Hero 首屏 */
    .hero-section {
      padding: 90px 0 70px;
      text-align: center;
      position: relative;
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 20px;
      background: #ffffff;
      border: 1px solid rgba(255, 101, 132, 0.25);
      border-radius: var(--radius-full);
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
      font-size: 14px;
      font-weight: 600;
      color: var(--candy-pink);
    }
    .hero-title {
      font-size: 46px;
      font-weight: 900;
      line-height: 1.25;
      color: var(--text-main);
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .hero-gradient-text {
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple) 60%, var(--candy-cyan));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 820px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
    }
    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .metric-card {
      background: #ffffff;
      border: 1px solid rgba(241, 242, 246, 0.9);
      border-radius: var(--radius-md);
      padding: 24px 16px;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }
    .metric-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(112, 93, 242, 0.3);
    }
    .metric-num {
      font-size: 32px;
      font-weight: 800;
      color: var(--candy-purple);
      margin-bottom: 4px;
    }
    .metric-label {
      font-size: 14px;
      color: var(--text-muted);
    }

    /* 模型墙 */
    .model-strip {
      padding: 24px 0 60px;
    }
    .model-strip-inner {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 24px 30px;
      box-shadow: var(--shadow-sm);
      border: 1px solid rgba(241, 242, 246, 0.9);
    }
    .model-strip-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      margin-bottom: 16px;
      text-align: center;
      letter-spacing: 1px;
    }
    .model-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }
    .model-chip {
      padding: 6px 14px;
      background: #fafafa;
      border: 1px solid #f0f0f0;
      border-radius: var(--radius-full);
      font-size: 13px;
      font-weight: 600;
      color: var(--text-main);
      transition: all 0.2s ease;
    }
    .model-chip:hover {
      background: rgba(112, 93, 242, 0.08);
      border-color: var(--candy-purple);
      color: var(--candy-purple);
    }

    /* 平台介绍板块 */
    .section-padding {
      padding: 80px 0;
    }
    .intro-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .intro-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 32px 24px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }
    .intro-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, var(--candy-pink), var(--candy-purple));
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .intro-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }
    .intro-card:hover::before {
      opacity: 1;
    }
    .intro-icon {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 24px;
      background: rgba(255, 101, 132, 0.1);
      color: var(--candy-pink);
    }
    .intro-card:nth-child(2) .intro-icon {
      background: rgba(112, 93, 242, 0.1);
      color: var(--candy-purple);
    }
    .intro-card:nth-child(3) .intro-icon {
      background: rgba(0, 210, 211, 0.1);
      color: var(--candy-cyan);
    }
    .intro-card:nth-child(4) .intro-icon {
      background: rgba(255, 159, 67, 0.1);
      color: var(--candy-yellow);
    }
    .intro-card:nth-child(5) .intro-icon {
      background: rgba(16, 172, 132, 0.1);
      color: var(--candy-green);
    }
    .intro-card:nth-child(6) .intro-icon {
      background: rgba(112, 93, 242, 0.1);
      color: var(--candy-purple);
    }
    .intro-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .intro-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.65;
    }

    /* 场景矩阵与服务能力 */
    .scenario-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .scenario-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 24px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .scenario-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(0, 210, 211, 0.4);
    }
    .scenario-tag {
      font-size: 12px;
      font-weight: 700;
      color: var(--candy-cyan);
      margin-bottom: 8px;
    }
    .scenario-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 10px;
      color: var(--text-main);
    }
    .scenario-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
      flex-grow: 1;
    }

    /* 一站式制作与工作流 */
    .workflow-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .step-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 28px 20px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      position: relative;
    }
    .step-badge {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-purple));
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .step-card h3 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .step-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 对比评测板块 */
    .evaluation-box {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 40px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
    }
    .eval-highlight {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      background: linear-gradient(135deg, rgba(255, 101, 132, 0.08), rgba(112, 93, 242, 0.08));
      border-radius: var(--radius-md);
      padding: 24px 32px;
      margin-bottom: 36px;
      border: 1px solid rgba(112, 93, 242, 0.15);
      gap: 20px;
    }
    .eval-score-wrap {
      display: flex;
      align-items: baseline;
      gap: 8px;
    }
    .eval-big-score {
      font-size: 48px;
      font-weight: 900;
      color: var(--candy-pink);
    }
    .eval-score-total {
      font-size: 20px;
      color: var(--text-muted);
      font-weight: 700;
    }
    .eval-stars {
      color: var(--candy-yellow);
      font-size: 24px;
      letter-spacing: 4px;
    }
    .table-container {
      width: 100%;
      overflow-x: auto;
    }
    .eval-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 650px;
    }
    .eval-table th, .eval-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
    }
    .eval-table th {
      background-color: #fafbfc;
      font-size: 15px;
      font-weight: 700;
      color: var(--text-main);
    }
    .eval-table td {
      font-size: 14px;
      color: var(--text-muted);
    }
    .eval-table tr:hover td {
      background-color: rgba(112, 93, 242, 0.02);
    }
    .feature-name {
      font-weight: 600;
      color: var(--text-main);
    }
    .tag-pro {
      display: inline-block;
      padding: 4px 10px;
      background: rgba(16, 172, 132, 0.1);
      color: var(--candy-green);
      border-radius: var(--radius-full);
      font-weight: 700;
      font-size: 12px;
    }

    /* 案例展示 */
    .cases-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .case-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }
    .case-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    .case-img-wrap {
      width: 100%;
      height: 220px;
      overflow: hidden;
      background: #f8f9fa;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .case-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .case-card:hover .case-img-wrap img {
      transform: scale(1.05);
    }
    .case-body {
      padding: 24px;
    }
    .case-category {
      font-size: 12px;
      font-weight: 700;
      color: var(--candy-purple);
      margin-bottom: 8px;
    }
    .case-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-main);
    }
    .case-desc {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 客户评价板块 */
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .review-card {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 28px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      position: relative;
      transition: all 0.3s ease;
    }
    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }
    .review-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }
    .review-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--candy-pink), var(--candy-yellow));
      color: #ffffff;
      font-weight: 800;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }
    .review-user-name {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
    }
    .review-user-role {
      font-size: 12px;
      color: var(--text-muted);
    }
    .review-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* FAQ 折叠面板 */
    .faq-container {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .faq-item {
      background: #ffffff;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: border-color 0.2s ease;
    }
    .faq-item.active {
      border-color: var(--candy-purple);
    }
    .faq-question {
      padding: 20px 24px;
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      user-select: none;
    }
    .faq-icon {
      font-size: 18px;
      color: var(--candy-purple);
      transition: transform 0.3s ease;
    }
    .faq-item.active .faq-icon {
      transform: rotate(180deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      background: #fafbfc;
    }
    .faq-answer-inner {
      padding: 0 24px 20px;
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* 需求匹配与表单 */
    .form-section-inner {
      background: #ffffff;
      border-radius: var(--radius-lg);
      padding: 48px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 48px;
      align-items: center;
    }
    .form-info h3 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 16px;
      line-height: 1.3;
    }
    .form-info p {
      font-size: 15px;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.7;
    }
    .contact-badge-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .contact-badge-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: var(--text-main);
      font-weight: 600;
    }
    .contact-badge-item span.icon-pill {
      padding: 6px 12px;
      border-radius: var(--radius-full);
      background: rgba(112, 93, 242, 0.1);
      color: var(--candy-purple);
      font-size: 12px;
    }
    .custom-form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .form-group label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-main);
    }
    .form-control {
      padding: 12px 16px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-color);
      font-size: 14px;
      background: #fafbfc;
      transition: all 0.25s ease;
      outline: none;
    }
    .form-control:focus {
      border-color: var(--candy-purple);
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(112, 93, 242, 0.15);
    }
    textarea.form-control {
      resize: vertical;
      min-height: 90px;
    }

    /* 资讯与友情链接 */
    .info-dual-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 32px;
    }
    .info-card-box {
      background: #ffffff;
      border-radius: var(--radius-md);
      padding: 32px;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }
    .info-card-box h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .article-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .article-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 0;
      border-bottom: 1px dashed var(--border-color);
    }
    .article-link {
      font-size: 14px;
      font-weight: 600;
      color: var(--text-main);
    }
    .article-link:hover {
      color: var(--candy-pink);
    }
    .article-date {
      font-size: 12px;
      color: var(--text-muted);
    }
    .links-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }
    .links-cloud a {
      display: inline-block;
      padding: 8px 14px;
      background: #f8f9fa;
      border-radius: var(--radius-sm);
      font-size: 13px;
      color: var(--text-muted);
      border: 1px solid var(--border-color);
    }
    .links-cloud a:hover {
      background: var(--candy-purple);
      color: #ffffff;
      border-color: var(--candy-purple);
    }

    /* 页脚 */
    .site-footer {
      background: #ffffff;
      border-top: 1px solid var(--border-color);
      padding: 60px 0 30px;
      color: var(--text-main);
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand p {
      font-size: 14px;
      color: var(--text-muted);
      margin-top: 14px;
      line-height: 1.7;
    }
    .footer-col h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 14px;
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: var(--candy-pink);
    }
    .qrcode-box {
      display: flex;
      align-items: center;
      gap: 16px;
      background: #fafbfc;
      padding: 16px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border-color);
    }
    .qrcode-img-wrap {
      width: 80px;
      height: 80px;
      background: #ffffff;
      padding: 4px;
      border-radius: 6px;
      box-shadow: var(--shadow-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .qrcode-img-wrap img {
      max-width: 100%;
      height: auto;
    }
    .qrcode-meta {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }
    .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
      color: var(--text-muted);
    }

    /* 浮动客服挂件 */
    .float-service {
      position: fixed;
      right: 24px;
      bottom: 40px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .float-btn {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #ffffff;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      font-size: 20px;
      color: var(--candy-purple);
      transition: all 0.3s ease;
      position: relative;
    }
    .float-btn:hover {
      background: var(--candy-purple);
      color: #ffffff;
      transform: scale(1.08);
    }
    .float-qr-pop {
      position: absolute;
      right: 64px;
      bottom: 0;
      background: #ffffff;
      padding: 12px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-hover);
      border: 1px solid var(--border-color);
      display: none;
      width: 160px;
      text-align: center;
    }
    .float-qr-pop img {
      max-width: 100%;
      border-radius: 6px;
    }
    .float-qr-pop p {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 6px;
    }
    .float-btn:hover .float-qr-pop {
      display: block;
    }

    /* 响应式样式适配 */
    @media (max-width: 1024px) {
      .hero-title {
        font-size: 36px;
      }
      .scenario-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .intro-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .workflow-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      .cases-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .form-section-inner {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 768px) {
      .hero-title {
        font-size: 28px;
      }
      .hero-desc {
        font-size: 15px;
      }
      .hero-metrics {
        grid-template-columns: repeat(2, 1fr);
      }
      .menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 20px 0;
        box-shadow: var(--shadow-md);
        border-bottom: 1px solid var(--border-color);
      }
      .nav-links.active {
        display: flex;
      }
      .nav-item {
        width: 100%;
        text-align: center;
        padding: 12px 0;
      }
      .scenario-grid,
      .intro-grid,
      .workflow-steps,
      .cases-grid,
      .reviews-grid {
        grid-template-columns: 1fr;
      }
      .info-dual-grid {
        grid-template-columns: 1fr;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .eval-highlight {
        flex-direction: column;
        align-items: flex-start;
      }
      .site-header .nav-actions .btn {
        display: none;
      }
      .float-service {
        right: 16px;
        bottom: 20px;
      }
    }