/* ===== 首页专属样式 ===== */

    /* Hero轮播 */
    .hero-swiper {
      height: 100vh;
      min-height: 600px;
    }
    .hero-slide {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    /* 轮播图1: 品牌基因 - 深棕暖木调 */
    .slide-bg-1 {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 70% 40%, rgba(160,82,26,0.5) 0%, transparent 55%),
        radial-gradient(ellipse at 20% 80%, rgba(139,69,19,0.4) 0%, transparent 50%),
        linear-gradient(135deg, #1c0d05 0%, #2e1508 25%, #4a1f08 50%, #3d1a06 75%, #1c0d05 100%);
    }
    /* 木纹纹理叠加 */
    .slide-bg-1::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        88deg,
        transparent 0px,
        transparent 18px,
        rgba(212,175,55,0.025) 18px,
        rgba(212,175,55,0.025) 20px
      );
    }

    /* 轮播图2: 产品展示 - 深夜工作室蓝调 */
    .slide-bg-2 {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 30% 60%, rgba(139,69,19,0.6) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(60,30,10,0.4) 0%, transparent 40%),
        linear-gradient(160deg, #0a0804 0%, #1a0f06 30%, #2e1a0a 55%, #1a0f06 80%, #0a0804 100%);
    }
    .slide-bg-2::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        92deg,
        transparent 0px,
        transparent 24px,
        rgba(212,175,55,0.02) 24px,
        rgba(212,175,55,0.02) 26px
      );
    }

    /* 轮播图3: 工厂传承 - 古朴沉稳 */
    .slide-bg-3 {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 30%, rgba(100,50,15,0.5) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 70%, rgba(80,40,12,0.4) 0%, transparent 40%),
        linear-gradient(150deg, #0f0804 0%, #221108 30%, #3a1e0a 55%, #221108 80%, #0f0804 100%);
    }
    .slide-bg-3::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(
        85deg,
        transparent 0px,
        transparent 15px,
        rgba(212,175,55,0.018) 15px,
        rgba(212,175,55,0.018) 17px
      );
    }

    /* 图片覆盖层（所有幻灯片通用） */
    .slide-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.3) 50%,
        rgba(0,0,0,0.1) 100%
      );
      z-index: 1;
    }

    /* 装饰性大字SVG */
    .slide-decor {
      position: absolute;
      right: 5%;
      top: 50%;
      transform: translateY(-50%);
      z-index: 1;
      pointer-events: none;
      width: min(42vw, 520px);
      opacity: 0.06;
      filter: blur(0.5px);
    }
    .slide-decor svg { width: 100%; height: auto; fill: #fff; }

    /* 装饰性光晕 */
    .slide-glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
      top: 50%;
      left: 40%;
      transform: translate(-50%, -50%);
      z-index: 1;
      pointer-events: none;
    }

    /* Hero内容 */
    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
      padding: 0 24px;
      max-width: 720px;
      text-align: left;
      margin-left: 6vw;
    }
    
/* === 数据统计 === */
.stat-item { text-align: center; }
.stat-item .stat-num {
  font-family: 'SimSun', 'STSong', 'Noto Serif SC', 'Source Han Serif SC', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  display: block;
}
.stat-item .stat-label {
  font-size: 14px;
  color: var(--text-mid);
  margin-top: 8px;
  display: block;
}

