    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
    }

    body{
      font-family:'Noto Sans JP',sans-serif;
      background:#0b0b0f;
      color:#fff;
      overflow-x:hidden;
      -webkit-font-smoothing:antialiased;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    img{
      width:100%;
      display:block;
    }

    .container{
      width:92%;
      max-width:1200px;
      margin:auto;
    }

    header{
      position:fixed;
      top:0;
      width:100%;
      z-index:999;
      background:rgba(0,0,0,0.45);
      backdrop-filter:blur(12px);
      border-bottom:1px solid rgba(255,255,255,0.05);
    }

    .nav{
      display:flex;
      justify-content:space-between;
      align-items:center;
      padding:16px 0;
    }

    .logo{
      font-size:22px;
      font-weight:700;
      letter-spacing:2px;
      color:#d4af37;
    }

    .line-btn{
      background:#06c755;
      padding:11px 18px;
      border-radius:999px;
      font-size:14px;
      font-weight:700;
      box-shadow:0 0 20px rgba(6,199,85,.4);
    }

.hero{

  position:relative;

  width:100%;

  min-height:100vh;

  display:flex;

  align-items:center;

  justify-content:center;

  overflow:hidden;

  background:
  linear-gradient(
    rgba(0,0,0,.45),
    rgba(0,0,0,.72)
  ),
  url('images/hero.jpg');

  background-size:cover;

  background-position:center center;

  background-repeat:no-repeat;

}

/* 手机端优化 */

@media(max-width:768px){

  .hero{

    min-height:100svh;

    background-position:center top;

    background-size:cover;

  }

}

/* 超大屏优化 */

@media(min-width:1600px){

  .hero{

    background-size:100% auto;

  }

}
    .hero h1{
      font-size:42px;
      line-height:1.5;
      margin-bottom:20px;
      font-weight:700;
    }

    .gold{
      color:#d4af37;
    }

    .hero p{
      color:#d0d0d0;
      line-height:2;
      margin-bottom:35px;
      font-size:15px;
    }

.hero-buttons{

  position:absolute;

  bottom:60px;

  left:50%;

  transform:translateX(-50%);

  display:flex;

  gap:20px;

  z-index:5;
}

    .btn-primary{
      width:260px;
      padding:16px;
      background:#d4af37;
      color:#000;
      border-radius:999px;
      font-weight:700;
      font-size:16px;
      box-shadow:0 0 30px rgba(212,175,55,.3);
    }

    .btn-secondary{
      width:260px;
      padding:15px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,0.15);
      background:rgba(255,255,255,0.04);
      color:#fff;
    }

    section{
      padding:90px 0;
    }

    .section-title{
      text-align:center;
      margin-bottom:55px;
    }

    .section-title h2{
      font-size:30px;
      color:#d4af37;
      margin-bottom:12px;
    }

    .section-title p{
      color:#8d95aa;
      font-size:13px;
      letter-spacing:2px;
    }

    .features{
      display:grid;
      grid-template-columns:1fr;
      gap:22px;
    }

    .card{
      background:#141923;
      border-radius:24px;
      padding:30px;
      border:1px solid rgba(255,255,255,0.05);
    }

    .card h3{
      font-size:21px;
      margin-bottom:15px;
      color:#fff;
    }

    .card p{
      color:#b7bfd0;
      line-height:1.9;
      font-size:14px;
    }

    .therapists-section{
      background:#10141f;
    }

    .therapist-grid{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:22px;
    }

    .therapist-card{
      background:rgba(255,255,255,0.03);
      border-radius:22px;
      padding:18px 10px;
      text-align:center;
      border:1px solid rgba(255,255,255,0.05);
      transition:0.3s;
    }

    .therapist-card:hover{
      transform:translateY(-6px);
      background:rgba(255,255,255,0.05);
    }

    .therapist-card img{
      width:95px;
      height:95px;
      object-fit:cover;
      border-radius:50%;
      margin:auto;
      border:3px solid rgba(212,175,55,.7);
      box-shadow:0 0 20px rgba(212,175,55,.35);
    }

    .therapist-card h3{
      margin-top:14px;
      color:#f0d17c;
      font-size:15px;
      font-weight:600;
    }

    .therapist-card span{
      display:block;
      margin-top:6px;
      color:#8ea0c3;
      font-size:13px;
    }

    .price-box{
      background:#141923;
      border-radius:26px;
      padding:30px;
      border:1px solid rgba(212,175,55,.15);
    }

    .price-item{
      display:flex;
      justify-content:space-between;
      padding:18px 0;
      border-bottom:1px solid rgba(255,255,255,.05);
    }

    .price-item:last-child{
      border:none;
    }

    .price-item span{
      color:#c4cada;
    }

    .price-item strong{
      color:#d4af37;
      font-size:18px;
    }

    .review{
      background:#141923;
      border-radius:22px;
      padding:24px;
      margin-bottom:20px;
    }

    .review p{
      line-height:1.9;
      color:#ddd;
      margin-bottom:12px;
      font-size:14px;
    }

    .review small{
      color:#888;
    }

    .cta{
      border-radius:30px;
      padding:80px 20px;
      text-align:center;

      background:
      linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.88)),
      url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1?q=80&w=1400&auto=format&fit=crop');

      background-size:cover;
      background-position:center;
    }

    .cta h2{
      font-size:34px;
      margin-bottom:20px;
    }

    .cta p{
      color:#d0d0d0;
      line-height:1.9;
      margin-bottom:30px;
    }

    footer{
      text-align:center;
      padding:40px 0;
      color:#777;
      font-size:13px;
      border-top:1px solid rgba(255,255,255,.05);
    }

    .floating-line{
      position:fixed;
      bottom:20px;
      left:50%;
      transform:translateX(-50%);
      width:90%;
      z-index:999;
    }

    .floating-line a{
      display:block;
      text-align:center;
      background:#06c755;
      color:#fff;
      padding:16px;
      border-radius:999px;
      font-weight:700;
      font-size:16px;
      box-shadow:0 10px 30px rgba(6,199,85,.45);
    }

    @media(min-width:768px){

      .hero h1{
        font-size:66px;
      }

      .hero-buttons{
        flex-direction:row;
        justify-content:center;
      }

      .features{
        grid-template-columns:repeat(3,1fr);
      }

      .therapist-grid{
        grid-template-columns:repeat(5,1fr);
      }

      .floating-line{
        width:380px;
      }

    }


