:root {
      --primary: #00b368;
      --primary-hover: #009657;
      --primary-light: #e8f9f1;
      --primary-glow: rgba(0, 179, 104, 0.22);
      --accent: #10b981;
      --text-main: #0f172a;
      --text-sub: #334155;
      --text-muted: #64748b;
      --bg-page: #f8fafc;
      --bg-card: #ffffff;
      --border-color: #e2e8f0;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.06), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
      --shadow-lg: 0 20px 30px -10px rgba(0, 179, 104, 0.12), 0 10px 15px -5px rgba(0, 0, 0, 0.04);
      --radius: 12px;
      --transition: all 0.3s ease;
    }

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

    html {
      scroll-behavior: smooth;
      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;
    }

    body {
      overflow-x: hidden;
      background-color: var(--bg-page);
    }

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

    ul, ol {
      list-style: none;
    }

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

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

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

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

    .logo-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .ai-page-logo {
      height: 38px;
      width: auto;
      object-fit: contain;
    }

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

    .brand-text span {
      color: var(--primary);
    }

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

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

    .nav-link:hover,
    .nav-link.active {
      color: var(--primary);
      background: 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: 14px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: var(--transition);
      border: 1px solid transparent;
      text-align: center;
    }

    .btn-primary {
      background: var(--primary);
      color: #ffffff;
      box-shadow: 0 4px 14px rgba(0, 179, 104, 0.35);
    }

    .btn-primary:hover {
      background: var(--primary-hover);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(0, 179, 104, 0.45);
      color: #ffffff;
    }

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

    .btn-outline:hover {
      background: var(--primary-light);
      transform: translateY(-2px);
    }

    .btn-lg {
      padding: 14px 32px;
      font-size: 16px;
      border-radius: 10px;
    }

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

    /* 首屏 HERO (无图片要求) */
    .hero-section {
      position: relative;
      padding: 90px 0 80px;
      background: linear-gradient(180deg, #f0fdf4 0%, #f8fafc 100%);
      overflow: hidden;
      text-align: center;
      border-bottom: 1px solid var(--border-color);
    }

    .hero-section::before {
      content: "";
      position: absolute;
      top: -120px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 450px;
      background: radial-gradient(circle, rgba(0, 179, 104, 0.18) 0%, rgba(240, 253, 244, 0) 70%);
      pointer-events: none;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 900px;
      margin: 0 auto;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: #ffffff;
      border: 1px solid rgba(0, 179, 104, 0.3);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      color: var(--primary);
      box-shadow: var(--shadow-sm);
      margin-bottom: 24px;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--primary);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(0, 179, 104, 0.2);
    }

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

    .hero-title span {
      color: var(--primary);
      position: relative;
    }

    .hero-desc {
      font-size: 18px;
      color: var(--text-sub);
      line-height: 1.7;
      margin-bottom: 36px;
      max-width: 760px;
      margin-left: auto;
      margin-right: auto;
    }

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

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 20px;
    }

    .stat-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 24px 16px;
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
    }

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

    .stat-value {
      font-size: 30px;
      font-weight: 800;
      color: var(--primary);
      line-height: 1.1;
      margin-bottom: 6px;
    }

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

    /* 通用Section */
    .section {
      padding: 80px 0;
      position: relative;
    }

    .section-alt {
      background-color: #ffffff;
    }

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

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

    .section-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 14px;
      letter-spacing: -0.5px;
    }

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

    /* 平台介绍 & 核心能力 */
    .intro-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    .intro-text-card {
      background: #ffffff;
      padding: 40px;
      border-radius: var(--radius);
      border: 1px solid var(--border-color);
      box-shadow: var(--shadow-sm);
    }

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

    .intro-text-card p {
      font-size: 15px;
      color: var(--text-sub);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .intro-features {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .intro-feature-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
    }

    .feature-icon-box {
      width: 32px;
      height: 32px;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      flex-shrink: 0;
    }

    .feature-text-box strong {
      display: block;
      font-size: 15px;
      color: var(--text-main);
      margin-bottom: 2px;
    }

    .feature-text-box span {
      font-size: 13px;
      color: var(--text-muted);
    }

    .intro-models-panel {
      background: linear-gradient(145deg, #ffffff, #f0fdf4);
      border: 1px solid rgba(0, 179, 104, 0.2);
      border-radius: var(--radius);
      padding: 36px;
      box-shadow: var(--shadow-md);
    }

    .models-panel-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .model-tags-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .model-tag {
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 13px;
      font-weight: 500;
      color: var(--text-sub);
      transition: var(--transition);
    }

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

    /* 服务与全自动创作场景卡片 */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .service-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .service-card:hover {
      border-color: var(--primary);
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
    }

    .service-header {
      margin-bottom: 16px;
    }

    .service-icon {
      width: 48px;
      height: 48px;
      background: var(--primary-light);
      color: var(--primary);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: 16px;
    }

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

    .service-desc {
      font-size: 14px;
      color: var(--text-sub);
      line-height: 1.6;
      margin-bottom: 16px;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .service-pill {
      font-size: 12px;
      padding: 3px 8px;
      background: #f1f5f9;
      color: var(--text-muted);
      border-radius: 4px;
    }

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

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

    .gallery-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--primary);
    }

    .gallery-thumb-box {
      width: 100%;
      height: 220px;
      background: #f1f5f9;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .gallery-thumb-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .gallery-item:hover .gallery-thumb-box img {
      transform: scale(1.04);
    }

    .gallery-body {
      padding: 20px;
    }

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

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

    /* 标准制作流程 */
    .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: 28px 20px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      position: relative;
      transition: var(--transition);
    }

    .process-step:hover {
      border-color: var(--primary);
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .step-number {
      width: 44px;
      height: 44px;
      background: var(--primary-light);
      color: var(--primary);
      border: 2px solid var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 800;
      margin: 0 auto 16px;
    }

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

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

    /* 对比评测表格 (五星 9.9分) */
    .review-score-banner {
      background: linear-gradient(135deg, #00b368 0%, #059669 100%);
      color: #ffffff;
      border-radius: var(--radius);
      padding: 30px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: var(--shadow-md);
      margin-bottom: 30px;
    }

    .score-left h3 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .score-left p {
      font-size: 15px;
      opacity: 0.92;
    }

    .score-right {
      display: flex;
      align-items: baseline;
      gap: 12px;
      text-align: right;
    }

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

    .rating-num {
      font-size: 48px;
      font-weight: 900;
      line-height: 1;
    }

    .rating-total {
      font-size: 18px;
      opacity: 0.85;
    }

    .comparison-table-wrapper {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      overflow-x: auto;
      box-shadow: var(--shadow-sm);
    }

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      text-align: left;
      min-width: 650px;
    }

    .comparison-table th,
    .comparison-table td {
      padding: 16px 20px;
      border-bottom: 1px solid var(--border-color);
      font-size: 14px;
    }

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

    .comparison-table th.highlight-col,
    .comparison-table td.highlight-col {
      background: #f0fdf4;
      color: var(--text-main);
      font-weight: 600;
    }

    .badge-check {
      display: inline-block;
      color: var(--primary);
      font-weight: bold;
    }

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

    .contact-info-card {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 36px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: var(--shadow-sm);
    }

    .contact-info-card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 16px;
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-bottom: 24px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 15px;
      color: var(--text-sub);
    }

    .contact-item strong {
      color: var(--text-main);
      min-width: 80px;
    }

    .qr-box-wrap {
      display: flex;
      align-items: center;
      gap: 20px;
      background: #f8fafc;
      border: 1px dashed var(--border-color);
      padding: 16px;
      border-radius: 8px;
    }

    .qr-img {
      width: 100px;
      height: 100px;
      border-radius: 6px;
      border: 1px solid var(--border-color);
      object-fit: contain;
    }

    .qr-desc {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .qr-desc h4 {
      font-size: 15px;
      color: var(--text-main);
      margin-bottom: 4px;
    }

    .booking-form-box {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 36px;
      box-shadow: var(--shadow-sm);
    }

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

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

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

    .form-control:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px var(--primary-glow);
    }

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

    /* 用户评论 (6条) */
    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

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

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

    .user-profile {
      display: flex;
      align-items: center;
      gap: 12px;
      border-top: 1px solid #f1f5f9;
      padding-top: 14px;
    }

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

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

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

    /* 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);
      overflow: hidden;
      transition: var(--transition);
    }

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

    .faq-question {
      width: 100%;
      text-align: left;
      padding: 18px 24px;
      background: #ffffff;
      border: none;
      font-size: 16px;
      font-weight: 600;
      color: var(--text-main);
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

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

    .faq-icon {
      font-size: 18px;
      transition: transform 0.3s ease;
      color: var(--primary);
    }

    .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: #f8fafc;
      padding: 0 24px;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 16px 24px 20px;
      border-top: 1px solid var(--border-color);
    }

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

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

    .article-box {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow-sm);
    }

    .article-box h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .article-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .article-link-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 8px 12px;
      border-radius: 6px;
      background: #f8fafc;
      font-size: 14px;
      color: var(--text-sub);
    }

    .article-link-item:hover {
      background: var(--primary-light);
      color: var(--primary);
    }

    /* 底部收尾与页脚 */
    .site-footer {
      background: #ffffff;
      border-top: 1px solid var(--border-color);
      padding: 60px 0 30px;
      color: var(--text-sub);
    }

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

    .footer-col h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-main);
      margin-bottom: 18px;
    }

    .footer-links-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      font-size: 14px;
    }

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

    .footer-links-inline {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      font-size: 13px;
    }

    .footer-links-inline a {
      background: #f1f5f9;
      padding: 4px 10px;
      border-radius: 4px;
      color: var(--text-sub);
    }

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

    .footer-bottom {
      border-top: 1px solid var(--border-color);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: var(--text-muted);
    }

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

    .floating-btn {
      width: 48px;
      height: 48px;
      background: #ffffff;
      color: var(--primary);
      border: 1px solid var(--border-color);
      border-radius: 50%;
      box-shadow: var(--shadow-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      cursor: pointer;
      position: relative;
      transition: var(--transition);
    }

    .floating-btn:hover {
      background: var(--primary);
      color: #ffffff;
      border-color: var(--primary);
      transform: scale(1.06);
    }

    .floating-qr-pop {
      position: absolute;
      right: 60px;
      bottom: 0;
      background: #ffffff;
      border: 1px solid var(--border-color);
      padding: 14px;
      border-radius: 8px;
      box-shadow: var(--shadow-lg);
      width: 160px;
      text-align: center;
      display: none;
    }

    .floating-btn:hover .floating-qr-pop {
      display: block;
    }

    .floating-qr-pop img {
      width: 100%;
      height: auto;
      margin-bottom: 6px;
    }

    .floating-qr-pop span {
      font-size: 12px;
      color: var(--text-sub);
      display: block;
    }

    /* 响应式媒体查询 */
    @media (max-width: 1024px) {
      .services-grid,
      .media-gallery-grid,
      .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .process-timeline {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-top-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .intro-grid,
      .form-section-layout {
        grid-template-columns: 1fr;
      }
      .hero-title {
        font-size: 36px;
      }
    }

    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        box-shadow: var(--shadow-md);
      }
      .nav-links.show {
        display: flex;
      }
      .nav-link {
        width: 100%;
        padding: 10px 0;
      }
      .hero-stats {
        grid-template-columns: repeat(2, 1fr);
      }
      .services-grid,
      .media-gallery-grid,
      .testimonials-grid,
      .articles-grid,
      .process-timeline {
        grid-template-columns: 1fr;
      }
      .review-score-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
      }
      .score-right {
        justify-content: center;
      }
      .footer-top-grid {
        grid-template-columns: 1fr;
      }
      .hero-title {
        font-size: 28px;
      }
    }