:root {
      --primary: #4338ca;
      --primary-hover: #3730a3;
      --accent-yellow: #ffc72c;
      --accent-pink: #ff477e;
      --accent-cyan: #06d6a0;
      --accent-purple: #7209b7;
      --accent-blue: #118ab2;
      --bg-main: #fbfbf8;
      --bg-card: #ffffff;
      --text-main: #18181b;
      --text-muted: #52525b;
      --text-light: #71717a;
      --border-color: #e4e4e7;
      --border-doodle: #18181b;
      --shadow-doodle: 4px 4px 0px #18181b;
      --shadow-doodle-lg: 6px 6px 0px #18181b;
      --shadow-doodle-hover: 2px 2px 0px #18181b;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --container-width: 1200px;
    }

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-main);
      color: var(--text-main);
      line-height: 1.6;
      overflow-x: hidden;
      background-image: 
        radial-gradient(circle at 15% 20%, rgba(255, 199, 44, 0.12) 0%, transparent 25%),
        radial-gradient(circle at 85% 60%, rgba(255, 71, 126, 0.08) 0%, transparent 30%),
        radial-gradient(circle at 50% 90%, rgba(6, 214, 160, 0.08) 0%, transparent 35%);
      background-attachment: fixed;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(251, 251, 248, 0.96);
      backdrop-filter: blur(10px);
      border-bottom: 2px solid var(--border-doodle);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 76px;
      gap: 16px;
    }
    .brand-box {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand-box .ai-page-logo {
      height: 42px;
      width: auto;
      display: block;
    }
    .brand-name {
      font-size: 20px;
      font-weight: 900;
      color: var(--text-main);
      letter-spacing: -0.5px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .brand-badge {
      background: var(--accent-yellow);
      color: var(--text-main);
      font-size: 11px;
      font-weight: 800;
      padding: 2px 6px;
      border-radius: 6px;
      border: 1.5px solid var(--border-doodle);
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }
    .nav-links li a {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-main);
      padding: 8px 12px;
      border-radius: 8px;
      transition: all 0.2s ease;
      white-space: nowrap;
    }
    .nav-links li a:hover {
      background: var(--accent-yellow);
      color: var(--text-main);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .btn-doodle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 800;
      padding: 9px 18px;
      border-radius: var(--radius-sm);
      border: 2px solid var(--border-doodle);
      box-shadow: var(--shadow-doodle);
      cursor: pointer;
      transition: all 0.15s ease;
      background: var(--accent-yellow);
      color: var(--text-main);
      text-decoration: none;
    }
    .btn-doodle:hover {
      transform: translate(2px, 2px);
      box-shadow: var(--shadow-doodle-hover);
    }
    .btn-doodle-pink {
      background: var(--accent-pink);
      color: #ffffff;
    }
    .btn-doodle-cyan {
      background: var(--accent-cyan);
      color: var(--text-main);
    }
    .btn-doodle-dark {
      background: var(--text-main);
      color: #ffffff;
    }
    .mobile-menu-toggle {
      display: none;
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      padding: 6px 10px;
      font-size: 16px;
      font-weight: bold;
      border-radius: 6px;
      cursor: pointer;
    }

    /* 移动端菜单弹窗 */
    .mobile-nav-panel {
      display: none;
      position: absolute;
      top: 76px;
      left: 0;
      width: 100%;
      background: #ffffff;
      border-bottom: 2px solid var(--border-doodle);
      padding: 16px 20px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }
    .mobile-nav-panel.active {
      display: block;
    }
    .mobile-nav-list {
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
    .mobile-nav-list a {
      display: block;
      padding: 10px;
      background: var(--bg-main);
      border: 1.5px solid var(--border-doodle);
      border-radius: 6px;
      font-size: 13px;
      font-weight: bold;
      text-align: center;
    }

    /* 通用Section */
    .section-wrap {
      padding: 70px 0;
      position: relative;
    }
    .section-alt {
      background-color: #f4f4ee;
      border-top: 2px dashed var(--border-doodle);
      border-bottom: 2px dashed var(--border-doodle);
    }
    .section-head {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 45px auto;
    }
    .doodle-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 20px;
      border: 1.5px solid var(--border-doodle);
      background: #ffffff;
      box-shadow: 2px 2px 0px var(--border-doodle);
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 32px;
      font-weight: 900;
      color: var(--text-main);
      margin-bottom: 12px;
      letter-spacing: -0.5px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Hero 首屏 (无图片) */
    .hero-section {
      padding: 60px 0 70px 0;
      position: relative;
    }
    .hero-content {
      text-align: center;
      max-width: 960px;
      margin: 0 auto;
    }
    .hero-badge-group {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }
    .hero-badge {
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      box-shadow: 3px 3px 0px var(--border-doodle);
      padding: 6px 14px;
      font-size: 13px;
      font-weight: 800;
      border-radius: 30px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .hero-title {
      font-size: 44px;
      font-weight: 900;
      line-height: 1.25;
      color: var(--text-main);
      margin-bottom: 20px;
      letter-spacing: -1px;
    }
    .hero-title .highlight-pen {
      background: linear-gradient(180deg, transparent 65%, var(--accent-yellow) 65%);
      padding: 0 4px;
      display: inline;
    }
    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 820px;
      margin: 0 auto 35px auto;
      line-height: 1.7;
    }
    .hero-cta-box {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 45px;
      flex-wrap: wrap;
    }
    .btn-hero-primary {
      font-size: 18px;
      padding: 14px 32px;
      background: var(--accent-yellow);
      color: var(--text-main);
      border: 2.5px solid var(--border-doodle);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-doodle-lg);
      font-weight: 900;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: all 0.15s ease;
    }
    .btn-hero-primary:hover {
      transform: translate(3px, 3px);
      box-shadow: var(--shadow-doodle-hover);
    }
    .btn-hero-secondary {
      font-size: 17px;
      padding: 14px 28px;
      background: #ffffff;
      color: var(--text-main);
      border: 2.5px solid var(--border-doodle);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-doodle);
      font-weight: 800;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: all 0.15s ease;
    }
    .btn-hero-secondary:hover {
      background: #fdfbf7;
      transform: translate(2px, 2px);
      box-shadow: var(--shadow-doodle-hover);
    }
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin-top: 20px;
    }
    .stat-card {
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      border-radius: var(--radius-md);
      padding: 22px 16px;
      box-shadow: var(--shadow-doodle);
      text-align: center;
      position: relative;
    }
    .stat-card::before {
      content: "";
      position: absolute;
      top: 6px;
      left: 6px;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--border-doodle);
    }
    .stat-num {
      font-size: 32px;
      font-weight: 900;
      color: var(--text-main);
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .stat-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-muted);
    }

    /* 平台矩阵与聚合 */
    .model-tags-wrapper {
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      box-shadow: var(--shadow-doodle);
      border-radius: var(--radius-md);
      padding: 24px;
      margin-top: 30px;
    }
    .model-tags-title {
      font-size: 15px;
      font-weight: 900;
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .model-tags-list {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .model-pill {
      font-size: 12px;
      font-weight: 800;
      padding: 6px 12px;
      border-radius: 8px;
      border: 1.5px solid var(--border-doodle);
      background: var(--bg-main);
      transition: all 0.2s;
    }
    .model-pill:hover {
      background: var(--accent-yellow);
      transform: translateY(-2px);
    }

    /* 卡片网格 */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .grid-2 {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .doodle-card {
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      border-radius: var(--radius-md);
      padding: 24px;
      box-shadow: var(--shadow-doodle);
      transition: all 0.2s ease;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .doodle-card:hover {
      transform: translate(-3px, -3px);
      box-shadow: var(--shadow-doodle-lg);
    }
    .card-badge {
      position: absolute;
      top: -12px;
      right: 18px;
      font-size: 11px;
      font-weight: 900;
      padding: 3px 10px;
      border-radius: 20px;
      border: 1.5px solid var(--border-doodle);
      background: var(--accent-pink);
      color: #ffffff;
    }
    .card-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      border: 2px solid var(--border-doodle);
      background: var(--accent-yellow);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
      box-shadow: 2px 2px 0px var(--border-doodle);
    }
    .card-title {
      font-size: 19px;
      font-weight: 900;
      margin-bottom: 10px;
      color: var(--text-main);
    }
    .card-text {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 16px;
      flex-grow: 1;
    }
    .card-footer {
      border-top: 1.5px dashed var(--border-color);
      padding-top: 14px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .card-footer-tag {
      font-size: 12px;
      font-weight: 700;
      color: var(--primary);
    }

    /* 素材图片展示卡片 */
    .media-card {
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-doodle);
      display: flex;
      flex-direction: column;
    }
    .media-card-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #eef2f6;
      border-bottom: 2px solid var(--border-doodle);
      overflow: hidden;
    }
    .media-card-img-wrap.square {
      aspect-ratio: 1 / 1;
    }
    .media-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }
    .media-card:hover .media-card-img-wrap img {
      transform: scale(1.04);
    }
    .media-card-body {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    /* 评测与对比表格 */
    .review-score-banner {
      background: #ffffff;
      border: 2.5px solid var(--border-doodle);
      border-radius: var(--radius-lg);
      padding: 30px;
      box-shadow: var(--shadow-doodle-lg);
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 35px;
      flex-wrap: wrap;
      gap: 20px;
    }
    .review-score-left {
      display: flex;
      align-items: center;
      gap: 20px;
    }
    .score-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: var(--accent-yellow);
      border: 2.5px solid var(--border-doodle);
      box-shadow: 3px 3px 0px var(--border-doodle);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-weight: 900;
    }
    .score-val {
      font-size: 28px;
      line-height: 1;
    }
    .score-max {
      font-size: 11px;
      color: var(--text-muted);
    }
    .score-info h3 {
      font-size: 22px;
      font-weight: 900;
      margin-bottom: 4px;
    }
    .stars-box {
      color: #ff9800;
      font-size: 18px;
      font-weight: bold;
      letter-spacing: 2px;
    }
    .table-container {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-doodle);
    }
    .custom-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 600px;
    }
    .custom-table th, .custom-table td {
      padding: 16px 20px;
      border-bottom: 1.5px solid var(--border-color);
      font-size: 14px;
    }
    .custom-table th {
      background: var(--bg-main);
      font-weight: 900;
      color: var(--text-main);
      border-bottom: 2px solid var(--border-doodle);
    }
    .custom-table tr:hover {
      background: #fafaf5;
    }
    .tag-check {
      display: inline-block;
      padding: 2px 8px;
      background: #dcfce7;
      color: #166534;
      font-weight: 800;
      border-radius: 4px;
      font-size: 12px;
      border: 1px solid #86efac;
    }
    .tag-cross {
      display: inline-block;
      padding: 2px 8px;
      background: #fee2e2;
      color: #991b1b;
      font-weight: 800;
      border-radius: 4px;
      font-size: 12px;
      border: 1px solid #fca5a5;
    }

    /* 流程时间线 */
    .process-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .step-card {
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      border-radius: var(--radius-md);
      padding: 24px 18px;
      box-shadow: var(--shadow-doodle);
      position: relative;
    }
    .step-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--accent-pink);
      color: #ffffff;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1.5px solid var(--border-doodle);
      margin-bottom: 14px;
    }

    /* FAQ 手风琴 */
    .faq-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }
    .faq-item {
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-doodle);
      overflow: hidden;
    }
    .faq-question {
      padding: 16px 20px;
      font-weight: 800;
      font-size: 15px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
      background: #ffffff;
      transition: background 0.2s;
    }
    .faq-question:hover {
      background: #fdfbf7;
    }
    .faq-toggle-icon {
      font-size: 18px;
      font-weight: 900;
      transition: transform 0.2s;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.25s ease-out;
      border-top: 0px solid transparent;
      padding: 0 20px;
      background: #fcfcfc;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.6;
    }
    .faq-item.active .faq-answer {
      max-height: 250px;
      padding: 14px 20px 18px 20px;
      border-top: 1.5px dashed var(--border-color);
    }
    .faq-item.active .faq-toggle-icon {
      transform: rotate(45deg);
    }

    /* 客户评价卡片 */
    .testimonial-card {
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: var(--shadow-doodle);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .testimonial-quote {
      font-size: 14px;
      color: var(--text-main);
      margin-bottom: 18px;
      line-height: 1.6;
      font-style: italic;
    }
    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1.5px solid var(--border-color);
      padding-top: 12px;
    }
    .avatar-placeholder {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--accent-cyan);
      border: 1.5px solid var(--border-doodle);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: 14px;
    }
    .user-meta-name {
      font-size: 14px;
      font-weight: 800;
    }
    .user-meta-role {
      font-size: 12px;
      color: var(--text-muted);
    }

    /* 联系与需求表单板块 */
    .contact-wrapper {
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 30px;
      background: #ffffff;
      border: 2.5px solid var(--border-doodle);
      border-radius: var(--radius-lg);
      padding: 35px;
      box-shadow: var(--shadow-doodle-lg);
    }
    .form-group {
      margin-bottom: 16px;
    }
    .form-label {
      display: block;
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 6px;
      color: var(--text-main);
    }
    .form-control {
      width: 100%;
      padding: 11px 14px;
      border: 2px solid var(--border-doodle);
      border-radius: var(--radius-sm);
      font-size: 14px;
      background: #ffffff;
      color: var(--text-main);
      outline: none;
      font-family: inherit;
    }
    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 2px 2px 0px var(--primary);
    }
    textarea.form-control {
      resize: vertical;
      min-height: 95px;
    }
    .contact-info-panel {
      background: var(--bg-main);
      border: 2px dashed var(--border-doodle);
      border-radius: var(--radius-md);
      padding: 24px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .qr-box {
      text-align: center;
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      border-radius: var(--radius-sm);
      padding: 14px;
      box-shadow: var(--shadow-doodle);
      margin-bottom: 20px;
    }
    .qr-box img {
      max-width: 140px;
      height: auto;
      display: block;
      margin: 0 auto 8px auto;
    }
    .qr-title {
      font-size: 13px;
      font-weight: 800;
    }
    .contact-details-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
    }

    /* 文章与外链条目 */
    .news-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .news-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #ffffff;
      border: 1.5px solid var(--border-doodle);
      border-radius: var(--radius-sm);
      padding: 14px 20px;
      box-shadow: 2px 2px 0px var(--border-doodle);
      transition: all 0.2s;
    }
    .news-item:hover {
      background: var(--accent-yellow);
      transform: translateX(4px);
    }
    .news-item-title {
      font-size: 14px;
      font-weight: 800;
    }
    .news-item-tag {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-muted);
    }

    /* 代理加盟政策横幅 */
    .partner-banner {
      background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
      border: 2.5px solid var(--border-doodle);
      border-radius: var(--radius-lg);
      padding: 35px;
      box-shadow: var(--shadow-doodle-lg);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }
    .partner-content h3 {
      font-size: 26px;
      font-weight: 900;
      margin-bottom: 8px;
    }
    .partner-content p {
      font-size: 15px;
      color: var(--text-muted);
      max-width: 680px;
    }

    /* 页脚 */
    .site-footer {
      background: #ffffff;
      border-top: 2.5px solid var(--border-doodle);
      padding: 50px 0 30px 0;
      color: var(--text-main);
    }
    .footer-top {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 30px;
      margin-bottom: 40px;
    }
    .footer-col-title {
      font-size: 15px;
      font-weight: 900;
      margin-bottom: 14px;
      position: relative;
      display: inline-block;
    }
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-muted);
    }
    .footer-links a:hover {
      color: var(--primary);
      text-decoration: underline;
    }
    .friend-links-wrap {
      border-top: 1.5px dashed var(--border-color);
      padding-top: 20px;
      margin-bottom: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
      font-size: 13px;
      font-weight: 700;
    }
    .friend-links-wrap a {
      background: var(--bg-main);
      padding: 4px 10px;
      border: 1px solid var(--border-doodle);
      border-radius: 4px;
    }
    .friend-links-wrap a:hover {
      background: var(--accent-yellow);
    }
    .footer-bottom {
      text-align: center;
      font-size: 13px;
      color: var(--text-light);
      border-top: 1.5px solid var(--border-color);
      padding-top: 20px;
    }

    /* 浮动客服入口 */
    .floating-widget {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #ffffff;
      border: 2px solid var(--border-doodle);
      box-shadow: var(--shadow-doodle);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.2s;
    }
    .float-btn:hover {
      transform: scale(1.08);
      background: var(--accent-yellow);
    }

    /* 响应式断点 */
    @media (max-width: 992px) {
      .nav-links, .nav-actions .btn-doodle-secondary {
        display: none;
      }
      .mobile-menu-toggle {
        display: block;
      }
      .hero-title {
        font-size: 34px;
      }
      .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-timeline {
        grid-template-columns: repeat(2, 1fr);
      }
      .contact-wrapper {
        grid-template-columns: 1fr;
      }
      .footer-top {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 640px) {
      .hero-title {
        font-size: 28px;
      }
      .grid-2, .grid-3, .grid-4, .faq-grid {
        grid-template-columns: 1fr;
      }
      .process-timeline {
        grid-template-columns: 1fr;
      }
      .hero-stats-grid {
        grid-template-columns: 1fr;
      }
      .footer-top {
        grid-template-columns: 1fr;
      }
      .review-score-banner {
        flex-direction: column;
        align-items: flex-start;
      }
    }