/* =========================
   高级 LINE 联系区域
========================= */

.line-contact-wrapper{
  margin-top:90px;
  display:flex;
  justify-content:center;
}

.line-contact-box{

  width:100%;
  max-width:780px;

  text-align:center;

  padding:60px 35px;

  border-radius:34px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );

  border:1px solid rgba(255,255,255,0.06);

  backdrop-filter:blur(18px);

  box-shadow:
  0 10px 40px rgba(0,0,0,0.35),
  0 0 40px rgba(212,175,55,0.04);

  position:relative;

  overflow:hidden;
}

/* 金色柔光 */

.line-contact-box::before{

  content:"";

  position:absolute;

  width:260px;
  height:260px;

  background:rgba(212,175,55,0.08);

  border-radius:50%;

  top:-120px;
  right:-80px;

  filter:blur(40px);
}

/* CONTACT 小标题 */

.contact-mini-title{

  font-size:13px;

  letter-spacing:4px;

  color:#d4af37;

  margin-bottom:20px;

  position:relative;

  z-index:2;
}

/* 主标题 */

.line-contact-box h3{

  font-size:38px;

  line-height:1.5;

  color:#fff;

  margin-bottom:24px;

  font-weight:700;

  position:relative;

  z-index:2;
}

/* 描述 */

.line-contact-box p{

  color:#c8cfde;

  line-height:2.1;

  font-size:15px;

  margin-bottom:36px;

  position:relative;

  z-index:2;
}

/* LINE 按钮 */

.line-contact-btn{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  min-width:280px;

  height:60px;

  background:#06c755;

  color:#fff;

  border-radius:999px;

  font-size:17px;

  font-weight:700;

  transition:0.35s;

  box-shadow:
  0 10px 30px rgba(6,199,85,.35);

  position:relative;

  z-index:2;
}

.line-contact-btn:hover{

  transform:translateY(-4px);

  box-shadow:
  0 16px 40px rgba(6,199,85,.45);
}

/* 手机优化 */

@media(max-width:767px){

  .line-contact-wrapper{
    margin-top:70px;
  }

  .line-contact-box{

    padding:42px 24px;

    border-radius:26px;
  }

  .line-contact-box h3{

    font-size:28px;

    line-height:1.6;
  }

  .line-contact-box p{

    font-size:14px;

    line-height:2;
  }

  .line-contact-btn{

    width:100%;

    min-width:auto;

    height:56px;

    font-size:16px;
  }

}


/* =========================
   REVIEWS
========================= */

.reviews-section{
  padding:100px 0;
  overflow:hidden;
  background:#070b14;
}

.reviews-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

.reviews-track{

  display:flex;

  gap:24px;

  width:max-content;

  animation:scrollReviews 35s linear infinite;
}

.review-card{

  width:360px;

  min-height:220px;

  padding:32px;

  border-radius:30px;

  background:
  linear-gradient(
    145deg,
    rgba(255,255,255,0.05),
    rgba(255,255,255,0.02)
  );

  border:1px solid rgba(255,255,255,0.06);

  backdrop-filter:blur(14px);

  box-shadow:
  0 10px 40px rgba(0,0,0,0.3);

  flex-shrink:0;

  position:relative;

  overflow:hidden;
}

/* 柔光 */

.review-card::before{

  content:"";

  position:absolute;

  width:180px;
  height:180px;

  background:rgba(212,175,55,0.05);

  border-radius:50%;

  top:-60px;
  right:-40px;

  filter:blur(40px);
}

.review-card p{

  color:#fff;

  line-height:2;

  font-size:15px;

  margin-bottom:24px;

  position:relative;

  z-index:2;
}

.review-card span{

  color:#8ea0c3;

  font-size:14px;

  position:relative;

  z-index:2;
}

/* 无限滚动动画 */

@keyframes scrollReviews{

  0%{
    transform:translateX(0);
  }

  100%{
    transform:translateX(-50%);
  }

}

/* 手机端 */

@media(max-width:767px){

  .reviews-section{
    padding:80px 0;
  }

  .review-card{

    width:290px;

    min-height:200px;

    padding:26px;
  }

  .review-card p{

    font-size:14px;

    line-height:1.9;
  }

}


/* =========================
   PRICE TOP TEXT
========================= */

.price-top-text{

  text-align:center;

  color:#cfd5e3;

  font-size:16px;

  line-height:2;

  margin-bottom:34px;

  padding-bottom:30px;

  border-bottom:1px solid rgba(255,255,255,0.05);

}

.hero-bottom{

  position:absolute;

  bottom:60px;

  left:50%;

  transform:translateX(-50%);
}

@media(max-width:768px){

  .hero-buttons{

    width:90%;

    bottom:40px;

    flex-direction:column;

    gap:14px;
  }

  .btn-primary,
  .btn-secondary{

    width:100%;
  }

}
