:root {
      --primary: #581c87;
      --primary-accent: #7c3aed;
      --vibrant-pink: #ec4899;
      --vibrant-cyan: #06b6d4;
      --vibrant-orange: #f97316;
      --vibrant-amber: #f59e0b;
      --bg-light: #faf7fd;
      --card-bg: #ffffff;
      --text-main: #1e1b4b;
      --text-muted: #4b5563;
      --border-color: #f0e6fc;
      --border-highlight: #d8b4fe;
      --shadow-sm: 0 4px 12px rgba(88, 28, 135, 0.05);
      --shadow-md: 0 10px 25px rgba(88, 28, 135, 0.08);
      --shadow-lg: 0 20px 40px rgba(124, 58, 237, 0.12);
      --radius: 16px;
      --transition: all 0.28s ease;
    }

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

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
      background-color: var(--bg-light);
      background-image: radial-gradient(circle at 10% 20%, rgba(236, 72, 153, 0.04) 0%, transparent 40%),
                        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.04) 0%, transparent 40%),
                        linear-gradient(180deg, #faf7fd 0%, #ffffff 50%, #f7f3fb 100%);
      color: var(--text-main);
      line-height: 1.65;
      overflow-x: hidden;
      min-height: 100vh;
    }

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

    /* 顶部导航 */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, 0.94);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      box-shadow: 0 2px 10px rgba(88, 28, 135, 0.03);
    }

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

    .brand-wrap {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .logo-container {
      height: 42px;
      display: flex;
      align-items: center;
    }

    .logo-container img {
      max-height: 40px;
      width: auto;
      object-fit: contain;
    }

    .brand-text {
      font-size: 1.35rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      color: var(--primary);
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }

    .brand-sub {
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--vibrant-pink);
      text-transform: uppercase;
      letter-spacing: 1px;
    }

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

    .nav-links li a {
      display: inline-block;
      padding: 8px 12px;
      font-size: 0.94rem;
      font-weight: 600;
      color: var(--text-main);
      text-decoration: none;
      border-radius: 8px;
      transition: var(--transition);
    }

    .nav-links li a:hover {
      color: var(--primary-accent);
      background-color: rgba(124, 58, 237, 0.08);
    }

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

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      font-size: 0.95rem;
      font-weight: 700;
      border-radius: 12px;
      text-decoration: none;
      cursor: pointer;
      border: none;
      transition: var(--transition);
    }

    .btn-gradient {
      background: linear-gradient(135deg, #7c3aed 0%, #ec4899 100%);
      color: #ffffff;
      box-shadow: 0 4px 16px rgba(236, 72, 153, 0.3);
    }

    .btn-gradient:hover {
      opacity: 0.92;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(236, 72, 153, 0.45);
    }

    .btn-outline {
      background: #ffffff;
      color: var(--primary-accent);
      border: 1.5px solid var(--border-highlight);
    }

    .btn-outline:hover {
      background: rgba(124, 58, 237, 0.06);
      border-color: var(--primary-accent);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--primary);
      cursor: pointer;
      padding: 4px;
    }

    /* 移动端抽屉 */
    .mobile-nav-panel {
      display: none;
      background: #ffffff;
      border-bottom: 1px solid var(--border-color);
      padding: 16px 20px 24px;
    }

    .mobile-nav-panel.open {
      display: block;
    }

    .mobile-nav-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .mobile-nav-list a {
      display: block;
      padding: 10px 14px;
      font-weight: 600;
      color: var(--text-main);
      text-decoration: none;
      border-radius: 8px;
    }

    .mobile-nav-list a:hover {
      background: #f3e8ff;
      color: var(--primary-accent);
    }

    /* Hero 首屏 (严禁图片) */
    .hero-section {
      padding: 64px 0 56px;
      position: relative;
      overflow: hidden;
    }

    .hero-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 16px;
      background: #f3e8ff;
      border: 1px solid #d8b4fe;
      border-radius: 30px;
      font-size: 0.86rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 22px;
      box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      background: var(--vibrant-pink);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--vibrant-pink);
    }

    .hero-title {
      font-size: clamp(2rem, 4.2vw, 3.2rem);
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 20px;
      max-width: 920px;
      letter-spacing: -0.5px;
      color: var(--text-main);
    }

    .hero-title .highlight-text {
      background: linear-gradient(135deg, #7c3aed 0%, #ec4899 50%, #f97316 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }

    .hero-desc {
      font-size: 1.12rem;
      color: var(--text-muted);
      max-width: 760px;
      margin-bottom: 34px;
      line-height: 1.7;
    }

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

    .hero-btn-group .btn {
      padding: 14px 32px;
      font-size: 1.05rem;
    }

    .hero-stats-bar {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      width: 100%;
      max-width: 980px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 24px;
      box-shadow: var(--shadow-md);
    }

    .hero-stat-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      border-right: 1px solid var(--border-color);
    }

    .hero-stat-item:last-child {
      border-right: none;
    }

    .stat-num {
      font-size: 1.9rem;
      font-weight: 900;
      color: var(--primary-accent);
      line-height: 1.1;
      margin-bottom: 6px;
    }

    .stat-label {
      font-size: 0.88rem;
      color: var(--text-muted);
      font-weight: 600;
    }

    /* Section 通用 */
    .section-spacing {
      padding: 70px 0;
    }

    .section-head {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-tag {
      display: inline-block;
      padding: 4px 14px;
      border-radius: 20px;
      font-size: 0.84rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      background: #fae8ff;
      color: var(--vibrant-pink);
      margin-bottom: 12px;
    }

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

    .section-subtitle {
      font-size: 1rem;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
    }

    /* 卡片通用 */
    .card {
      background: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
    }

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

    /* 平台矩阵 */
    .model-pills-wrap {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      max-width: 1000px;
      margin: 0 auto 36px;
    }

    .model-pill {
      padding: 8px 16px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 30px;
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--primary);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
      transition: var(--transition);
    }

    .model-pill:hover {
      background: #7c3aed;
      color: #ffffff;
      border-color: #7c3aed;
      transform: scale(1.05);
    }

    /* 网格布局 */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

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

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

    /* 服务能力卡片 */
    .service-icon-box {
      width: 52px;
      height: 52px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(124, 58, 237, 0.12), rgba(236, 72, 153, 0.12));
      color: var(--primary-accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: 900;
      margin-bottom: 20px;
    }

    .service-card h3 {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 12px;
      color: var(--text-main);
    }

    .service-card p {
      font-size: 0.94rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* 一站式制作场景 */
    .scene-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      height: 100%;
    }

    .scene-tag {
      font-size: 0.76rem;
      font-weight: 700;
      color: var(--vibrant-pink);
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .scene-card h3 {
      font-size: 1.18rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--text-main);
    }

    .scene-card p {
      font-size: 0.92rem;
      color: var(--text-muted);
      flex-grow: 1;
      margin-bottom: 16px;
    }

    .scene-action-link {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--primary-accent);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .scene-action-link:hover {
      text-decoration: underline;
    }

    /* 流程步骤 */
    .step-box {
      text-align: center;
      position: relative;
    }

    .step-number {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, #7c3aed, #ec4899);
      color: #ffffff;
      font-size: 1.25rem;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 16px;
      box-shadow: 0 4px 14px rgba(236, 72, 153, 0.35);
    }

    .step-box h3 {
      font-size: 1.15rem;
      font-weight: 800;
      margin-bottom: 10px;
      color: var(--text-main);
    }

    .step-box p {
      font-size: 0.9rem;
      color: var(--text-muted);
    }

    /* 对比评测卡片与表格 */
    .rating-banner {
      background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #db2777 100%);
      border-radius: var(--radius);
      padding: 32px;
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 30px;
      box-shadow: var(--shadow-lg);
    }

    .rating-left h3 {
      font-size: 1.7rem;
      font-weight: 900;
      margin-bottom: 8px;
    }

    .rating-left p {
      font-size: 1rem;
      opacity: 0.92;
    }

    .rating-badge-group {
      text-align: right;
    }

    .rating-stars {
      color: #fbbf24;
      font-size: 1.6rem;
      letter-spacing: 2px;
      margin-bottom: 4px;
    }

    .rating-score-text {
      font-size: 2.2rem;
      font-weight: 900;
      line-height: 1;
    }

    .rating-score-sub {
      font-size: 0.9rem;
      opacity: 0.85;
    }

    .compare-table-wrap {
      width: 100%;
      overflow-x: auto;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }

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

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

    .compare-table th {
      background: #fdfaff;
      color: var(--primary);
      font-weight: 800;
    }

    .compare-table tr:hover td {
      background-color: #faf5ff;
    }

    .col-highlight {
      background: #fdf8ff;
      color: var(--primary-accent);
      font-weight: 700;
    }

    /* 案例中心 */
    .case-card {
      display: flex;
      flex-direction: column;
      padding: 0;
      overflow: hidden;
    }

    .case-media-box {
      width: 100%;
      aspect-ratio: 16 / 9;
      background: #ede9fe;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .case-media-box img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }

    .case-card:hover .case-media-box img {
      transform: scale(1.05);
    }

    .case-body {
      padding: 24px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }

    .case-category {
      font-size: 0.78rem;
      font-weight: 700;
      color: var(--vibrant-pink);
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .case-body h3 {
      font-size: 1.18rem;
      font-weight: 800;
      color: var(--text-main);
      margin-bottom: 10px;
    }

    .case-body p {
      font-size: 0.92rem;
      color: var(--text-muted);
      margin-bottom: 16px;
      flex-grow: 1;
    }

    /* 用户评论卡片 */
    .review-card {
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .review-header {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 16px;
    }

    .review-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: linear-gradient(135deg, #7c3aed, #06b6d4);
      color: #ffffff;
      font-weight: 800;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .review-info h4 {
      font-size: 1rem;
      font-weight: 800;
      color: var(--text-main);
    }

    .review-info span {
      font-size: 0.82rem;
      color: var(--text-muted);
    }

    .review-quote {
      font-size: 0.94rem;
      color: #374151;
      line-height: 1.65;
      font-style: italic;
      margin-bottom: 16px;
      flex-grow: 1;
    }

    .review-stars {
      color: #f59e0b;
      font-size: 0.95rem;
    }

    /* 表单与交互 */
    .form-wrapper {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: var(--radius);
      padding: 36px;
      box-shadow: var(--shadow-md);
      max-width: 800px;
      margin: 0 auto;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      margin-bottom: 18px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    .form-label {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .form-control {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border-color);
      border-radius: 10px;
      font-size: 0.95rem;
      color: var(--text-main);
      outline: none;
      background: #faf8fd;
      transition: var(--transition);
    }

    .form-control:focus {
      border-color: var(--primary-accent);
      background: #ffffff;
      box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
    }

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

    /* FAQ 手风琴 */
    .faq-container {
      max-width: 880px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .faq-item {
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      transition: var(--transition);
    }

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

    .faq-toggle-icon {
      font-size: 1.25rem;
      font-weight: 400;
      color: var(--primary-accent);
      transition: transform 0.25s ease;
    }

    .faq-item.active .faq-toggle-icon {
      transform: rotate(45deg);
    }

    .faq-answer {
      display: none;
      padding: 0 24px 20px;
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .faq-item.active .faq-answer {
      display: block;
    }

    /* 资讯列表 */
    .articles-card-list {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .article-item-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      background: #ffffff;
      border: 1px solid var(--border-color);
      border-radius: 12px;
      text-decoration: none;
      transition: var(--transition);
    }

    .article-item-row:hover {
      border-color: var(--primary-accent);
      transform: translateX(4px);
    }

    .article-title-text {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-main);
    }

    .article-url-badge {
      font-size: 0.82rem;
      color: var(--vibrant-pink);
      font-weight: 600;
    }

    /* 代理加盟政策 */
    .agent-highlight-banner {
      background: linear-gradient(135deg, #f3e8ff 0%, #fce7f3 100%);
      border: 1px solid #e9d5ff;
      border-radius: var(--radius);
      padding: 32px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 24px;
      align-items: center;
    }

    .agent-details h3 {
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .agent-details p {
      font-size: 0.98rem;
      color: var(--text-muted);
      margin-bottom: 16px;
    }

    .agent-perks {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .agent-perk-tag {
      background: #ffffff;
      padding: 6px 14px;
      border-radius: 20px;
      font-size: 0.86rem;
      font-weight: 700;
      color: var(--primary-accent);
      box-shadow: 0 2px 6px rgba(124, 58, 237, 0.08);
    }

    /* 宣传图画廊展示区 */
    .banner-gallery-wrap {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 36px;
    }

    .banner-gallery-item {
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-color);
      aspect-ratio: 16 / 9;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #eee;
    }

    .banner-gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* 页脚 */
    .site-footer {
      background: #110e1b;
      color: #e2e8f0;
      padding: 64px 0 28px;
      margin-top: 60px;
    }

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

    .footer-brand h4 {
      font-size: 1.3rem;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 12px;
    }

    .footer-brand p {
      font-size: 0.9rem;
      color: #94a3b8;
      line-height: 1.6;
      margin-bottom: 20px;
      max-width: 320px;
    }

    .footer-col h5 {
      font-size: 1rem;
      font-weight: 700;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      font-size: 0.88rem;
      color: #94a3b8;
      text-decoration: none;
      transition: var(--transition);
    }

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

    .qrcode-box {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }

    .qrcode-box img {
      width: 108px;
      height: 108px;
      border-radius: 8px;
      background: #ffffff;
      padding: 4px;
    }

    .qrcode-box span {
      font-size: 0.8rem;
      color: #cbd5e1;
    }

    .friend-links-area {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 24px;
      margin-bottom: 24px;
    }

    .friend-links-title {
      font-size: 0.88rem;
      font-weight: 700;
      color: #94a3b8;
      margin-bottom: 12px;
    }

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

    .friend-links-list a {
      font-size: 0.85rem;
      color: #cbd5e1;
      text-decoration: none;
      transition: var(--transition);
    }

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

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding-top: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.84rem;
      color: #64748b;
    }

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

    .floating-btn {
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: linear-gradient(135deg, #7c3aed, #ec4899);
      color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
      cursor: pointer;
      text-decoration: none;
      font-size: 1.3rem;
      transition: var(--transition);
      position: relative;
    }

    .floating-btn:hover {
      transform: scale(1.08);
    }

    .floating-popover {
      display: none;
      position: absolute;
      right: 64px;
      bottom: 0;
      background: #ffffff;
      padding: 14px;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
      border: 1px solid var(--border-color);
      width: 160px;
      text-align: center;
      color: var(--text-main);
    }

    .floating-popover img {
      width: 100%;
      height: auto;
      border-radius: 6px;
      margin-bottom: 6px;
    }

    .floating-btn:hover .floating-popover {
      display: block;
    }

    /* 响应式适配 */
    @media (max-width: 992px) {
      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }
      .hero-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 20px;
      }
      .hero-stat-item:nth-child(2) {
        border-right: none;
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .agent-highlight-banner {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-links, .nav-actions {
        display: none;
      }
      .menu-toggle {
        display: block;
      }
      .grid-3, .grid-2, .grid-4 {
        grid-template-columns: 1fr;
      }
      .hero-stats-bar {
        grid-template-columns: 1fr;
      }
      .hero-stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 12px;
      }
      .hero-stat-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
      }
      .form-grid {
        grid-template-columns: 1fr;
      }
      .rating-banner {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
      }
      .rating-badge-group {
        text-align: left;
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .banner-gallery-wrap {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }