@charset "UTF-8";
    .product-hero { background: linear-gradient(135deg, #fdfcfc 0%, #f5eeee 60%, #fff8f8 100%); padding: 80px 0; border-bottom: 1px solid var(--border); }
    .product-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .product-hero-img { display: flex; justify-content: center; align-items: center; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); max-height: 380px; }
    .product-hero-img img { width: 100%; height: 100%; object-fit: cover; }
    .product-hero-text h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.1; margin-bottom: 16px; }
    .product-hero-text h1 em { color: var(--primary); font-style: normal; }
    .product-hero-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; font-size: 1.02rem; }
    .product-hero-text ul { display: flex; flex-direction: column; gap: 8px; margin-bottom: 28px; }
    .product-hero-text li { display: flex; gap: 10px; font-size: .95rem; line-height: 1.5; }
    .product-hero-text li::before { content: '✓'; color: var(--primary); font-weight: 900; flex-shrink: 0; }
    .la-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 640px; margin: 0 auto; }
    .la-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px 28px; box-shadow: var(--shadow); text-align: center; }
    .la-model { font-size: 2.5rem; font-weight: 900; color: var(--primary); margin-bottom: 6px; }
    .la-card h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
    .la-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.65; }
    .la-example { display: inline-block; font-size: .82rem; font-weight: 700; font-family: monospace; background: var(--bg-soft); border: 1px solid var(--border); border-radius: 6px; padding: 4px 10px; margin-top: 10px; letter-spacing: .05em; }
    .specs-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
    .specs-table th { background: var(--primary); color: #fff; padding: 12px 18px; text-align: center; font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; }
    .specs-table th:first-child { text-align: left; background: var(--primary-dark); width: 40%; }
    .specs-table td { padding: 11px 18px; font-size: .87rem; border-bottom: 1px solid var(--border); text-align: center; }
    .specs-table tr:last-child td { border-bottom: none; }
    .specs-table tr:nth-child(even) td { background: var(--bg-soft); }
    .specs-table td:first-child { font-weight: 600; color: var(--text-muted); text-align: left; width: 40%; }
    .split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .split-section img { border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); width: 100%; }
    .split-text h2 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 900; margin-bottom: 14px; }
    .split-text h2 em { color: var(--primary); font-style: normal; }
    .split-text p { color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; }
    .split-text ul { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
    .split-text li { display: flex; gap: 10px; font-size: .9rem; line-height: 1.5; }
    .split-text li::before { content: '✓'; color: var(--primary); font-weight: 900; flex-shrink: 0; }
    @media (max-width: 860px) {
      .product-hero-inner, .split-section { grid-template-columns: 1fr; gap: 36px; }
      .la-grid { grid-template-columns: 1fr; }
    }
  
