:root {
      --primary: #059669;
      --primary-hover: #047857;
      --primary-light: #ecfdf5;
      --primary-accent: #10b981;
      --accent-lime: #84cc16;
      --text-main: #0f172a;
      --text-sub: #334155;
      --text-muted: #64748b;
      --bg-page: #f8fafc;
      --bg-card: #ffffff;
      --border-color: #e2e8f0;
      --border-green: #a7f3d0;
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
      --shadow-lg: 0 10px 15px -3px rgba(16, 185, 129, 0.12), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
      --shadow-card: 0 10px 25px -5px rgba(5, 150, 105, 0.08);
      --radius: 12px;
      --radius-sm: 8px;
      --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      -webkit-font-smoothing: antialiased;
    }

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

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

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

    /* 顶部导航 */
    header.site-header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }
    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 20px;
      font-weight: 700;
      color: var(--text-main);
    }
    .brand-logo-wrap {
      width: 140px;
      display: flex;
      align-items: center;
    }
    .nav-links {
      display: flex;
      align-items: center;
      gap: 0;
      list-style: none;
    }
    .nav-links li a {
      padding: 10px 14px;
      font-size: 14px;
      font-weight: 500;
      color: var(--text-sub);
      border-radius: var(--radius-sm);
      display: inline-block;
    }
    .nav-links li a:hover {
      color: var(--primary);
      background: var(--primary-light);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .btn-nav-portal {
      background: linear-gradient(135deg, #10b981, #059669);
      color: #ffffff !important;
      padding: 8px 18px;
      border-radius: 30px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
      border: 1px solid #059669;
    }
    .btn-nav-portal:hover {
      background: linear-gradient(135deg, #059669, #047857);
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
    }
    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--text-main);
      cursor: pointer;
      padding: 6px;
    }

    /* 首屏 Hero (严禁图片) */
    .hero-section {
      background: radial-gradient(circle at 50% 20%, #d1fae5 0%, #ecfdf5 45%, #f8fafc 100%);
      padding: 70px 0 60px;
      text-align: center;
      position: relative;
      border-bottom: 1px solid var(--border-green);
    }
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #ffffff;
      border: 1px solid var(--border-green);
      padding: 6px 18px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }
    .hero-badge .pulse-dot {
      width: 8px;
      height: 8px;
      background: var(--accent-lime);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(132, 204, 22, 0.2);
    }
    .hero-title {
      font-size: 42px;
      font-weight: 800;
      line-height: 1.25;
      color: #064e3b;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }
    .hero-title .highlight-gradient {
      background: linear-gradient(120deg, #059669, #10b981 50%, #0d9488);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-desc {
      font-size: 18px;
      color: var(--text-sub);
      max-width: 820px;
      margin: 0 auto 36px;
      line-height: 1.7;
    }
    .hero-cta-group {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      margin-bottom: 48px;
      flex-wrap: wrap;
    }
    .btn-hero-primary {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      color: #ffffff !important;
      padding: 14px 34px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 700;
      box-shadow: 0 8px 20px rgba(16, 185, 129, 0.35);
      border: 1px solid #059669;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(16, 185, 129, 0.45);
    }
    .btn-hero-secondary {
      background: #ffffff;
      color: #065f46 !important;
      padding: 14px 28px;
      border-radius: 40px;
      font-size: 16px;
      font-weight: 600;
      border: 1.5px solid #a7f3d0;
      box-shadow: var(--shadow-sm);
    }
    .btn-hero-secondary:hover {
      background: #ecfdf5;
      border-color: var(--primary);
      transform: translateY(-2px);
    }

    /* 首屏数据指标卡片 (纯CSS与文字) */
    .hero-stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      max-width: 1000px;
      margin: 0 auto;
    }
    .hero-stat-card {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid var(--border-green);
      padding: 20px 16px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      text-align: center;
      transition: var(--transition);
    }
    .hero-stat-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .stat-num {
      font-size: 28px;
      font-weight: 800;
      color: #047857;
      margin-bottom: 4px;
    }
    .stat-label {
      font-size: 13px;
      color: var(--text-muted);
      font-weight: 500;
    }

    /* 公共模块版式 */
    .section-padding {
      padding: 72px 0;
      position: relative;
    }
    .section-alt-bg {
      background: #f0fdf4;
      border-top: 1px solid #dcfce7;
      border-bottom: 1px solid #dcfce7;
    }
    .section-header {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 48px;
    }
    .section-eyebrow {
      display: inline-block;
      font-size: 13px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 1px;
      background: #d1fae5;
      padding: 4px 12px;
      border-radius: 20px;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: 32px;
      font-weight: 800;
      color: #064e3b;
      margin-bottom: 14px;
      line-height: 1.3;
    }
    .section-subtitle {
      font-size: 16px;
      color: var(--text-sub);
      line-height: 1.6;
    }

    /* 模型矩阵徽章云 */
    .model-tags-wrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-top: 24px;
    }
    .model-tag {
      background: #ffffff;
      border: 1px solid #cbd5e1;
      color: var(--text-sub);
      padding: 8px 16px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 600;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .model-tag:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--primary-light);
      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: 28px;
    }

    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .feature-card:hover {
      border-color: var(--border-green);
      box-shadow: var(--shadow-card);
      transform: translateY(-4px);
    }
    .card-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: #d1fae5;
      color: #047857;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 16px;
    }
    .feature-card h3 {
      font-size: 18px;
      font-weight: 700;
      color: #064e3b;
      margin-bottom: 10px;
    }
    .feature-card p {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.6;
    }
    .card-badge {
      display: inline-block;
      margin-top: 14px;
      font-size: 12px;
      font-weight: 600;
      color: #059669;
      background: #ecfdf5;
      padding: 4px 10px;
      border-radius: 4px;
      align-self: flex-start;
    }

    /* 素材图片展示卡片 */
    .media-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }
    .media-card:hover {
      box-shadow: var(--shadow-card);
      border-color: var(--border-green);
      transform: translateY(-3px);
    }
    .media-thumb-box {
      width: 100%;
      background: #f1f5f9;
      overflow: hidden;
    }
    .media-thumb-box img {
      width: 100%;
      height: auto;
      display: block;
      transition: var(--transition);
    }
    .media-card:hover .media-thumb-box img {
      transform: scale(1.03);
    }
    .media-content {
      padding: 18px;
    }
    .media-content h4 {
      font-size: 16px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 6px;
    }
    .media-content p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* 标准流程时间线 */
    .process-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      position: relative;
    }
    .process-step {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 24px 20px;
      position: relative;
      transition: var(--transition);
    }
    .process-step:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .step-number {
      font-size: 24px;
      font-weight: 900;
      color: #10b981;
      margin-bottom: 12px;
      display: block;
    }
    .process-step h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
      color: #064e3b;
    }
    .process-step p {
      font-size: 13px;
      color: var(--text-sub);
    }

    /* 对比评测板块 */
    .review-score-banner {
      background: linear-gradient(135deg, #064e3b, #047857);
      color: #ffffff;
      border-radius: var(--radius);
      padding: 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 28px;
      box-shadow: var(--shadow-lg);
    }
    .review-score-main h3 {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 6px;
    }
    .review-score-main p {
      font-size: 14px;
      opacity: 0.9;
    }
    .review-score-badge {
      text-align: right;
      display: flex;
      flex-direction: column;
      align-items: flex-end;
    }
    .stars-icon {
      color: #facc15;
      font-size: 22px;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }
    .score-digits {
      font-size: 36px;
      font-weight: 900;
      color: #a7f3d0;
    }
    .score-total {
      font-size: 14px;
      opacity: 0.8;
    }

    .table-container {
      overflow-x: auto;
      background: #ffffff;
      border-radius: var(--radius);
      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: 16px 20px;
      border-bottom: 1px solid var(--border-color);
    }
    .compare-table th {
      background: #f8fafc;
      color: var(--text-main);
      font-weight: 700;
    }
    .compare-table td.highlight-col {
      background: #ecfdf5;
      color: #064e3b;
      font-weight: 700;
    }

    /* 用户评论 */
    .testimonial-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: var(--transition);
    }
    .testimonial-card:hover {
      border-color: var(--border-green);
      box-shadow: var(--shadow-card);
      transform: translateY(-3px);
    }
    .testimonial-header {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }
    .avatar-placeholder {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #d1fae5;
      color: #047857;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 16px;
    }
    .user-info h4 {
      font-size: 15px;
      font-weight: 700;
      color: #0f172a;
    }
    .user-info span {
      font-size: 12px;
      color: var(--text-muted);
    }
    .testimonial-body {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.6;
      font-style: italic;
    }

    /* 需求提交表单板块 */
    .form-layout-wrap {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 40px;
      background: #ffffff;
      border: 1px solid var(--border-green);
      border-radius: var(--radius);
      padding: 40px;
      box-shadow: var(--shadow-card);
    }
    .form-intro-side h3 {
      font-size: 24px;
      font-weight: 800;
      color: #064e3b;
      margin-bottom: 14px;
    }
    .form-intro-side p {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.7;
      margin-bottom: 24px;
    }
    .service-guarantees {
      list-style: none;
    }
    .service-guarantees li {
      font-size: 14px;
      color: var(--text-sub);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .service-guarantees li span {
      color: #10b981;
      font-weight: bold;
    }
    .inquiry-form .form-group {
      margin-bottom: 16px;
    }
    .inquiry-form label {
      display: block;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-main);
      margin-bottom: 6px;
    }
    .inquiry-form input,
    .inquiry-form select,
    .inquiry-form textarea {
      width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      font-size: 14px;
      background: #f8fafc;
      color: var(--text-main);
      transition: var(--transition);
      outline: none;
    }
    .inquiry-form input:focus,
    .inquiry-form select:focus,
    .inquiry-form textarea:focus {
      border-color: var(--primary);
      background: #ffffff;
      box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
    }
    .btn-submit-form {
      width: 100%;
      background: linear-gradient(135deg, #10b981, #059669);
      color: #ffffff;
      border: none;
      padding: 14px;
      border-radius: var(--radius-sm);
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
      transition: var(--transition);
    }
    .btn-submit-form:hover {
      background: linear-gradient(135deg, #059669, #047857);
      transform: translateY(-1px);
    }

    /* FAQ 折叠面板 */
    .faq-accordion {
      max-width: 900px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      overflow: hidden;
      transition: var(--transition);
    }
    .faq-item.active {
      border-color: var(--primary);
      box-shadow: var(--shadow-sm);
    }
    .faq-question {
      padding: 18px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 700;
      font-size: 15px;
      color: #064e3b;
      user-select: none;
    }
    .faq-question:hover {
      background: #f0fdf4;
    }
    .faq-icon {
      font-size: 18px;
      transition: transform 0.25s ease;
      color: #059669;
    }
    .faq-item.active .faq-icon {
      transform: rotate(45deg);
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease;
      background: #ffffff;
    }
    .faq-answer-inner {
      padding: 0 20px 18px;
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.7;
      border-top: 1px solid #f1f5f9;
      padding-top: 12px;
    }

    /* 行业资讯 & 最新文章 */
    .article-links-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 24px;
    }
    .article-card-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-sm);
      padding: 20px;
      transition: var(--transition);
      display: block;
    }
    .article-card-item:hover {
      border-color: var(--primary);
      box-shadow: var(--shadow-sm);
      transform: translateY(-2px);
    }
    .article-card-item h4 {
      font-size: 15px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 8px;
    }
    .article-card-item p {
      font-size: 13px;
      color: var(--text-muted);
    }

    /* 宣传图画廊 */
    .banner-gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 32px;
    }
    .banner-item-box {
      border-radius: var(--radius-sm);
      overflow: hidden;
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      background: #ffffff;
    }
    .banner-item-box:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }
    .banner-item-box img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* 加盟代理模块 */
    .partner-banner {
      background: linear-gradient(135deg, #022c22 0%, #064e3b 100%);
      border-radius: var(--radius);
      padding: 40px;
      color: #ffffff;
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 32px;
      align-items: center;
    }
    .partner-banner h3 {
      font-size: 26px;
      font-weight: 800;
      margin-bottom: 12px;
      color: #a7f3d0;
    }
    .partner-banner p {
      font-size: 14px;
      color: #e2e8f0;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .partner-perks {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }
    .perk-pill {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(167, 243, 208, 0.3);
      padding: 10px 14px;
      border-radius: var(--radius-sm);
      font-size: 13px;
      font-weight: 600;
      color: #ffffff;
    }

    /* 页脚 */
    footer.site-footer {
      background: #022c22;
      color: #e2e8f0;
      padding: 56px 0 24px;
      border-top: 4px solid #10b981;
    }
    .footer-top-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 32px;
      margin-bottom: 40px;
    }
    .footer-brand h4 {
      font-size: 18px;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 12px;
    }
    .footer-brand p {
      font-size: 13px;
      color: #94a3b8;
      line-height: 1.7;
    }
    .footer-col h5 {
      font-size: 15px;
      font-weight: 700;
      color: #a7f3d0;
      margin-bottom: 14px;
    }
    .footer-links-list {
      list-style: none;
    }
    .footer-links-list li {
      margin-bottom: 8px;
    }
    .footer-links-list li a {
      color: #cbd5e1;
      font-size: 13px;
    }
    .footer-links-list li a:hover {
      color: #34d399;
    }
    .footer-contact-info {
      font-size: 13px;
      color: #cbd5e1;
      line-height: 1.8;
    }
    .footer-qr-wrap {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 14px;
    }
    .footer-qr-img {
      width: 80px;
      height: 80px;
      background: #ffffff;
      padding: 4px;
      border-radius: 6px;
    }
    .footer-qr-img img {
      width: 100%;
      height: 100%;
      display: block;
    }
    .footer-friend-links {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 20px 0;
      margin-bottom: 20px;
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
      font-size: 13px;
    }
    .footer-friend-links span {
      color: #a7f3d0;
      font-weight: 600;
    }
    .footer-friend-links a {
      color: #94a3b8;
    }
    .footer-friend-links a:hover {
      color: #34d399;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 20px;
      text-align: center;
      font-size: 12px;
      color: #64748b;
    }

    /* 浮动客服 */
    .floating-widget {
      position: fixed;
      right: 20px;
      bottom: 30px;
      z-index: 999;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      width: 48px;
      height: 48px;
      background: #10b981;
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
      cursor: pointer;
      border: 2px solid #ffffff;
      transition: var(--transition);
      position: relative;
    }
    .float-btn:hover {
      background: #059669;
      transform: scale(1.08);
    }
    .float-qr-popover {
      position: absolute;
      right: 58px;
      bottom: 0;
      background: #ffffff;
      padding: 12px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-color);
      display: none;
      width: 140px;
      text-align: center;
    }
    .float-qr-popover img {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }
    .float-qr-popover span {
      display: block;
      font-size: 11px;
      color: var(--text-sub);
      margin-top: 4px;
      font-weight: 600;
    }
    .float-btn:hover .float-qr-popover {
      display: block;
    }

    /* 响应式媒体查询 */
    @media (max-width: 1024px) {
      .grid-4, .process-timeline, .hero-stats-grid, .banner-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3, .article-links-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-top-grid {
        grid-template-columns: 1fr 1fr;
      }
      .form-layout-wrap {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 16px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
      }
      .nav-links.active {
        display: flex;
      }
      .mobile-menu-toggle {
        display: block;
      }
      .hero-title {
        font-size: 28px;
      }
      .hero-desc {
        font-size: 15px;
      }
      .hero-stats-grid, .grid-3, .grid-4, .grid-2, .process-timeline, .banner-gallery-grid, .article-links-grid {
        grid-template-columns: 1fr;
      }
      .partner-banner {
        grid-template-columns: 1fr;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .review-score-banner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
      }
      .review-score-badge {
        align-items: center;
      }
    }