:root {
  --color-primary: #7458a7;
  --color-secondary: #f296a5;
  --color-text: #142346;
  --color-muted: #7d748a;
  --color-white: #fff;
  --container-width: 1180px;
  --site-header-height: 84px;
}

html,
body {
  overflow-x: hidden;
}

body {
  background: #fff;
  padding-top: var(--site-header-height);
}

body.is-page-ready {
  animation: pageFadeIn 0.5s ease both;
}

.reveal-up {
  opacity: 0;
  transform: translateY(34px);
  transition-duration: var(--reveal-duration, 0.8s);
  transition-property: opacity, transform;
  transition-timing-function: ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.76);
  transition-duration: var(--reveal-duration, 1s);
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(0.2, 0.9, 0.25, 1.2);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.reveal-fade {
  opacity: 0;
  transition: opacity var(--reveal-duration, 0.72s) ease var(--reveal-delay, 0s);
  will-change: opacity;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-fade.is-visible {
  opacity: 1;
}

@keyframes pageFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-page-ready {
    animation: none;
  }

  .reveal-up,
  .reveal-scale,
  .reveal-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-us__decor,
  .dating-faq-block .light,
  .single-plan__decor--star {
    animation: none;
  }
}

section[id] {
  scroll-margin-top: calc(var(--site-header-height) + 24px);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 90;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 4px 18px rgba(173, 119, 220, 0.12);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 84px;
  margin: 0 auto;
  padding: 0 30px;
  gap: 48px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  gap: 44px;
  color: var(--color-text);
  font-size: 20px;
  font-weight: 400;
}

.site-header__nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.site-header__nav-item::before {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 16px;
  content: "";
}

.site-header__nav-link {
  position: relative;
  color: var(--color-text);
  padding: 8px 0;
  white-space: nowrap;
}

.site-header__nav-link::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #f77a8e;
  border-radius: 999px;
  content: "";
  transition: width 0.25s ease;
}

.site-header__nav-link:hover::after,
.site-header__nav-link:focus-visible::after,
.site-header__nav-item:hover > .site-header__nav-link::after,
.site-header__nav-link[aria-current="true"]::after {
  width: 50px;
}

.site-header__dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  z-index: 2;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  padding: 15px 15px;
  border: 1px solid #d4d4d4;
  border-radius: 5px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(80, 64, 112, 0.08);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-header__nav-item:hover .site-header__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.site-header__dropdown a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 20px;
  border-radius: 10px;
  color: #4f4f4f;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 0.5s ease, background-color 0.5s ease;
}

.site-header__dropdown a:hover,
.site-header__dropdown a:focus-visible {
  color: #8d6abc;
  background: #f2e6fb;
}

.site-header__actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 22px;
}

.site-header__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 48px;
  padding: 10px 30px;
  border-radius: 999px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 3px;
  white-space: nowrap;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.site-header__button:hover {
  box-shadow: 0 8px 18px rgba(173, 119, 220, 0.22);
  transform: translateY(-1px);
}

.site-header__button--primary {
  color: var(--color-white);
  background: linear-gradient(90deg, #a8a2de 0%, #c47bc0 100%);
}

.site-header__menu {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border-radius: 50%;
  background: rgba(173, 119, 220, 0.12);
}

.site-header__menu span {
  width: 18px;
  height: 2px;
  background: var(--color-primary);
  border-radius: 999px;
}

body.mobile-menu-open {
  overflow: hidden;
}

.mobile-menu {
  display: none;
}

.hero {
  background: #f5effb;
}

.hero__visual {
  position: relative;
  height: calc(100vw * 900 / 1920);
  min-height: 500px;
  max-height: 690px;
}

.hero-slider {
  width: 100%;
  height: 100%;
}

/* V2 修改開始：移除第一版主視覺 hero-slider__overlay 遮罩樣式 */
/* 第二版主視覺的文字與漸層已整合至圖片，因此不再需要 overlay 元素及樣式。 */
/* V2 修改結束：移除第一版主視覺 hero-slider__overlay 遮罩樣式 */

.hero-slider__slide {
  position: relative;
  overflow: hidden;
}

.hero-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-slider__image--mobile {
  display: none;
}

.hero-slider .hero-slider__pagination {
  right: 9.5%;
  bottom: 28px;
  left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  gap: 8px;
}

.hero-slider .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  margin: 0;
  background: #949494;
  border: 2px solid #949494;
  opacity: 0.92;
  box-shadow: 0 2px 8px rgba(63, 54, 81, 0.15);
}

.hero-slider .swiper-pagination-bullet-active {
  background: #fc6b83;
  border-color: #fc6b83;
  opacity: 1;
}

