.hero { background: linear-gradient(135deg, var(--primary-very-soft) 0%, var(--primary-soft) 100%); padding: 80px 0 100px; position: relative; overflow: hidden; }
    .hero::before { content: ''; position: absolute; right: -10%; top: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(164, 179, 83, 0.18) 0%, transparent 70%); border-radius: 50%; }
    .hero::after { content: ''; position: absolute; left: -5%; bottom: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(232, 146, 124, 0.12) 0%, transparent 70%); border-radius: 50%; }
    .hero .container { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
    .hero-content h1 { font-size: 50px; line-height: 1.18; color: var(--text-dark); margin-bottom: 22px; font-weight: 800; }
    .hero-content h1 span { color: var(--primary-dark); }
    .hero-content p { font-size: 17px; color: var(--text-muted); margin-bottom: 16px; max-width: 480px; }
    .hero-sub { font-size: 15px; color: var(--text-body); margin-bottom: 32px !important; }
    .hero-actions { display: flex; gap: 16px; }
    .hero-visual { position: relative; height: 460px; }
    .hero-main { position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 78%; aspect-ratio: 1/1; border-radius: 50%; background: linear-gradient(135deg, #e9d8b9, #d4b88a); box-shadow: var(--shadow-lg); overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
    .hero-main img { width: 78%; height: auto; object-fit: contain; }
    .hero-side { position: absolute; left: 0; top: 8%; width: 50%; aspect-ratio: 3/4; border-radius: var(--radius); background: linear-gradient(160deg, #f3e4d4, #e8927c); box-shadow: var(--shadow); overflow: hidden; }
    .hero-side img { width: 100%; height: 100%; object-fit: cover; }
    .hero-tag { position: absolute; left: 30%; bottom: 5%; background-color: var(--white); padding: 12px 20px; border-radius: 50px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-dark); font-weight: 600; }
    .hero-tag::before { content: '✓'; width: 24px; height: 24px; border-radius: 50%; background: var(--primary); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 12px; }

    /* 品牌理念 */
    .philosophy { background-color: var(--bg-light); }
    .philosophy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .philosophy-img { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
    .philosophy-img img { width: 100%; height: 100%; object-fit: cover; }
    .philosophy-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(164, 179, 83, 0.15), transparent 50%); }
    .philosophy-content .tag { display: inline-block; padding: 6px 18px; background-color: var(--primary-soft); color: var(--primary-dark); border-radius: 50px; font-size: 13px; font-weight: 600; margin-bottom: 16px; letter-spacing: 1px; }
    .philosophy-content h2 { font-size: 36px; color: var(--text-dark); margin-bottom: 22px; line-height: 1.3; font-weight: 700; }
    .philosophy-content p { color: var(--text-body); margin-bottom: 18px; font-size: 15px; }
    .philosophy-content .signature { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--border); font-style: italic; color: var(--primary-dark); font-size: 17px; }

    /* 核心优势 */
    .features { background-color: var(--white); }
    .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .feature-card { background-color: var(--bg-light); border-radius: var(--radius); padding: 36px 26px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid transparent; }
    .feature-card:hover { transform: translateY(-6px); border-color: var(--primary-light); background: var(--white); }
    .feature-icon { width: 70px; height: 70px; margin: 0 auto 22px; background: linear-gradient(135deg, var(--primary-soft), var(--primary-light)); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 30px; }
    .feature-card h3 { font-size: 18px; color: var(--text-dark); margin-bottom: 10px; font-weight: 700; }
    .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

    /* 产品系列 */
    .categories { background-color: var(--primary-very-soft); }
    .category-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
    .category-tab { padding: 10px 24px; background-color: var(--white); border: 1px solid var(--border); border-radius: 50px; font-size: 14px; color: var(--text-body); cursor: pointer; transition: var(--transition); font-weight: 500; }
    .category-tab.active, .category-tab:hover { background-color: var(--primary); color: var(--white); border-color: var(--primary); }
    .products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .product-card { background-color: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
    .product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .product-image { aspect-ratio: 1 / 1; background: linear-gradient(135deg, #faf5eb, #f0e5d0); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
    .product-image img { width: 80%; height: 80%; object-fit: contain; transition: transform 0.4s ease; }
    .product-card:hover .product-image img { transform: scale(1.05); }
    .product-badge { position: absolute; top: 12px; left: 12px; background-color: var(--accent); color: var(--white); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; z-index: 1; }
    .product-info { padding: 20px; }
    .product-category { font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
    .product-info h3 { font-size: 16px; color: var(--text-dark); margin-bottom: 8px; font-weight: 600; line-height: 1.4; }
    .product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
    .product-tag { font-size: 11px; padding: 2px 8px; background: var(--primary-very-soft); color: var(--primary-dark); border-radius: 4px; }
    .product-price { font-size: 19px; color: var(--primary-dark); font-weight: 700; margin-bottom: 14px; }
    .add-cart { width: 100%; padding: 12px; border: none; background-color: var(--primary-very-soft); color: var(--primary-dark); border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; transition: var(--transition); font-family: inherit; font-size: 14px; }
    .add-cart:hover { background-color: var(--primary); color: var(--white); }

    /* 品牌故事 */
    .story { background: linear-gradient(135deg, #2d3325 0%, #3d4630 100%); color: var(--white); padding: 100px 0; }
    .story .section-title h2, .story .section-title p { color: var(--white); }
    .story .section-title .tag { background: rgba(255, 255, 255, 0.15); color: var(--primary-light); }
    .story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .story-card { padding: 36px 28px; background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: var(--radius); transition: var(--transition); }
    .story-card:hover { background: rgba(255, 255, 255, 0.1); transform: translateY(-4px); }
    .story-num { font-size: 48px; font-weight: 800; color: var(--primary-light); margin-bottom: 16px; line-height: 1; }
    .story-card h3 { font-size: 19px; margin-bottom: 12px; color: var(--white); }
    .story-card p { font-size: 14px; line-height: 1.8; color: rgba(255, 255, 255, 0.8); }

    /* 客户评价 */
    .testimonials { background-color: var(--bg-light); }
    .testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .testimonial-card { background-color: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); position: relative; }
    .testimonial-card::before { content: '"'; position: absolute; top: 8px; right: 24px; font-size: 80px; color: var(--primary-soft); font-family: Georgia, serif; line-height: 1; }
    .testimonial-card .stars { color: var(--warning); margin-bottom: 16px; font-size: 16px; }
    .testimonial-card p { font-size: 15px; color: var(--text-body); margin-bottom: 22px; line-height: 1.8; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .author-avatar { width: 46px; height: 46px; border-radius: 50%; background: linear-gradient(135deg, var(--primary-light), var(--primary)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; }
    .author-info h4 { font-size: 15px; color: var(--text-dark); }
    .author-info span { font-size: 13px; color: var(--text-muted); }

    /* 博客 */
    .blog-section { background-color: var(--white); }
    .blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .blog-card { background-color: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); border: 1px solid var(--border); }
    .blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .blog-image { aspect-ratio: 16 / 10; background: linear-gradient(135deg, var(--primary-light), var(--primary)); display: flex; align-items: center; justify-content: center; color: var(--white); position: relative; overflow: hidden; }
    .blog-image img { width: 100%; height: 100%; object-fit: cover; opacity: 0.95; }
    .blog-image-tag { position: absolute; top: 14px; left: 14px; background: rgba(255, 255, 255, 0.95); color: var(--primary-dark); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; z-index: 99;}
    .blog-content { padding: 24px; }
    .blog-meta { font-size: 12px; color: var(--text-muted); margin-bottom: 10px; }
    .blog-content h3 { font-size: 17px; color: var(--text-dark); margin-bottom: 12px; font-weight: 600; line-height: 1.5; }
    .read-more { font-size: 14px; color: var(--primary-dark); font-weight: 600; }
    .read-more:hover { color: var(--primary); }

    /* 预约服务 */
    .appointment { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); color: var(--white); }
    .appointment .section-title h2, .appointment .section-title p { color: var(--white); }
    .appointment .section-title .tag { background: rgba(255, 255, 255, 0.2); color: var(--white); }
    .appointment-form { max-width: 800px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 16px; align-items: end; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group label { font-size: 14px; opacity: 0.95; }
    .form-group input, .form-group select { padding: 14px 18px; border: none; border-radius: var(--radius-sm); font-size: 15px; font-family: inherit; }
    .appointment-form .btn { height: 48px; }

    @media (max-width: 900px) {
      .hero .container, .philosophy-grid { grid-template-columns: 1fr; }
      .hero-visual { height: 360px; }
      .hero-content h1 { font-size: 36px; }
      .features-grid, .products-grid, .testimonial-grid, .blog-grid, .story-grid { grid-template-columns: repeat(2, 1fr); }
      .appointment-form { grid-template-columns: 1fr; }
    }
    @media (max-width: 600px) {
      .hero-content h1 { font-size: 30px; }
      .features-grid, .products-grid, .testimonial-grid, .blog-grid, .story-grid { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
    }