/* === 服务承诺卡片 === */
.promise-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.promise-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.promise-card .promise-icon {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
}
.promise-card h3 {
  font-family: 'SimSun', 'STSong', 'Noto Serif SC', 'Source Han Serif SC', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.promise-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}
    
    
    @media (max-width: 767px) {
      .hero-content { margin-left: 0; text-align: center; }
      .slide-decor { display: none; }
    }

    .hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }
    .hero-eyebrow .line {
      width: 40px;
      height: 1px;
      background: var(--accent);
      opacity: 0.8;
    }
    .hero-eyebrow span {
      font-size: 11px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 500;
    }
    @media (max-width: 767px) {
      .hero-eyebrow { justify-content: center; }
    }

    .hero-content h1 {
      font-family: 'Noto Serif SC', serif;
      font-size: clamp(34px, 5.5vw, 72px);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 20px;
      letter-spacing: -0.02em;
    }
    .hero-content h1 .highlight {
      color: var(--accent);
      position: relative;
    }
    .hero-content h1 .highlight::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--accent);
      opacity: 0.5;
      border-radius: 1px;
    }
    .hero-content p {
      font-size: clamp(14px, 1.8vw, 18px);
      color: rgba(255,255,255,0.8);
      max-width: 520px;
      line-height: 1.9;
      margin-bottom: 36px;
      letter-spacing: 0.01em;
    }
    .hero-btns {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
    }
    @media (max-width: 767px) {
      .hero-btns { justify-content: center; }
      .hero-content p { margin: 0 auto 28px; }
    }

    /* 幻灯片进入动画 */
    .swiper-slide-active .hero-eyebrow { animation: slideInLeft 0.7s ease 0.1s both; }
    .swiper-slide-active .hero-content h1 { animation: slideInLeft 0.7s ease 0.2s both; }
    .swiper-slide-active .hero-content p { animation: slideInLeft 0.7s ease 0.35s both; }
    .swiper-slide-active .hero-btns { animation: slideInLeft 0.7s ease 0.5s both; }
    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* Hero 数字统计栏 */
    .hero-stats {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 3;
      background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
      padding: 40px 0 28px;
      display: none; /* 仅首张幻灯片显示 */
    }
    .hero-stats-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      gap: 48px;
    }
    .hero-stat-item { color: #fff; }
    .hero-stat-item .num {
      font-family: 'Noto Serif SC', serif;
      font-size: 36px;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
      display: block;
    }
    .hero-stat-item .text {
      font-size: 12px;
      color: rgba(255,255,255,0.65);
      letter-spacing: 1px;
      margin-top: 4px;
      display: block;
    }

    /* 向下滚动提示 */
    .hero-scroll-hint {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      opacity: 0;
      animation: fadeInScroll 0.8s ease 1.2s forwards;
    }
    @keyframes fadeInScroll {
      to { opacity: 1; }
    }
    .hero-scroll-hint .scroll-dot {
      width: 24px;
      height: 40px;
      border: 2px solid rgba(255,255,255,0.5);
      border-radius: 12px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 6px;
    }
    .hero-scroll-hint .scroll-dot::after {
      content: '';
      width: 4px;
      height: 8px;
      background: rgba(255,255,255,0.8);
      border-radius: 2px;
      animation: scrollBounce 1.8s ease-in-out infinite;
    }
    @keyframes scrollBounce {
      0%, 100% { transform: translateY(0); opacity: 1; }
      60% { transform: translateY(10px); opacity: 0.3; }
    }
    .hero-scroll-hint span {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.5);
    }

    /* Swiper自定义 */
    .swiper-button-prev, .swiper-button-next {
      color: rgba(255,255,255,0.85) !important;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      width: 52px !important;
      height: 52px !important;
      backdrop-filter: blur(6px);
      transition: var(--transition);
    }
    .swiper-button-prev::after, .swiper-button-next::after {
      font-size: 15px !important;
      font-weight: 700;
    }
    .swiper-button-prev:hover, .swiper-button-next:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff !important;
    }
    .swiper-pagination-bullet {
      background: rgba(255,255,255,0.5) !important;
      opacity: 1 !important;
      width: 8px !important;
      height: 8px !important;
      transition: all 0.3s !important;
    }
    .swiper-pagination-bullet-active {
      background: var(--accent) !important;
      width: 32px !important;
      border-radius: 4px !important;
    }

    /* === 产品分类宫格 === */
    .products-section { background: var(--bg-warm); }
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .product-card-home {
      background: var(--bg-white);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: block;
      text-decoration: none;
      color: inherit;
      border: 1px solid transparent;
    }
    .product-card-home:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: rgba(139,69,19,0.15);
    }
    .product-card-home .card-img-wrap {
      width: 100%;
      aspect-ratio: 1/1;
      overflow: hidden;
      position: relative;
    }
    .card-visual {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .card-visual img{
      width: 100%;
      height: 100%;
    }
    .card-visual-beginner {
      background: linear-gradient(135deg, #fdf0e0 0%, #f5e6cd 40%, #eedcc0 100%);
    }
    .card-visual-grade {
      background: linear-gradient(135deg, #e8f0e8 0%, #d5e5d5 40%, #c5d8c5 100%);
    }
    .card-visual-arts {
      background: linear-gradient(135deg, #f0e8f5 0%, #e0d0ee 40%, #d0b8e8 100%);
    }
    .card-visual-academy {
      background: linear-gradient(135deg, #e8eef5 0%, #d0dff0 40%, #b8cce8 100%);
    }
    .card-visual-stage {
      background: linear-gradient(135deg, #2c1a0e 0%, #4a2510 60%, #6b3010 100%);
    }
    .card-visual-accessories {
      background: linear-gradient(135deg, #f5f0e8 0%, #ede4d4 40%, #e0d4bc 100%);
    }
    .card-visual .emoji-main {
      font-size: 80px;
      position: relative;
      z-index: 1;
      filter: drop-shadow(0 4px 12px rgba(0,0,0,0.15));
    }
    .card-visual-stage .emoji-main { filter: drop-shadow(0 4px 16px rgba(212,175,55,0.3)); }
    .card-visual .card-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--accent);
      color: #fff;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1px;
      padding: 3px 10px;
      border-radius: 20px;
    }
    .card-visual-stage .card-badge { background: #D4AF37; color: #1a0f08; }
    .product-card-home .card-body {
      padding: 20px 20px 22px;
    }
    .product-card-home .card-label {
      font-size: 10px;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 6px;
    }
    .product-card-home .card-title {
      font-family: 'Noto Serif SC', serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .product-card-home .card-desc {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.65;
      margin-bottom: 16px;
    }
    .card-footer-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .card-models {
      font-size: 11px;
      color: var(--text-light);
    }
    .card-models strong { color: var(--text-mid); }
    .card-link-arrow {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 12px;
      color: var(--primary);
      font-weight: 600;
      letter-spacing: 0.5px;
      transition: var(--transition);
    }
    .product-card-home:hover .card-link-arrow {
      gap: 8px;
      color: var(--primary-dark);
    }

    /* === 品牌故事 === */
    .brand-story {
      position: relative;
      min-height: 580px;
      display: flex;
      align-items: center;
      overflow: hidden;
      color: #fff;
    }
    .brand-story-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 85% 50%, rgba(139,69,19,0.35) 0%, transparent 55%),
        linear-gradient(135deg, #150a04 0%, #2a1208 35%, #3e1c0c 60%, #2a1208 85%, #150a04 100%);
    }
    .brand-story-bg::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        repeating-linear-gradient(
          87deg,
          transparent 0px,
          transparent 20px,
          rgba(212,175,55,0.02) 20px,
          rgba(212,175,55,0.02) 22px
        ),
        repeating-linear-gradient(
          177deg,
          transparent 0px,
          transparent 40px,
          rgba(212,175,55,0.015) 40px,
          rgba(212,175,55,0.015) 42px
        );
    }
    .brand-story-right {
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      width: 45%;
      background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.04) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }
    .brand-violin-art {
      opacity: 0.07;
      width: 340px;
    }
    .brand-violin-art svg { width: 100%; height: auto; fill: #fff; }

    .brand-story-content {
      position: relative;
      z-index: 2;
      max-width: 580px;
      padding: 80px 0;
    }
    .brand-story-content .eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }
    .brand-story-content .eyebrow .line {
      width: 32px;
      height: 1px;
      background: var(--accent);
    }
    .brand-story-content .eyebrow span {
      font-size: 11px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent);
    }
    .brand-story-content h2 {
      font-family: 'Noto Serif SC', serif;
      font-size: clamp(28px, 4vw, 46px);
      font-weight: 700;
      line-height: 1.3;
      margin-bottom: 20px;
    }
    .brand-story-content p {
      font-size: 15px;
      color: rgba(255,255,255,0.75);
      line-height: 1.9;
      margin-bottom: 36px;
      max-width: 480px;
    }
    .brand-stats {
      display: flex;
      gap: 0;
      margin-bottom: 40px;
    }
    .brand-stat-item {
      padding: 0 32px 0 0;
      margin-right: 32px;
      border-right: 1px solid rgba(255,255,255,0.15);
    }
    .brand-stat-item:last-child {
      border-right: none;
    }
    .brand-stat-item .num {
      font-family: 'Noto Serif SC', serif;
      font-size: 52px;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
      display: block;
    }
    .brand-stat-item .text {
      font-size: 12px;
      color: rgba(255,255,255,0.55);
      margin-top: 6px;
      display: block;
      letter-spacing: 1px;
    }

    /* === 服务承诺 === */
    .promises-section { background: var(--bg-white); }
    .promises-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .promise-card-v2 {
      padding: 40px 28px;
      border-radius: var(--radius-md);
      background: var(--bg-warm);
      border: 1px solid var(--border);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .promise-card-v2::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--primary), var(--accent));
      opacity: 0;
      transition: opacity 0.3s;
    }
    .promise-card-v2:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-md);
    }
    .promise-card-v2:hover::before { opacity: 1; }
    .promise-icon-wrap {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(139,69,19,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      font-size: 26px;
      transition: var(--transition);
    }
    .promise-card-v2:hover .promise-icon-wrap {
      background: var(--primary);
    }
    .promise-card-v2 h3 {
      font-family: 'Noto Serif SC', serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }
    .promise-card-v2 p {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.75;
    }
    .promise-card-v2 .promise-badge {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      color: var(--primary);
      background: rgba(139,69,19,0.08);
      padding: 3px 10px;
      border-radius: 20px;
      margin-top: 14px;
      letter-spacing: 0.5px;
    }


    /* === 预约参观 === */
    .appointment-section { background: var(--bg-white); }
    .appointment-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: start;
    }
    .appt-info-card {
      padding: 40px;
      background: var(--bg-warm);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border);
    }
    .appt-info-card h3 {
      font-family: 'Noto Serif SC', serif;
      font-size: 22px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .appt-info-card h3 i { color: var(--primary); }
    .info-list { margin-bottom: 28px; }
    .info-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .info-item:last-child { border-bottom: none; }
    .info-item .icon {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      background: rgba(139,69,19,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--primary);
      font-size: 14px;
    }
    .info-item .content { flex: 1; }
    .info-item .label-text {
      font-size: 11px;
      color: var(--text-light);
      letter-spacing: 1px;
      margin-bottom: 3px;
    }
    .info-item .value-text {
      font-size: 14px;
      color: var(--text-dark);
      font-weight: 500;
      line-height: 1.5;
    }
    .info-item .value-text a { color: var(--primary); }
    .appt-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .map-area {
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .map-placeholder {
      width: 100%;
      height: 480px;
      background-image:url('/static/web/images/map.jpg');
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      position: relative;
    }
    .map-placeholder .map-pin {
      width: 60px;
      height: 60px;
      border-radius: 50% 50% 50% 0;
      background: var(--primary);
      transform: rotate(-45deg);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(139,69,19,0.4);
      position: relative;
    }
    .map-placeholder .map-pin::after {
      content: '🎻';
      position: absolute;
      font-size: 20px;
      transform: rotate(45deg);
    }
    .map-placeholder .map-pulse {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 60px;
      height: 60px;
      border-radius: 50%;
      border: 2px solid rgba(139,69,19,0.3);
      animation: mapPulse 2s ease-in-out infinite;
    }
    .map-placeholder .map-pulse:nth-child(2) { animation-delay: 0.5s; width: 90px; height: 90px; }
    .map-placeholder .map-pulse:nth-child(3) { animation-delay: 1s; width: 120px; height: 120px; }
    @keyframes mapPulse {
      0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
      100% { transform: translate(-50%, -50%) scale(1.2); opacity: 0; }
    }
    .map-placeholder .addr-info {
      text-align: center;
      margin-top: 16px;
    }
    .map-placeholder .addr-info strong {
      font-family: 'Noto Serif SC', serif;
      font-size: 15px;
      color: var(--text-dark);
      display: block;
      margin-bottom: 4px;
    }
    .map-placeholder .addr-info span {
      font-size: 13px;
      color: var(--text-mid);
      line-height: 1.7;
    }
    .map-placeholder .nav-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: #fff;
      background: var(--primary);
      padding: 10px 20px;
      border-radius: 6px;
      margin-top: 4px;
      transition: var(--transition);
    }
    .map-placeholder .nav-btn:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
    }
    .map-note {
      padding: 12px 20px;
      background: #fff;
      border-top: 1px solid var(--border);
      font-size: 12px;
      color: var(--text-light);
      text-align: center;
    }

    /* 响应式 */
    @media (max-width: 1200px) {
      .products-grid { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 991px) {
      .hero-swiper { height: 100svh; }
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .promises-grid { grid-template-columns: repeat(2, 1fr); }
      .appointment-layout { grid-template-columns: 1fr; gap: 32px; }
      .map-placeholder { height: 280px; }
      .brand-stat-item .num { font-size: 40px; }
      .brand-stats { gap: 0; }
      .brand-stat-item { padding: 0 24px 0 0; margin-right: 24px; }
    }
    @media (max-width: 767px) {
      .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .promises-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
      .promise-card-v2 { padding: 28px 20px; }
      .brand-stats { flex-wrap: wrap; gap: 16px; }
      .brand-stat-item { border-right: none; padding: 0; margin-right: 0; }
      .brand-stat-item .num { font-size: 36px; }
      .appt-info-card { padding: 24px 20px; }
    }
    
    @media (max-width: 640px) {
      .products-grid { grid-template-columns: repeat(1, 1fr); gap: 12px; }
      .promises-grid { grid-template-columns: repeat(1, 1fr); gap: 12px; }
      .promise-card-v2 { padding: 28px 20px; }
      .brand-stats { flex-wrap: wrap; gap: 16px; }
      .brand-stat-item { border-right: none; padding: 0; margin-right: 0; }
      .brand-stat-item .num { font-size: 36px; }
      .appt-info-card { padding: 24px 20px; }
    }