.hero__panel__wrapper {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  max-width: 95%;
  width: 1350px;
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.hero__panel__wrapper.is-visible {
  opacity: 1;
  pointer-events: none!important;
}

.hero__panel .hero__button {
  pointer-events: auto;
}

.hero__panel__wrapper:not(.is-visible) .hero__button {
  pointer-events: none;
}

.hero__panel {
  position: relative;
  z-index: 2;
  width: clamp(430px, 24.8vw, 475px);
  padding: clamp(42px, 3.25vw, 62px) clamp(44px, 2.6vw, 52px) clamp(34px, 3vw, 58px);
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 48px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 42px rgba(114, 88, 174, 0.12);
  /* transform: translateY(-50%); */
  backdrop-filter: blur(8px);
}

.hero__headline {
  position: static;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  position: absolute;
  top: 20px;
  right: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 15px;
  border-radius: 999px;
  color: var(--color-white);
  background: #f496a3;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

.hero__title {
  margin-top: 20px;
  font-size: clamp(44px, 3vw, 56px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 2px;
}

.hero__title span {
  display: block;
  width: max-content;
  max-width: 100%;
  color: transparent;
  background-image: linear-gradient(90deg, #5b41ba 0%, #c57abf 100%);
  background-clip: text;
  -webkit-background-clip: text;
  white-space: nowrap;
  -webkit-text-fill-color: transparent;
}

.hero__features {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  color: #142346;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.36;
}

.hero__features li {
  position: relative;
  padding-left: 34px;
}

.hero__features li::before {
  position: absolute;
  top: 0.18em;
  left: 0;
  width: 26px;
  height: 26px;
  background: url("../images/index_v3/check1.png") center / contain no-repeat;
  content: "";
}

.hero__button {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  margin: 34px auto 0;
  width: 300px;
  max-width: 100%;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(90deg, #a4a8e2 0%, #c57abf 100%);
  font-size: clamp(22px, 1.65vw, 28px);
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(173, 119, 220, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__button::after {
  position: absolute;
  top: -10%;
  right: -200%;
  z-index: 0;
  width: 50%;
  height: 120%;
  background: #fff;
  content: "";
  opacity: 0.2;
  pointer-events: none;
  transform: skewX(40deg);
  animation: heroButtonShine 3.5s ease-in-out infinite;
}

.hero__button > span {
  position: relative;
  z-index: 1;
}

@keyframes heroButtonShine {
  0%,
  100% {
    right: -200%;
    filter: brightness(1);
  }

  50% {
    right: 300%;
    filter: brightness(1.5);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__button::after {
    animation: none;
  }
}

.hero__button:hover {
  box-shadow: 0 16px 30px rgba(173, 119, 220, 0.26);
  transform: translateY(-2px);
}

.hero__note {
  margin-top: 28px;
  color: #7c797c;
  font-size: clamp(17px, 1.05vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.hero__mobile-details {
  display: none;
}

.section-title {
  display: block;
  color: transparent;
  background-image: linear-gradient(90deg, #ff566b 0%, #df3d91 34%, #7a22c8 62%, #4f16bd 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 500;
  line-height: 1.15;
  text-align: center;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0;
}

.section-title--left {
  display: inline-block;
  text-align: left;
}

.certification {
  position: relative;
  overflow: hidden;
  padding: 78px 0 44px;
  background: #fff url("../images/index_v3/bg_block1.jpg") center / cover no-repeat;
}

.certification__intro {
  width: min(100% - 40px, 900px);
  margin: 0 auto;
  text-align: center;
}

.certification__eyebrow {
  margin-bottom: 8px;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.52em;
}

.certification__title {
  margin-bottom: 16px;
  color:  var(--color-primary);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 5px;
}

.certification__description {
  color: #142346;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
}

.certification__slider-wrap {
  position: relative;
  width: min(100% - 160px, 1580px);
  margin: 28px auto 0;
  padding: 32px 102px;
  border-radius: 42px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(111, 74, 168, 0.14);
}

.certification-slider {
  overflow: hidden;
  width: 100%;
}

.certification-slider__slide {
  overflow: hidden;
  aspect-ratio: 448 / 342;
  border-radius: 15px;
  background: #f5effb;
}

.certification-slider__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.certification-slider__button {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #c7c1ef;
  transform: translateY(-50%);
  transition: background 0.2s ease, transform 0.2s ease;
}

.certification-slider__button:hover {
  background: #b8b1e9;
  transform: translateY(-50%) scale(1.04);
}

.certification-slider__button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 18px;
  border-top: 6px solid var(--color-white);
  border-right: 6px solid var(--color-white);
  content: "";
}

.certification-slider__button--prev {
  left: 14px;
}

.certification-slider__button--prev::before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.certification-slider__button--next {
  right: 14px;
}

.certification-slider__button--next::before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.certification-slider__pagination {
  display: none;
}

.line-matching {
  position: relative;
  background: #fff url("../images/index_v3/bg_block2.jpg") no-repeat;
  background-position-y: 40%;
  background-size: 100% auto;
}

.line-matching::before,
.line-matching::after {
  position: absolute;
  z-index: 0;
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.line-matching.is-decor-visible::before,
.line-matching.is-decor-visible::after {
  opacity: 1;
}

.line-matching::before {
  top: 8%;
  right: 10%;
  width: clamp(120px, 10vw, 195px);
  aspect-ratio: 1;
  background-image: url("../images/index_v3/bg_block2_1.jpg");
  animation: lineMatchingFloatLarge 4.8s ease-in-out infinite;
}

.line-matching::after {
  bottom: 16%;
  left: 11%;
  width: clamp(54px, 4.6vw, 88px);
  aspect-ratio: 1;
  background-image: url("../images/index_v3/bg_block2_2.jpg");
  animation: lineMatchingFloat 4.8s ease-in-out infinite reverse;
}

@keyframes lineMatchingFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes lineMatchingFloatLarge {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-34px);
  }
}

.line-matching__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: min(100% - 120px, 1340px);
  min-height: 675px;
  margin: 0 auto;
  padding: 54px 0 0;
}

.line-matching__media {
  display: flex;
  flex: 0 0 52%;
  justify-content: center;
}

.line-matching__app-preview {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 570 / 655;
}

.line-matching__phone,
.line-matching__bubble {
  position: absolute;
  display: block;
  height: auto;
}

.line-matching__phone--profile {
  top: 11%;
  left: -7%;
  z-index: 2;
  width: 48%;
}

.line-matching__phone--chat {
  top: 0;
  right: 8%;
  z-index: 1;
  width: 48%;
}

.line-matching__bubble {
  right: 28%;
  bottom: 15%;
  z-index: 3;
  width: 43%;
}

.line-matching__content {
  flex: 0 0 48%;
  padding-top: 12px;
}

.line-matching__eyebrow {
  margin-bottom: 12px;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.52em;
}

.line-matching__title {
  margin-bottom: 28px;
  color:  var(--color-primary);
  background-image: none;
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  -webkit-text-fill-color: currentColor;
  letter-spacing: 3px;
}

.line-matching__text {
  margin-bottom: 34px;
  color: var(--color-text);
  font-size: 21px;
  font-weight: 400;
  line-height: 1.55;
}

.line-matching__lead,
.line-matching__body {
  display: block;
}

.line-matching__lead {
  margin-bottom: 1em;
}

.line-matching__text span {
  color: #f36d82;
}

.line-matching__text .line-matching__lead,
.line-matching__text .line-matching__body {
  color: inherit;
}

.line-matching__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 390px;
  min-height: 80px;
  padding: 18px 48px;
  border-radius: 999px;
  color: var(--color-white);
  background: linear-gradient(90deg, #59d28a 0%, #b2d47d 100%);
  box-shadow: 0 12px 22px rgba(82, 195, 132, 0.22);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.line-matching__button:hover {
  box-shadow: 0 16px 28px rgba(82, 195, 132, 0.3);
  transform: translateY(-2px);
}

.line-matching__button span {
  position: relative;
  width: 14px;
  height: 14px;
  margin-left: 22px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.dating-faq-block {
  --dating-faq-light-width: clamp(640px, 58vw, 1080px);
  --dating-faq-light-right: clamp(-180px, -8vw, -80px);
  --dating-faq-side-light-width: clamp(300px, 25.104vw, 482px);
  --dating-faq-side-light-top: clamp(720px, 52.083vw, 1000px);
  position: relative;
  background: #fff url("../images/index_v3/bg_block4.jpg") center top / 100% auto no-repeat;
}

.dating-faq-block .light {
  position: absolute;
  top: 50%;
  right: var(--dating-faq-light-right);
  z-index: 2;
  width: var(--dating-faq-light-width);
  aspect-ratio: 1280 / 1463;
  background: url("../images/index_v3/bg_block4_1.png") center / contain no-repeat;
  pointer-events: none;
  animation: datingFaqLightFloat 3s ease-in-out infinite;
}

.dating-faq-block .light-side {
  position: absolute;
  top: 1700px;
  right: 0;
  z-index: 2;
  width: var(--dating-faq-side-light-width);
  aspect-ratio: 482 / 998;
  background: url("../images/index_v3/bg_block4_3.png") center / contain no-repeat;
  pointer-events: none;
}

@keyframes datingFaqLightFloat {
  0%,
  100% {
    transform: translate3d(0, -50%, 0);
  }

  50% {
    transform: translate3d(0, calc(-50% - 18px), 0);
  }
}

.dating-service,
.future-love-marquee,
.faq-section {
  position: relative;
  z-index: 1;
}

.dating-service,
.faq-section {
  z-index: 3;
}

.dating-service {
  overflow: hidden;
  background: transparent;
}

.dating-service__inner {
  width: min(100% - 80px, 1240px);
  margin: 0 auto;
  padding: 76px 0 64px;
  text-align: center;
}

.dating-service__eyebrow {
  margin-bottom: 10px;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.54em;
}

.dating-service__title {
  margin-bottom: 20px;
  color:  var(--color-primary);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.dating-service__tagline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 30px;
  color: #fff;
  background: #f496a3;
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0;
}

.dating-service__features {
  display: grid;
  width: min(100%, 1160px);
  margin: 58px auto 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 78px;
}

.dating-service__feature {
  text-align: center;
}

.dating-service__feature-heading {
  display: block;
  width: auto;
  max-width: 210px;
  height: 188px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.dating-service__feature-title {
  min-height: 90px;
  margin-bottom: 22px;
  color: #ff618a;
  font-size: clamp(28px, 2.15vw, 36px);
  font-weight: 500;
  line-height: 1.24;
  letter-spacing: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dating-service__feature p {
  color: var(--color-text);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0;
  text-align: left;
}

.dating-service__feature-copy {
  min-width: 0;
}

.dating-service__slogan {
  display: block;
  width: min(100%, 808px);
  margin: 52px auto 0;
}

.dating-service__button {
  display: inline-flex;
  width: min(100%, 815px);
  margin-top: 28px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.dating-service__button:hover {
  opacity: 0.92;
  transform: translateY(-2px);
}

.dating-service__button img {
  width: 100%;
}

.dating-service__terms {
  margin-top: 18px;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.future-love-marquee {
  --future-love-marquee-gap: 80px;
  --future-love-marquee-shift: 40px;
  overflow: visible;
  width: 100%;
  padding: 0;
  pointer-events: none;
}

.future-love-marquee__viewport {
  overflow: hidden;
  width: 100%;
}

.future-love-marquee__track {
  display: flex;
  gap: var(--future-love-marquee-gap);
  width: max-content;
  opacity: 0.2;
  animation: futureLoveMarquee 36s linear infinite;
}

.future-love-marquee__group {
  display: flex;
  gap: var(--future-love-marquee-gap);
  flex: 0 0 auto;
}

.future-love-marquee__group img {
  display: block;
  width: 950px;
  max-width: none;
  height: auto;
  flex: 0 0 auto;
}

@keyframes futureLoveMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - var(--future-love-marquee-shift)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .future-love-marquee__track {
    animation: none;
  }
}

.faq-section {
  overflow: hidden;
  background: transparent;
}

.faq-section__inner {
  width: min(100% - 80px, 1240px);
  margin: 0 auto;
  padding: 66px 0 86px;
  text-align: center;
}

.faq-section__title {
  margin-bottom: 26px;
  color:  var(--color-primary);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
  text-align: left;
}

.faq-item {
  overflow: hidden;
  border: 2px solid #d2dddc;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 8px 20px rgba(111, 74, 168, 0.04);
}

.faq-item__question {
  display: grid;
  align-items: center;
  width: 100%;
  min-height: 84px;
  padding: 22px 42px 22px 32px;
  grid-template-columns: auto 1fr auto;
  gap: 4px;
  color: #2c2c2c;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.28;
  text-align: left;
  cursor: pointer;
  list-style: none;
}

.faq-item__question::-webkit-details-marker {
  display: none;
}

.faq-item__number {
  color: #ff8b91;
}

.faq-item__icon {
  position: relative;
  width: 18px;
  height: 18px;
  margin-left: 24px;
  color: #f27c8a;
}

.faq-item__icon::before,
.faq-item__icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  content: "";
  transition: transform 0.28s ease;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-item__icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.faq-item__answer {
  overflow: hidden;
  padding: 0 76px 28px;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.24s ease, transform 0.28s ease;
}

.faq-item[open] .faq-item__answer {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.is-closing .faq-item__answer {
  opacity: 0;
  transform: translateY(-6px);
}

.faq-item__answer p {
  color: #20212a;
  font-size: 21px;
  font-weight: 300;
  line-height: 1.65;
  letter-spacing: 0;
}

.faq-item__highlight {
  color: #f27c8a;
}

/* V2 修改開始：Before / After「查看更多」沿用常見問題按鈕樣式 */
.faq-section__more,
.before-after__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  margin-top: 44px;
  padding: 10px 34px;
  border-radius: 999px;
  color: #fff;
  background: #f496a3;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-section__more:hover,
.faq-section__more:focus-visible,
.before-after__more:hover,
.before-after__more:focus-visible {
  box-shadow: 0 14px 26px rgba(255, 110, 135, 0.24);
  transform: translateY(-1px);
}
/* V2 修改結束：Before / After「查看更多」沿用常見問題按鈕樣式 */

.love-stories {
  overflow: hidden;
  background: #fff url("../images/index_v3/bg_block5.jpg") center bottom / cover no-repeat;
}

.love-stories__inner {
  display: flex;
  align-items: center;
  width: min(95%, 1360px);
  margin: 0 auto;
  padding: 86px 0 94px;
  gap: 56px;
}

.love-stories__content {
  flex: 0 1 clamp(360px, 36vw, 490px);
}

.love-stories__eyebrow {
  margin-bottom: 20px;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.54em;
}

.love-stories__title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  color:  var(--color-primary);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.love-stories__text {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

.love-stories__text span {
  color: #f36d82;
}

.love-stories__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 408px;
  min-height: 82px;
  margin-top: 26px;
  padding: 18px 44px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(90deg, #b893e0 0%, #ff8b91 100%);
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.love-stories__button:hover {
  box-shadow: 0 14px 28px rgba(242, 119, 134, 0.24);
  transform: translateY(-2px);
}

.love-stories__button span {
  position: absolute;
  right: 50px;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  margin-left: 28px;
  border-top: 4px solid currentColor;
  border-right: 4px solid currentColor;
  transform: rotate(45deg);
}

.love-stories__slider-area {
  flex: 1 1 0;
  min-width: 0;
  overflow: hidden;
  z-index: 2;
}

.love-stories-slider {
  overflow: hidden;
  padding: 22px 4px 18px;
}

.love-stories-slider:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  gap: 38px;
  overflow-x: auto;
  padding-bottom: 18px;
  scroll-snap-type: x mandatory;
}

.love-stories-slider:not(.swiper-initialized) .swiper-slide {
  flex: 0 0 min(100%, 392px);
  scroll-snap-align: start;
}

.love-story-card {
  overflow: hidden;
  height: auto;
  border: 1px solid rgba(32, 33, 42, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(32, 33, 42, 0.1);
  transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.love-story-card:hover {
  box-shadow: 0 2px 8px rgba(32, 33, 42, 0.1);
  transform: translateY(-12px);
}

.love-story-card__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 383 / 272;
  background: #f6edf6;
}

.love-story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.love-story-card__media span {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 999px;
  color: #fff;
  background: #f496a3;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.love-story-card__body {
  min-height: 195px;
  padding: 24px;
}

.love-story-card__header {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  justify-content: space-between;
  column-gap: 18px;
  margin-bottom: 18px;
}

.love-story-card h3 {
  flex: 1 1 0;
  min-width: 0;
  color: #fd789c;
  font-size: clamp(22px, 2.25vw, 34px);
  font-weight: 500;
  line-height: 1.1;
  white-space: nowrap;
}

.love-story-card time {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--color-text);
  font-size: clamp(11px, 1.05vw, 16px);
  font-weight: 400;
  line-height: 1.3;
  white-space: nowrap;
}

.love-story-card p {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.3;
}

.love-stories .love-stories__pagination {
  position: static;
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}

.love-stories .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  margin: 0;
  background: #949494;
  opacity: 0.65;
}

.love-stories .swiper-pagination-bullet-active {
  background: #fc6b83;
  opacity: 1;
}

.love-stories__video {
  position: relative;
  width: min(100% - 80px, 1220px);
  margin: 0 auto 86px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background: #f6edf6;
  box-shadow: 0 12px 32px rgba(111, 74, 168, 0.14);
}

.love-stories__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.single-plan {
  position: relative;
  overflow: hidden;
  min-height: 914px;
  background: #f5f5f5 url("../images/index_v3/bg3.jpg") center top / cover no-repeat;
}

.single-plan__decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.single-plan__decor--star {
  top: 30px;
  right: 10px;
  width: clamp(190px, 16vw, 300px);
  aspect-ratio: 319 / 318;
  background: url("../images/index_v3/bg_block6_1.png") center / contain no-repeat;
  opacity: 1;
  transform-origin: center;
  animation: singlePlanStarTwinkle 3s ease-in-out infinite;
}

@keyframes singlePlanStarTwinkle {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.96);
  }

  48% {
    opacity: 1;
    transform: scale(1.04);
  }

  68% {
    opacity: 0.42;
    transform: scale(1);
  }
}

.single-plan__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 80px, 1390px);
  margin: 0 auto;
  padding: 86px 0 92px;
}

.single-plan__header {
  margin-bottom: 66px;
  text-align: center;
}

.single-plan__title {
  margin-bottom: 8px;
  color:  var(--color-primary);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.single-plan__subtitle {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.45;
  letter-spacing: 0;
}

.single-plan-slider {
  overflow: visible;
}

.single-plan__list {
  display: flex;
  justify-content: center;
  gap: 72px;
}

.single-plan-slider__pagination {
  display: none;
}

.single-plan-card {
  position: relative;
  display: flex;
  flex: 0 0 382px;
  width: 382px;
  height: 528px;
  align-items: center;
  flex-direction: column;
  padding: 65px 38px 32px;
  background: url("../images/index_v3/90dayb.png") center / 100% 100% no-repeat;
}

.single-plan-card__step {
  position: absolute;
  z-index: 1;
  top: -35px;
  left: 17px;
  width: 100px;
}

.single-plan-card__visual {
  width: 184px;
  height: 184px;
  object-fit: contain;
  margin-bottom: 22px;
}

.single-plan-card__heading {
  position: relative;
  margin-bottom: 30px;
  color: #ff618a;
  font-size: clamp(30px, 2.5vw, 34px);
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  letter-spacing: 0;
}

.single-plan-card__heading span {
  display: block;
}

.single-plan-card__heading::after {
  position: absolute;
  right: 0;
  bottom: -20px;
  left: 0;
  width: 86px;
  height: 6px;
  margin: 0 auto;
  border-radius: 999px;
  background: #ffdddf;
  content: "";
}

.single-plan-card p {
  width: 306px;
  color: var(--color-text);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  text-align: left;
  text-wrap: pretty;
  letter-spacing: 0;
}

/* V2 新增開始：90天脫單計畫 Before / After 成果輪播（桌機版） */
.before-after {
  position: relative;
  overflow: hidden;
  background: #f4f4f4;
}

.before-after__inner {
  position: relative;
  width: min(100% - 160px, 1000px);
  margin: 0 auto;
  padding: 72px 0 42px;
}

.before-after__handword {
  display: block;
  width: min(100%, 807px);
  height: auto;
  margin: 0 auto 30px;
}

.before-after-slider {
  overflow: hidden;
}

.before-after__pair {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 34px;
  padding-right: 8px;
  padding-bottom: 9px;
}

.before-after-card {
  position: relative;
  width: calc((100% - 34px) / 2);
  padding: 14px 14px 0;
  background: #fff;
  box-shadow: 8px 9px 0 #eadff1;
}

.before-after-card__photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.before-after-card__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.before-after-card__footer {
  display: grid;
  min-height: 76px;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) 46px;
  padding: 0 14px;
}

.before-after-card__footer p {
  color: #15213d;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.before-after-card__heart {
  position: relative;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  justify-self: center;
  place-items: center;
}

.before-after-card__heart img {
  display: block;
  width: 41px;
  height: 35px;
  object-fit: contain;
  transition: transform 0.18s ease;
}

.before-after-card__heart:hover img,
.before-after-card__heart:focus-visible img {
  transform: scale(1.08);
}

.before-after-card__heart:focus-visible {
  outline: 2px solid #ff7697;
  outline-offset: 3px;
}

.before-after-slider__button {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  width: 70px;
  height: 70px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(173, 165, 231, 0.72);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background-color 0.2s ease, transform 0.2s ease;
  place-items: center;
}

.before-after-slider__button img {
  width: 15px;
  height: 24px;
}

.before-after-slider__button:hover,
.before-after-slider__button:focus-visible {
  background: rgba(151, 139, 224, 0.92);
  transform: translateY(-50%) scale(1.05);
}

.before-after-slider__button--prev {
  left: -94px;
}

.before-after-slider__button--next {
  right: -94px;
}

.before-after-slider__button.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.before-after-slider__pagination {
  display: none;
}

.before-after__more {
  display: flex;
  width: fit-content;
  margin: 30px auto 0;
  border: 0;
  cursor: pointer;
}
/* V2 新增結束：90天脫單計畫 Before / After 成果輪播（桌機版） */

.about-us {
  position: relative;
  overflow: hidden;
  background: #fff url("../images/index_v3/bg_about.jpg") center center / cover no-repeat;
}

.about-us__inner {
  display: flex;
  width: min(100% - 120px, 1480px);
  min-height: 700px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 92px 0 86px;
}

.about-us__content {
  position: relative;
  z-index: 1;
  flex: 0 0 750px;
  color: var(--color-text);
}

.about-us__eyebrow {
  margin-bottom: 16px;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.42em;
}

.about-us__title {
  margin-bottom: 16px;
  color:  var(--color-primary);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 3px;
}

.about-us__lead {
  margin-bottom: 34px;
  color: var(--color-text);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
}

.about-us__lead span,
.about-us__text span {
  color: #ff6179;
}

.about-us__text {
  display: flex;
  flex-direction: column;
  gap: 34px;
  color: #202943;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.68;
  letter-spacing: 0;
}

.about-us__media {
  position: relative;
  flex: 0 1 760px;
  aspect-ratio: 760 / 610;
  min-height: 0;
}

.about-us__photo {
  position: absolute;
  top: 52%;
  left: 49%;
  z-index: 1;
  width: 87%;
  transform: translate(-50%, -50%);
}

.about-us__photo.reveal-scale {
  transform: translate(-50%, -50%) scale(0.76);
}

.about-us__photo.reveal-scale.is-visible {
  transform: translate(-50%, -50%) scale(1);
}

.about-us__decor {
  position: absolute;
  z-index: 2;
  display: block;
  pointer-events: none;
}

.about-us__decor--top {
  top: 5%;
  left: 54%;
  width: 19.8%;
  animation: aboutDecorFloatTop 4s ease-in-out infinite;
}

.about-us__decor--ring {
  bottom: 13%;
  left: 16%;
  width: 23%;
  animation: aboutDecorFloatRing 5.5s ease-in-out 0.45s infinite;
}

.about-us__decor--dot {
  bottom: 4%;
  left: 38%;
  width: 11.8%;
  animation: aboutDecorFloatDot 4.9s ease-in-out 0.9s infinite;
}

@keyframes aboutDecorFloatTop {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

@keyframes aboutDecorFloatRing {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, 12px, 0);
  }
}

@keyframes aboutDecorFloatDot {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -9px, 0);
  }
}

.impact-stats {
  overflow: hidden;
  padding: 34px 0 28px;
  background: #d7c8f0 url("../images/index_v3/bg_block8.jpg") center center / cover no-repeat;
}

.impact-stats__inner {
  display: flex;
  width: min(90%, 1510px);
  min-height: 354px;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 30px 60px 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.38);
  box-shadow: inset 0 0 42px rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(2px);
}

.impact-stat {
  display: flex;
  min-width: 0;
  align-items: center;
  flex: 1 1 0;
  flex-direction: column;
  color: #8a1590;
  text-align: center;
}

.impact-stat__icon {
  display: block;
  width: clamp(150px, 10.4vw, 200px);
  height: clamp(150px, 10.4vw, 200px);
  object-fit: contain;
  margin-bottom: 18px;
}

.impact-stat__label {
  margin-bottom: 8px;
  color: #8b0f84;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.impact-stat__number {
  color: #ff618a;
  font-size: clamp(42px, 3.1vw, 50px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}

.charity-feedback {
  overflow: hidden;
  padding: 78px 0 92px;
  background: #fff url("../images/index_v3/bg_block7.jpg") center center / cover no-repeat;
}

.charity-feedback__header {
  width: min(100% - 80px, 900px);
  margin: 0 auto 42px;
  text-align: center;
}

.charity-feedback__title {
  margin-bottom: 24px;
  color:  var(--color-primary);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}

.charity-feedback__text {
  color: var(--color-text);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: 0;
}

.charity-feedback__text span {
  color: #ff6179;
}

.charity-slider {
  position: relative;
  overflow: visible;
  width: 100%;
}

.charity-slide {
  overflow: hidden;
  width: min(26vw, 500px);
  aspect-ratio: 500 / 335;
  border-radius: 28px;
  background: #f0edf4;
}

.charity-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.charity-slider__button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 98px;
  height: 98px;
  border: 2px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  background: rgba(69, 72, 78, 0.68);
  cursor: pointer;
  transform: translateY(-50%);
}

.charity-slider__button::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 24px;
  background: center / contain no-repeat;
  content: "";
  transform: translate(-50%, -50%);
}

.charity-slider__button--prev {
  left: 46px;
}

.charity-slider__button--prev::before {
  background-image: url("../images/index_v3/btn_left.png");
}

.charity-slider__button--next {
  right: 46px;
}

.charity-slider__button--next::before {
  background-image: url("../images/index_v3/btn_right.png");
}

.charity-slider__pagination {
  display: none;
}

.love-insights {
  overflow: hidden;
  padding: 82px 0 76px;
  background: #d9e7f5 url("../images/index_v3/bg_block9.jpg") center center / cover no-repeat;
}

.love-insights__inner {
  width: min(100% - 120px, 1410px);
  margin: 0 auto;
}

.love-insights__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.love-insights__eyebrow {
  margin-bottom: 10px;
  color: var(--color-secondary);
  font-size: clamp(14px, 1.15vw, 18px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.46em;
}

.love-insights__title {
  color:  var(--color-primary);
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0;
}

.love-insights__more {
  display: inline-flex;
  min-width: 184px;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  background: #f496a3;
  color: #fff;
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.love-insights__more:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 90, 121, 0.22);
}

.love-insights__more--mobile {
  display: none;
}

.love-insights-slider {
  overflow: visible;
}

.love-insights-slider .swiper-wrapper {
  display: flex;
  gap: 36px;
}

.love-insight-card {
  overflow: hidden;
  flex: 1 1 0;
  border-radius: 15px;
  background: #fff;
}

.love-insight-card__image {
  display: block;
  width: 100%;
  aspect-ratio: 444 / 262;
  object-fit: cover;
}

.love-insight-card__body {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px 20px 18px;
}

.love-insight-card time {
  margin-bottom: 6px;
  color: #9f9f9f;
  font-size: clamp(16px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
}

.love-insight-card h3 {
  color: #070707;
  font-size: clamp(18px, 1.65vw, 26px);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: 0;
}

.love-insight-card a {
  display: inline-flex;
  min-width: 200px;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: auto auto 0;
  padding: 0 30px;
  border: 3px solid #ff618a;
  border-radius: 999px;
  color: #ff618a;
  font-size: clamp(17px, 1.5vw, 24px);
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

.love-insight-card a::after {
  width: 24px;
  height: 19px;
  background: url("../images/index_v3/right-arrow.png") center / contain no-repeat;
  content: "";
  transition: transform 0.2s ease;
}

.love-insight-card a:hover::after {
  transform: translateX(5px);
}

.love-insights-slider__pagination {
  display: none;
}

.site-footer {
  background: #fff;
  color: #646a7e;
}

.site-footer__main {
  display: flex;
  width: min(95%, 1400px);
  min-height: 450px;
  align-items: flex-start;
  /* justify-content: center; */
  margin: 0 auto;
  padding: 100px 0 70px;
}

.site-footer__brand {
  margin-right: 8%;
}

.site-footer__logo {
  display: inline-flex;
  margin-bottom: 22px;
}

.site-footer__logo img {
  width: 184px;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer__socials a {
  display: inline-flex;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;
}

.site-footer__socials img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.site-footer__nav {
  margin-right: 13%;
}

.site-footer__nav,
.site-footer__contact {
  display: flex;
  flex-direction: column;
  gap: 34px;
  color: #646a7e;
}

.site-footer__nav h2,
.site-footer__contact h2 {
  color: #836c99;
  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.site-footer__nav a {
  color: #6c758b;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  transition: all 0.5s ease;
}

.site-footer__nav a:hover {
  color: #8d6abc;
}

.site-footer__contact {
  flex: 0 0 330px;
  gap: 28px;
}

.site-footer__contact dl {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.site-footer__contact dt {
  margin-bottom: 4px;
  color: #646a7e;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.site-footer__contact dd,
.site-footer__contact a {
  color: #646a7e;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.site-footer__copyright {
  min-height: 64px;
  padding: 22px max(24px, calc((100% - 1510px) / 2)) 20px;
  border-top: 1px solid #ececec;
  color: #afafaf;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0;
}

.floating-actions {
  position: fixed;
  z-index: 20;
  right: 30px;
  bottom: 30px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 1;
  pointer-events: auto;
}

.go-top,
.floating-actions__link {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.go-top img,
.floating-actions__link img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.go-top__hover,
.go-top:hover .go-top__default {
  opacity: 0;
}

.go-top:hover .go-top__hover {
  opacity: 1;
}

.floating-actions__link img {
  object-fit: contain;
}

.party {
  overflow: hidden;
  padding: 68px 0 104px;
  background: #fff url("../images/index_v3/bg_block3.jpg") center bottom / cover no-repeat;
}

.party__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(100% - 80px, 1500px);
  margin: 0 auto 44px;
  gap: 32px;
}

.party .section-title {
  color:  var(--color-primary);
  background-image: none;
  font-size: clamp(42px, 4vw, 60px);
  font-weight: 500;
  line-height: 1.08;
  -webkit-text-fill-color: currentColor;
}

.party__subtitle {
  margin-top: 10px;
  color: var(--color-text);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.5;
}

.party__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 185px;
  min-height: 50px;
  margin-top: 38px;
  padding: 12px 38px;
  color: var(--color-white);
  background: #f496a3;
  border: 0;
  border-radius: 999px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.party__more:hover {
  box-shadow: 0 14px 26px rgba(255, 110, 135, 0.24);
  transform: translateY(-1px);
}

.party-slider {
  overflow: visible;
  width: min(100% - 80px, 1500px);
  margin: 0 auto;
}

.party-slider__pagination {
  display: none;
}

.party-card {
  overflow: hidden;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 8px 18px rgba(63, 54, 81, 0.18);
}

.party-card__image {
  width: 100%;
  aspect-ratio: 285 / 210;
  object-fit: cover;
}

.party-card__body {
  padding: 16px 20px 22px;
}

.party-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.party-card__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 76px;
  min-height: 24px;
  padding: 4px 14px;
  color: var(--color-white);
  background: #7a7d75;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
}

.party-card__meta time {
  color: #c57abf;
  font-size: 12px;
  font-weight: 600;
}

/* V2 修改開始：近期單身聯誼派對標題縮小並限制為兩行省略 */
.party-card h3 {
  display: -webkit-box;
  height: 2.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 12px;
  color: #7e52ac;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
/* V2 修改結束：近期單身聯誼派對標題縮小並限制為兩行省略 */

.party-card__body a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 190px);
  min-height: 42px;
  margin: 0 auto;
  color: var(--color-white);
  background: linear-gradient(90deg, #ff8c92 0%, #e74e72 100%);
  border-radius: 999px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.party-card__body a:hover {
  box-shadow: 0 10px 20px rgba(234, 62, 107, 0.25);
  transform: translateY(-1px);
}


@media (max-width: 1280px) {
  :root {
    --site-header-height: 72px;
  }

  .site-header__inner {
    min-height: 72px;
    padding: 0 28px 0 10px;
    gap: 18px;
  }

  .site-header__logo img {
    max-width: 100%;
  }

  .site-header__nav {
    gap: 18px;
    font-size: 14px;
  }

  .site-header__button {
    min-width: 74px;
    min-height: 34px;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 14px;
  }

  .hero__badge {
    top: 15px;
  }

  .charity-slider__button {
    width: 50px;
    height: 50px;
  }

  .charity-slider__button::before {
    width: 10px;
  }

  .site-footer__main {
    justify-content: space-between;
  }

  .site-footer__brand {
    margin-right: 0;
  }

  .site-footer__nav {
    margin-right: 0;
  }
}

@media (max-width: 900px) {
.site-header__actions {
  gap: 10px;
}

.site-header__button {
  min-width: 70px;
}

.line-matching__button {
  width: 45vw;
  padding: 18px 0;
}

.impact-stats__inner {
  padding: 0 0;
}

.love-insight-card a {
  min-width: auto;
  min-height: 40px;
  padding: 0 15px;
  gap: 8px;
}

.love-insight-card a::after {
  width: 20px;
}

.site-footer__main {
    display: flex;
    width: 90%;
    min-height: 0;
    flex-wrap: wrap;
    gap: 0;
    padding: 36px 0 22px;
  }

  .site-footer__brand {
    display: flex;
    flex: 0 0 100%;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
  }

  .site-footer__logo {
    margin-bottom: 0;
  }

  .site-footer__logo img {
    width: 124px;
  }

  .site-footer__socials {
    gap: 9px;
  }

  .site-footer__socials a {
    width: 34px;
    height: 34px;
  }

  .site-footer__nav {
    display: none;
  }

  .site-footer__contact {
    flex: 0 0 100%;
    gap: 18px;
  }

  .site-footer__contact h2 {
    font-size: 16px;
  }

  .site-footer__contact dl {
    gap: 16px;
  }

  .site-footer__contact dt {
    margin-bottom: 3px;
    font-size: 11px;
  }

  .site-footer__contact dd,
  .site-footer__contact a {
    font-size: 17px;
    line-height: 1.15;
  }

  .site-footer__copyright {
    min-height: 62px;
    padding: 16px 28px 18px;
    font-size: 9px;
  }

}

@media (min-width: 769px) and (max-width: 1390px) {
  .about-us__inner {
    width: min(100% - 80px, 1280px);
    gap: 40px;
  }

  .about-us__content {
    flex: 0 1 650px;
  }

  .about-us__media {
    flex: 0 1 620px;
  }

  .single-plan {
    min-height: 0;
  }

  .single-plan__inner {
    width: calc(100% - 80px);
    padding: 72px 0 78px;
  }

  .single-plan__header {
    margin-bottom: 56px;
  }

  .single-plan__title {
    font-size: 52px;
  }

  .single-plan__subtitle {
    font-size: 20px;
  }

  .single-plan__list {
    --single-plan-gap: clamp(34px, 4vw, 72px);
    gap: var(--single-plan-gap);
  }

  .single-plan-card {
    flex: 0 0 min(382px, calc((100vw - 80px - var(--single-plan-gap) - var(--single-plan-gap)) / 3));
    width: min(382px, calc((100vw - 80px - var(--single-plan-gap) - var(--single-plan-gap)) / 3));
    height: auto;
    aspect-ratio: 382 / 528;
    padding: clamp(54px, 5.2vw, 74px) clamp(24px, 2.7vw, 38px) clamp(24px, 2.4vw, 32px);
  }

  .single-plan-card__step {
    top: clamp(-49px, -3.5vw, -34px);
    left: clamp(-6px, -0.4vw, -3px);
    width: clamp(82px, 8vw, 112px);
  }

  .single-plan-card__visual {
    width: clamp(132px, 13vw, 184px);
    height: clamp(132px, 13vw, 184px);
    margin-bottom: clamp(16px, 1.6vw, 22px);
  }

  .single-plan-card__heading {
    margin-bottom: clamp(30px, 2.9vw, 40px);
    font-size: clamp(25px, 2.6vw, 36px);
  }

  .single-plan-card__heading::after {
    bottom: clamp(-20px, -1.45vw, -15px);
    width: clamp(68px, 6.2vw, 86px);
    height: 5px;
  }

  .single-plan-card p {
    width: min(100%, 306px);
    font-size: clamp(14px, 1.35vw, 18px);
    line-height: 1.72;
  }
}

@media (min-width: 769px) and (max-width: 1100px) {
  .love-stories__inner {
    width: min(100% - 48px, 1040px);
    gap: 28px;
    padding: 70px 0 78px;
  }

  .love-stories__content {
    flex: 0 0 330px;
  }

  .love-stories__eyebrow {
    margin-bottom: 14px;
    font-size: 15px;
    letter-spacing: 0.44em;
  }

  .love-stories__title {
    margin-bottom: 16px;
    font-size: 48px;
    line-height: 1.15;
  }

  .love-stories__text {
    font-size: 18px;
    line-height: 1.55;
  }

  .love-stories__button {
    min-width: 310px;
    min-height: 62px;
    margin-top: 22px;
    padding: 14px 42px;
    font-size: 24px;
  }

  .love-stories__button span {
    right: 32px;
    width: 12px;
    height: 12px;
  }

  .love-stories-slider {
    padding-right: 0;
    padding-left: 0;
  }

  .love-story-card__body {
    min-height: 166px;
    padding: 18px;
  }

  .love-story-card__media span {
    right: 10px;
    bottom: 10px;
    min-height: 32px;
    padding: 7px 14px;
    font-size: 14px;
  }

  .love-story-card__header {
    position: relative;
    column-gap: 8px;
    margin-bottom: 14px;
  }

  .love-story-card h3 {
    font-size: 24px;
  }

  .love-story-card time {
    /* position: absolute;

    right: -10px;
    top: -8px; */
    font-size: 11px;
  }

  .love-story-card p {
    font-size: 14px;
    line-height: 1.35;
  }
}

@media (min-width: 769px) and (max-width: 900px) {
  .love-stories__inner {
    width: min(100% - 40px, 840px);
    gap: 0;
  }

  .love-stories__content {
    flex-basis: 300px;
  }

  .love-stories__eyebrow {
    font-size: 13px;
    letter-spacing: 0.4em;
  }

  .love-stories__title {
    font-size: 42px;
  }

  .love-stories__text {
    font-size: 14px;
  }

  .love-stories__button {
    min-width: 270px;
    min-height: 54px;
    font-size: 21px;
  }

  .love-story-card__body {
    min-height: 156px;
    padding: 10px;
  }

  .love-story-card h3 {
    font-size: 18px;
  }

  .love-story-card p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  :root {
    --site-header-height: 100px;
  }

  section[id] {
    scroll-margin-top: calc(var(--site-header-height) + 18px);
  }

  .dating-faq-block {
    --dating-faq-light-width: clamp(420px, 118vw, 620px);
    --dating-faq-light-right: -24vw;
    --dating-faq-side-light-width: clamp(220px, 74vw, 360px);
    --dating-faq-side-light-top: clamp(640px, 150vw, 850px);
  }

  .site-header__inner {
    position: relative;
    min-height: 100px;
    padding: 0 20px;
    gap: 12px;
  }


  .site-header__nav {
    display: none;
  }

  .site-header__actions {
    display: flex;
    position: absolute;
    top: 50%;
    right: 82px;
    margin-left: auto;
    gap: 0;
    transform: translateY(-50%);
  }

  .site-header__actions .site-header__button {
    box-sizing: border-box;
    width: 110px;
    min-width: 0;
    min-height: 50px;
    padding: 0;
    font-size: 20px;
  }

  .site-header__actions .site-header__button:nth-child(n + 2) {
    display: none;
  }

  .site-header__menu {
    display: inline-flex;
    position: absolute;
    top: 50%;
    right: 20px;
    z-index: 120;
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    background: linear-gradient(90deg, #a4a8e2 0%, #c57abf 100%);
    transform: translateY(-50%);
  }

  .site-header__menu span {
    position: absolute;
    width: 21px;
    height: 3px;
    background: #fff;
    transition: transform 0.24s ease, opacity 0.2s ease;
  }

  .site-header__menu span:first-child {
    transform: translateY(-4px);
  }

  .site-header__menu span:nth-child(2) {
    transform: translateY(3px);
  }

  .site-header__menu span:nth-child(3) {
    display: none;
  }

  .site-header__menu[aria-expanded="true"] span:first-child {
    transform: rotate(45deg);
  }

  .site-header__menu[aria-expanded="true"] span:nth-child(2) {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    height: 100dvh;
    padding: 24px 36px 34px;
    overflow-y: auto;
    background: url("../images/index_v3/bg_list.jpg") center / cover no-repeat;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .mobile-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }

  .mobile-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .mobile-menu__logo {
    display: inline-flex;
    align-items: center;
  }

  .mobile-menu__logo img {
    width: clamp(200px, 43vw, 375px);
  }

  .mobile-menu__close {
    display: none;
  }

  .mobile-menu__nav {
    display: grid;
    gap: 0;
    margin-top: clamp(55px, 7vh, 110px);
    margin-bottom: 20px;
    color: #a35ca4;
    font-size: clamp(20px, 6vw, 58px);
    font-weight: 400;
    line-height: 1.2;
  }

  .mobile-menu__item {
    display: grid;
  }

  .mobile-menu__nav > a,
  .mobile-menu__toggle {
    display: flex;
    /* min-height: clamp(78px, 15vw, 162px); */
    align-items: flex-start;
    justify-content: space-between;
    margin: 0;
    padding: 20px 0;
    border: 0;
    border-bottom: clamp(2px, 0.35vw, 4px) solid #b57ab1;
    color: #b57ab1;
    font: inherit;
    line-height: inherit;
    text-align: left;
  }

  .mobile-menu__toggle {
    width: 100%;
    background: transparent;
    cursor: pointer;
  }

  .mobile-menu__toggle::after {
    margin-left: 24px;
    color: #b57ab1;
    content: "+";
    font-size: 1.35em;
    font-weight: 400;
    line-height: 0.8;
  }

  .mobile-menu__item.is-open > .mobile-menu__toggle::after {
    content: "−";
  }

  .mobile-menu__submenu {
    display: grid;
    height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: height 0.35s ease-in-out;
  }

  .mobile-menu__item.is-open > .mobile-menu__submenu {
    pointer-events: auto;
  }

  .mobile-menu__submenu a {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: clamp(2px, 0.3vw, 3px) solid #e3cff9;
    color: #888888;
    font-size: clamp(24px, 5.2vw, 48px);
    line-height: 1.2;
  }

  .mobile-menu__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(28px, 7vw, 68px);
    margin-top: auto;
  }

  .mobile-menu__actions a {
    display: inline-flex;
    min-height: clamp(54px, 11vw, 92px);
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: var(--color-white);
    background: linear-gradient(90deg, #a8a2de 0%, #c47bc0 100%);
    font-size: clamp(28px, 5.2vw, 50px);
    font-weight: 400;
    line-height: 1;
  }

  .mobile-menu__socials {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(18px, 5vw, 28px);
    margin-top: 30px;
    align-items: center;
  }

  .mobile-menu__socials a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .mobile-menu__socials img {
    width: min(100%, clamp(76px, 16vw, 155px));
  }

  /* V2 修改開始：手機版主視覺改為完整圖片比例，並隱藏重複的 HTML 標題文字 */
  .hero__visual {
    height: auto;
    min-height: 0;
    max-height: none;
    background: var(--color-white);
  }

  .hero-slider {
    position: relative;
    height: auto;
    aspect-ratio: 16 / 17;
    touch-action: pan-y;
  }

  .hero-slider .swiper-wrapper {
    align-items: flex-start;
  }

  .hero-slider__slide {
    height: 100%;
    overflow: hidden;
    touch-action: pan-y;
  }

  .hero-slider .swiper-pagination-bullet {
    margin: 0!important;
  }

  .hero-slider__slide img {
    height: 100%;
    object-fit: contain;
    object-position: center;
  }

  .hero-slider__image--pc {
    display: none;
  }

  .hero-slider__image--mobile {
    display: block;
  }

  .hero__panel__wrapper {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    height: 100%;
    pointer-events: none!important;
  }

  .hero__panel {
    width: 100%;
    height: 100%;
    left: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    backdrop-filter: none;
  }

  .hero__headline {
    display: none;
  }

  .hero__badge {
    display: none;
  }
  /* V2 修改結束：手機版主視覺改為完整圖片比例，並隱藏重複的 HTML 標題文字 */

  .hero__title {
    margin-top: 16px;
    color: var(--color-white);
    font-size: clamp(38px, 9vw, 44px);
    line-height: 1.14;
  }

  .hero__title span {
    width: auto;
    color: var(--color-white);
    background-image: none;
    white-space: normal;
    -webkit-text-fill-color: currentColor;
  }

  .hero__details {
    display: none;
  }

  .hero__mobile-details {
    box-sizing: border-box;
    display: block;
    width: 100%;
    min-height: 270px;
    padding: 42px 24px 38px;
    background: var(--color-white);
    text-align: center;
  }

  .hero__features {
    display: inline-grid;
    justify-items: start;
    gap: 9px;
    margin-top: 0;
    font-size: clamp(20px, 5vw, 24px);
    line-height: 1.35;
    text-align: left;
  }

  .hero__features li {
    padding-left: 34px;
  }

  .hero__features li::before {
    top: 0.1em;
  }

  .hero__button {
    min-height: 50px;
    margin: 22px auto 0;
    padding: 0 28px;
    width: min(100%, 236px);
    font-size: 18px;
    box-shadow: none;
    letter-spacing: 2px;
  }

  .hero__note {
    margin-top: 18px;
    color: #6c6571;
    font-size: 18px;
    letter-spacing: 0.08em;
  }

  .hero-slider .hero-slider__pagination {
    right: 20px;
    bottom: 28px;
    z-index: 3;
  }

  .certification {
    padding: 0 0 28px;
    background-image: url("../images/index_v3/bg_block1_m.jpg");
  }

  .certification__eyebrow {
    font-size: clamp(12px, 3vw, 14px);
    letter-spacing: 0.35em;
  }

  .certification__title {
    margin-bottom: 10px;
    font-size: 36px;
    letter-spacing: 1px;
  }

  .certification__description {
    font-size: clamp(13px, 3.3vw, 16px);
    line-height: 1.55;
  }

  .certification__description span {
    white-space: nowrap;
  }

  .certification__break {
    display: none;
  }

  .certification__slider-wrap {
    width: min(100% - 64px, 430px);
    margin-top: 22px;
    margin-bottom: 36px;
    padding: 12px 16px;
    border-radius: 26px;
  }

  .certification-slider__button {
    display: none;
  }

  .certification-slider__pagination {
    right: 0;
    bottom: -32px!important;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .certification-slider__pagination .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    margin: 0!important;
    background: #9d9d9d;
    opacity: 0.82;
  }

  .certification-slider__pagination .swiper-pagination-bullet-active {
    background: #ff808e;
    opacity: 1;
  }

  .line-matching {
    background-image: url("../images/index_v3/bg_block2_m.jpg");
    background-position-y: -30px;
    background-size: 100% 100%;
  }

  .line-matching::before,
  .line-matching::after {
    display: none;
  }

  .line-matching__inner {
    flex-direction: column;
    width: 100%;
    min-height: auto;
    padding: 46px 0 54px;
    gap: 20px;
  }

  .line-matching::before {
    top: 4%;
    right: -7%;
    width: 116px;
  }

  .line-matching::after {
    bottom: 33%;
    left: 4%;
    width: 58px;
  }

  .line-matching__media {
    order: 2;
    flex: 0 1 auto;
    width: 100%;
    justify-content: center;
  }

  .line-matching__app-preview {
    width: 100%;
    aspect-ratio: 570 / 500;
  }

  .line-matching__phone--profile {
    top: 20%;
    bottom: auto;
    left: 6%;
    width: 43%;
  }

  .line-matching__phone--chat {
    position: absolute;
    top: 5%;
    right: 6%;
    display: block;
    margin-left: 0;
    width: 43%;
  }

  .line-matching__bubble {
    right: 22.5%;
    bottom: -4.5%;
    width: 40%;
  }

  .line-matching__content {
    order: 1;
    flex: 0 1 auto;
    text-align: center;
  }

  .line-matching__eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.48em;
  }

  .line-matching__title {
    margin-bottom: 12px;
    font-size: 36px;
    white-space: nowrap;
  }

  .line-matching__text {
    margin-bottom: 18px;
    font-size: 15px;
    line-height: 1.65;
  }

  .line-matching__lead {
    margin-bottom: 20px;
  }

  .line-matching__body {
    font-size: 14px;
  }

  .line-matching__button {
    width: 230px;
    min-height: 42px;
    padding: 0 22px;
    background: linear-gradient(90deg, #49d17d 0%, #a5ce63 100%);
    font-size: 18px;
  }

  .line-matching__button span {
    width: 10px;
    height: 10px;
    margin-left: 12px;
    border-width: 3px;
  }

  .dating-service__inner {
    width: min(100% - 54px, 760px);
    padding: 42px 0 28px;
  }

  .dating-service__eyebrow {
    margin-bottom: 4px;
    font-size: clamp(11px, 2.6vw, 13px);
    letter-spacing: 0.42em;
  }

  .dating-service__title {
    margin-bottom: 8px;
    font-size: 36px;
  }

  .dating-service__tagline {
    width: auto;
    min-height: auto;
    padding: 6px 12px;
    font-size: clamp(13px, 3.2vw, 16px);
  }

  .dating-service__features {
    width: min(100%, 1024px);
    margin-top: 46px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .dating-service__feature {
    display: grid;
    align-items: start;
    grid-template-columns: clamp(88px, 21vw, 110px) 1fr;
    gap: clamp(18px, 4vw, 24px);
    column-gap: clamp(18px, 4vw, 24px);
    row-gap: 0;
    text-align: left;
  }

  .dating-service__feature-heading {
    grid-column: 1;
    grid-row: 1;
    width: 100%;
    max-width: 110px;
    height: clamp(92px, 22vw, 110px);
    margin: 0;
  }

  .dating-service__feature-copy {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
  }

  .dating-service__feature-title {
    min-height: 0;
    margin-bottom: 0;
    font-size: clamp(22px, 5.2vw, 26px);
    line-height: 1.08;
    justify-content: flex-start;
  }

  .dating-service__feature-title br {
    display: none;
  }

  .dating-service__feature p {
    margin-top: 3px;
    font-size: clamp(14px, 3.4vw, 16px);
    line-height: 1.45;
    text-align: left;
  }

  .dating-service__slogan {
    width: min(100%, 420px);
    margin-top: 48px;
  }

  .dating-service__button {
    width: min(100%, 424px);
    margin-top: 24px;
  }

  .dating-service__button img {
    width: 100%;
  }

  .dating-service__terms {
    margin-top: 22px;
    font-size: clamp(14px, 3.3vw, 16px);
    letter-spacing: 0;
  }

  .future-love-marquee {
    margin-top: 10px;
    --future-love-marquee-gap: 60px;
    --future-love-marquee-shift: 8px;
  }

  .future-love-marquee__track {
    opacity: 0.44;
  }

  .future-love-marquee__track {
    animation-duration: 20s;
  }

  .future-love-marquee__group img {
    width: 500px;
  }

  .faq-section__inner {
    width: min(100% - 40px, 760px);
    padding: 44px 0 45px;
  }

  .faq-section__title {
    margin-bottom: 22px;
    font-size: 36px;
  }

  .faq-list {
    gap: 12px;
  }

  .faq-item {
    border-radius: 20px;
  }

  .faq-item__question {
    position: relative;
    min-height: 70px;
    padding: 18px 20px 18px 48px;
    grid-template-columns: 1fr auto;
    gap: 2px;
    font-size: 18px;
  }

  .faq-item__number {
    position: absolute;
    top: 18px;
    left: 18px;
    line-height: 1.28;
  }

  .faq-item__text {
    grid-column: 1;
    min-width: 0;
  }

  .faq-item__icon {
    grid-column: 2;
    align-self: center;
    width: 14px;
    height: 14px;
    margin-left: 12px;
  }

  .faq-item__icon::before,
  .faq-item__icon::after {
    width: 14px;
    height: 3px;
  }

  .faq-item__answer {
    padding: 0 44px 20px 48px;
  }

  .faq-item__answer p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* V2 修改開始：手機版 Before / After「查看更多」沿用常見問題按鈕尺寸 */
  .faq-section__more,
  .before-after__more {
    min-width: 150px;
    min-height: 44px;
    margin-top: 28px;
    font-size: 18px;
  }
  /* V2 修改結束：手機版 Before / After「查看更多」沿用常見問題按鈕尺寸 */

  .love-stories {
    background-image: url("../images/index_v3/bg_block5_m.jpg");
    background-size: 100% auto;
  }

  .love-stories__inner {
    flex-direction: column;
    align-items: stretch;
    width: min(100% - 40px, 760px);
    padding: 0 0 38px;
    gap: 18px;
  }

  .love-stories__content {
    flex: 0 0 auto;
    text-align: center;
  }

  .love-stories__eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
    letter-spacing: 0.52em;
  }

  .love-stories__title {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 6px;
    font-size: 36px;
    line-height: 1.15;
    white-space: nowrap;
  }

  .love-stories__title span + span {
    margin-left: 0.22em;
  }

  .love-stories__text {
    font-size: clamp(13px, 3.2vw, 15px);
    line-height: 1.6;
    font-weight: 300;
  }

  .love-stories__button {
    min-width: min(100%, 202px);
    min-height: 44px;
    margin-top: 16px;
    padding: 10px 28px;
    font-size: 18px;
  }

  .love-stories__button span {
    width: 0;
    height: 0;
    margin-left: 0;
    border-width: 0;
  }

  .love-stories__slider-area {
    flex: 0 0 auto;
    width: 100%;
    overflow: hidden;
  }

  .love-stories-slider {
    overflow: hidden;
    padding: 6px 2px 12px;
  }

  .love-stories-slider:not(.swiper-initialized) .swiper-wrapper {
    gap: 14px;
  }

  .love-stories-slider:not(.swiper-initialized) .swiper-slide {
    flex-basis: 100%;
  }

  .love-stories .swiper-pagination-bullet {
    width: 18px;
    height: 18px;
    margin: 0!important;
  }

  .love-story-card {
    border-radius: 15px;
    box-shadow: 0 1px 3px rgba(32, 33, 42, 0.16);
  }

  .love-story-card__media {
    aspect-ratio: 190 / 130;
  }

  .love-story-card__body {
    min-height: 95px;
    padding: 9px;
  }

  .love-story-card__header {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    justify-content: space-between;
    gap: 6px;
    padding-top: 5px;
    margin-bottom: 12px;
  }

  .love-story-card h3 {
    margin-bottom: 0;
    font-size: clamp(15px, 3.4vw, 18px);
  }

  .love-story-card time {
    margin-left: auto;
    font-size: clamp(8px, 2vw, 10px);
  }

  .love-story-card p {
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(10px, 4vw, 14px);
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  .love-story-card__media span {
    right: 6px;
    bottom: 6px;
    min-height: 24px;
    padding: 5px 9px;
    font-size: clamp(9px, 2.3vw, 11px);
  }

  .love-stories__video {
    width: min(100% - 40px, 760px);
    margin-bottom: 48px;
    border-radius: 8px;
  }

  .single-plan {
    background: url(../images/index_v3/bg_block6_m.jpg);
    min-height: 0;
    background-position: center top;
    background-size: cover;
  }

  .single-plan__decor--star {
    top: clamp(26px, 7vw, 44px);
    right: clamp(-24px, -4vw, -12px);
    width: clamp(120px, 38vw, 180px);
  }

  .single-plan__inner {
    width: 100%;
    padding: 44px 0 72px;
  }

  .single-plan__header {
    width: min(100% - 48px, 480px);
    margin: 0 auto 36px;
  }

  .single-plan__title {
    margin-bottom: 8px;
    font-size: 36px;
  }

  .single-plan__subtitle {
    font-size: 15px;
    line-height: 1.65;
  }

  .single-plan__subtitle br {
    display: none;
  }

  .single-plan-slider {
    width: 100%;
    margin: 0;
    padding-top: 26px;
    padding-bottom: 36px;
  }

  .single-plan-slider.is-visible .single-plan-slider__pagination {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .single-plan__list {
    display: flex;
    justify-content: flex-start;
    gap: 0;
  }

  .single-plan-slider__pagination {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: clamp(248px, 55vw, 258px)!important;
    margin: 14px auto 0;
  }

  .single-plan-slider__pagination .swiper-pagination-bullet {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    max-width: 90%;
    height: 6px;
    margin: 0!important;
    border-radius: 0;
    background: #9d9d9d;
    opacity: 0.82;
    transform: none;
  }

  .single-plan-slider__pagination .swiper-pagination-bullet-active {
    width: auto;
    min-width: 0;
    max-width: none;
    background: #ff808e;
    opacity: 1;
    transform: none;
  }

  .single-plan-card {
    flex: 0 0 clamp(248px, 55vw, 258px);
    width: clamp(248px, 55vw, 258px);
    height: auto;
    aspect-ratio: 382 / 528;
    margin: 0;
    padding: clamp(46px, 12vw, 54px) clamp(18px, 5vw, 22px) clamp(20px, 6vw, 26px);
    transition: transform 0.28s ease;
    transform-origin: center;
  }

  .single-plan-slider .swiper-slide {
    opacity: 1;
    transform: none;
  }

  .single-plan-slider .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.82);
  }

  .single-plan-slider .swiper-slide-active {
    transform: scale(1);
  }

  .single-plan-card__step {
    top: clamp(-36px, -7vw, -28px);
    left: clamp(11px, -0.5vw, 2px);
    width: clamp(72px, 18vw, 72px);
  }

  .single-plan-card__visual {
    width: clamp(112px, 28vw, 132px);
    height: clamp(112px, 28vw, 132px);
    margin-bottom: clamp(14px, 3.2vw, 17px);
  }

  .single-plan-card__heading {
    margin-bottom: clamp(27px, 6.5vw, 32px);
    font-size: clamp(22px, 5.7vw, 26px);
  }

  .single-plan-card__heading::after {
    bottom: -17px;
    width: 72px;
    height: 5px;
  }

  .single-plan-card p {
    width: min(100%, 218px);
    font-size: clamp(12px, 3.1vw, 14px);
    line-height: 1.7;
  }

  /* V2 新增開始：90天脫單計畫 Before / After 成果輪播（手機版） */
  .before-after__inner {
    width: min(100% - 48px, 620px);
    padding: 46px 0 34px;
  }

  .before-after__handword {
    margin-bottom: 20px;
  }

  .before-after__pair {
    gap: 12px;
    padding: 0;
  }

  .before-after-card {
    width: calc((100% - 12px) / 2);
    padding: 6px 6px 0;
    box-shadow: none;
  }

  .before-after-card__footer {
    min-height: 48px;
    grid-template-columns: minmax(0, 1fr) 34px;
    padding: 0 5px;
  }

  .before-after-card__footer p {
    font-size: clamp(15px, 4.8vw, 20px);
  }

  .before-after-card__heart {
    width: 34px;
    height: 34px;
  }

  .before-after-card__heart img {
    width: 20px;
    height: auto;
  }

  .before-after-slider__button {
    display: none;
  }

  .before-after-slider__pagination {
    position: relative;
    inset: auto;
    display: flex;
    width: 100%!important;
    height: 13px;
    margin: 24px auto 0;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: visible;
    transform: none!important;
  }

  .before-after-slider__pagination .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    margin: 0!important;
    flex: 0 0 13px;
    background: #aaa;
    opacity: 1;
    transform: scale(1)!important;
  }

  .before-after-slider__pagination .swiper-pagination-bullet-active {
    background: #fb7d83;
  }

  .before-after__more {
    margin-top: 22px;
  }
  /* V2 新增結束：90天脫單計畫 Before / After 成果輪播（手機版） */

  .about-us {
    background-position: center top;
    background-size: cover;
  }

  .about-us__inner {
    flex-direction: column;
    width: min(100% - 52px, 760px);
    min-height: 0;
    gap: 36px;
    padding: 48px 0 58px;
  }

  .about-us__content {
    flex: none;
    width: 100%;
  }

  .about-us__eyebrow {
    margin-bottom: 8px;
    font-size: clamp(11px, 2.8vw, 13px);
    letter-spacing: 0.34em;
  }

  .about-us__title {
    margin-bottom: 8px;
    font-size: 36px;
  }

  .about-us__lead {
    margin-bottom: 20px;
    font-size: clamp(14px, 3.6vw, 17px);
    line-height: 1.6;
  }

  .about-us__text {
    gap: 18px;
    font-size: clamp(14px, 3.6vw, 16px);
    line-height: 1.45;
  }

  .about-us__text br {
    display: none;
  }

  .about-us__media {
    flex: none;
    width: min(100%, 430px);
    aspect-ratio: 760 / 610;
    min-height: 0;
    margin: 0 auto;
  }

  .about-us__photo {
    width: 87%;
  }

  .impact-stats {
    padding: 26px 0 28px;
    background-image: url("../images/index_v3/bg_block8_m.jpg");
    background-position: center center;
  }

  .impact-stats__inner {
    flex-wrap: wrap;
    width: min(100% - 64px, 390px);
    min-height: 0;
    gap: 28px 22px;
    padding: 18px 30px 24px;
    border-radius: 28px;
  }

  .impact-stat {
    flex: 0 0 calc(50% - 11px);
  }

  .impact-stat__icon {
    width: 65%;
    height: auto;
    margin-bottom: 10px;
  }

  .impact-stat__label {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .impact-stat__number {
    font-size: clamp(27px, 7vw, 32px);
    letter-spacing: 0.02em;
  }

  .charity-feedback {
    padding: 40px 0 38px;
    background-image: url("../images/index_v3/bg_block7_m.jpg");
    background-position: center top;
  }

  .charity-feedback__header {
    width: min(100% - 48px, 430px);
    margin-bottom: 24px;
  }

  .charity-feedback__title {
    margin-bottom: 14px;
    font-size: 36px;
    line-height: 1.16;
  }

  .charity-feedback__text {
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.45;
    text-align: left;
  }

  .charity-feedback__text br {
    display: none;
  }

  .charity-slider {
    width: 100%;
    padding-bottom: 44px;
  }

  .charity-slide {
    width: min(52vw, 250px);
    border-radius: 16px;
  }

  .charity-slider__button {
    display: none;
  }

  .charity-slider__pagination {
    position: absolute;
    bottom: 0!important;
    left: 0!important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
  }

  .charity-slider__pagination .swiper-pagination-bullet {
    width: 17px;
    height: 17px;
    padding: 0;
    margin: 0!important;
    border: 0;
    border-radius: 50%;
    background: #9d9d9d;
    cursor: pointer;
    opacity: 0.82;
  }

  .charity-slider__pagination .swiper-pagination-bullet-active {
    background: #ff808e;
    opacity: 1;
  }

  .love-insights {
    padding: 50px 0 46px;
    background-image: url("../images/index_v3/bg_block9_m.jpg");
    background-position: center top;
  }

  .love-insights__inner {
    width: 100%;
  }

  .love-insights__header {
    display: block;
    width: 100%;
    margin: 0 auto 16px;
    padding-left: 28px;
  }

  .love-insights__eyebrow {
    margin-bottom: 6px;
    font-size: clamp(14px, 3.8vw, 18px);
    letter-spacing: 0.42em;
  }

  .love-insights__title {
    font-size: clamp(31px, 7.4vw, 36px);
    line-height: 1.1;
  }

  .love-insights__more--desktop {
    display: none;
  }

  .love-insights__more--mobile {
    display: flex;
    width: max-content;
    min-width: 136px;
    min-height: 52px;
    margin: 24px auto 0;
    font-size: clamp(16px, 4.2vw, 18px);
  }

  .love-insights-slider {
    overflow: hidden;
    width: calc(100% - 56px);
    margin: 0 auto;
    padding-left: 0;
    padding-bottom: 40px;
    box-sizing: border-box;
  }

  .love-insights-slider .swiper-wrapper {
    gap: 0;
  }

  .love-insight-card {
    flex: 0 0 100%;
    width: 100%;
  }

  .love-insight-card__body {
    min-height: 100px;
    padding: 8px 8px 12px;
  }

  .love-insight-card time {
    margin-bottom: 3px;
    font-size: clamp(10px, 2.5vw, 13px);
  }

  .love-insight-card h3 {
    font-size: clamp(10px, 4vw, 16px);
    line-height: 1.32;
  }

  .love-insight-card a {
    box-sizing: border-box;
    width: min(100%, 124px);
    min-width: 0;
    min-height: 30px;
    gap: 6px;
    margin-top: 10px;
    padding: 0 10px;
    border-width: 2px;
    font-size: clamp(12px, 3vw, 15px);
  }

  .love-insight-card a::after {
    width: 12px;
    height: 10px;
  }

  .love-insights-slider__pagination {
    position: static;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: min(70%, 338px)!important;
    margin: 0 auto;
    transform: none;
  }

  .love-insights-slider__pagination .swiper-pagination-bullet {
    flex: 1 1 0;
    max-width: 78px;
    height: 6px;
    padding: 0;
    margin: 0!important;
    border: 0;
    border-radius: 0;
    background: #a8a8a8;
    cursor: pointer;
    opacity: 0.8;
  }

  .love-insights-slider__pagination .swiper-pagination-bullet-active {
    background: #ff7c8f;
    opacity: 1;
  }

  .party {
    display: flex;
    flex-direction: column;
    padding: 110px 0 30px;
    background-image: url("../images/index_v3/bg_block3_m.jpg");
  }

  .party__header {
    display: contents;
    width: min(100% - 40px, 760px);
  }

  .party__header > div {
    order: 1;
    width: min(100% - 48px, 430px);
    margin: 0 auto 18px;
    text-align: center;
  }

  .party__more {
    order: 4;
    min-width: 148px;
    min-height: 46px;
    margin: 22px auto 0;
    font-size: 18px;
  }

  .party-slider {
    order: 2;
    overflow: hidden;
    width: min(100% - 40px, 760px);
    box-sizing: border-box;
    padding: 0 8px 18px;
  }

  .party .section-title {
    text-align: center;
    font-size: clamp(30px, 8vw, 38px);
  }

  .party__subtitle {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.55;
  }

  .party-slider__pagination {
    position: static;
    order: 3;
    display: flex;
    justify-content: center;
    gap: 10px;
    width: min(90%, 338px)!important;
    margin: 22px auto 0;
    transform: none;
  }

  .party-slider__pagination .swiper-pagination-bullet {
    flex: 1 1 0;
    max-width: 78px;
    height: 7px;
    padding: 0;
    margin: 0!important;
    border: 0;
    border-radius: 0;
    background: #a8a8a8;
    cursor: pointer;
    opacity: 0.8;
  }

  .party-slider__pagination .swiper-pagination-bullet-active {
    background: #ff7c8f;
    opacity: 1;
  }

  .party-card {
    box-shadow: 0 1px 3px rgba(32, 33, 42, 0.16);
  }

  .party-card__body {
    padding: 10px 15px 14px;
  }

  .party-card__meta {
    gap: 8px;
    margin-bottom: 5px;
  }

  .party-card__meta span {
    min-width: 54px;
    min-height: 18px;
    padding: 3px 8px;
    font-size: 10px;
  }

  .party-card__meta time {
    font-size: 10px;
  }

  .party-card h3 {
    margin-bottom: 12px;
    font-size: 19px;
  }

  .party-card__body a {
    width: min(100%, 112px);
    min-height: 27px;
    font-size: 12px;
  }

  .floating-actions {
    right: 12px;
    bottom: 10px;
    gap: 10px;
  }

  .go-top,
  .floating-actions__link {
    width: 48px;
    height: 48px;
  }
}



@media (max-width: 500px) {
  :root {
    --site-header-height: 76px;
  }

  .site-header__inner {
    min-height: 76px;
    padding: 0 16px;
    gap: 10px;
  }

  .site-header__actions .site-header__button {
    width: 86px;
    min-width: 0;
    min-height: 46px;
    padding: 0;
    font-size: 20px;
  }

  .site-header__menu {
    right: 16px;
    width: 46px;
    height: 46px;
    flex-basis: 46px;
  }

  .site-header__actions {
    right: 72px;
  }

  .line-matching__inner {
    padding-bottom: 0;
  }

  .line-matching {
    background-size: cover;
    background-position-y: -20px;
  }

  .line-matching__lead, .line-matching__body {
    font-size: 12px;
  }
}
