
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { font-family: 'Helvetica Neue', Arial, sans-serif; color: #1a1a1a; background: #f7f7f5; line-height: 1.7; }
  .wrap { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
  .module { padding: 60px 0; border-bottom: 1px solid #e6e6e2; }
  .module:last-child { border-bottom: none; }
  .kicker { font-size: 12px; letter-spacing: 3px; text-transform: uppercase; color: #8a8a86; margin-bottom: 10px; font-weight: 700; }
  h2 { font-size: 30px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.5px; }
  h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
  p { color: #444; font-size: 15px; margin-bottom: 12px; }
  img { max-width: 100%; display: block; border-radius: 8px; }
  /* Hero */
  .hero { background: #ffffff; text-align: center; padding: 60px 20px; }
  .hero h1 { font-size: 34px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 10px; }
  .hero .sub { font-size: 16px; color: #666; }
  .hero img { max-width: 700px; margin: 30px auto 0; }
  .badges { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
  .badge { background: #1c1c1c; color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 1px; padding: 8px 18px; border-radius: 30px; text-transform: uppercase; }
  /* Feature grid */
  .grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
  .grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .card { background: #fff; border-radius: 10px; padding: 26px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
  .card h3 { font-size: 16px; }
  .card p { font-size: 13.5px; margin-bottom: 0; }
  .icon { font-size: 26px; margin-bottom: 10px; }
  /* Spec table */
  table.spec { width: 100%; border-collapse: collapse; background: #fff; border-radius: 10px; overflow: hidden; }
  table.spec td { padding: 14px 20px; border-bottom: 1px solid #efefeb; font-size: 14px; }
  table.spec td:first-child { font-weight: 700; width: 38%; background: #fafaf8; }
  table.spec tr:last-child td { border-bottom: none; }
  /* Scene strip */
  .strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .strip .item img { aspect-ratio: 1/1; object-fit: cover; }
  .strip .item p { font-size: 13px; text-align: center; margin-top: 10px; }
  /* Steps */
  .steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
  .step { background: #fff; border-radius: 10px; padding: 22px; position: relative; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
  .step::before { counter-increment: step; content: "0" counter(step); font-size: 26px; font-weight: 800; color: #c9a227; display: block; margin-bottom: 8px; }
  .step p { font-size: 13px; margin-bottom: 0; }
  /* FAQ */
  .faq { max-width: 900px; margin: 0 auto; }
  details { background: #fff; border-radius: 10px; margin-bottom: 12px; box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
  summary { padding: 18px 22px; font-weight: 700; font-size: 15px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
  summary::after { content: "+"; font-size: 20px; color: #c9a227; font-weight: 700; }
  details[open] summary::after { content: "–"; }
  details .ans { padding: 0 22px 18px; font-size: 14px; color: #555; }
  /* Trust */
  .trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; text-align: center; }
  .trust .t { background: #fff; border-radius: 10px; padding: 24px 16px; }
  .trust .t b { font-size: 20px; display: block; margin-bottom: 4px; }
  .trust .t span { font-size: 12.5px; color: #666; }
  .note { background: #1c1c1c; color: #fff; border-radius: 10px; padding: 24px 28px; margin-top: 40px; text-align: center; }
  .note b { color: #c9a227; }
  @media (max-width: 800px) {
    .grid2, .grid3, .strip, .steps, .trust { grid-template-columns: 1fr; }
    .hero h1 { font-size: 24px; }
    h2 { font-size: 24px; }
    .module { padding: 40px 0; }
  }
