/* 首頁樣式 */
    :root {
      --blue: #84b3c5;
      --blue-dark: #365d66;
      --teal: #9ccbd0;
      --ink: #21383c;
      --muted: #61747a;
      --line: #d9e9ec;
      --soft: #eef7f8;
      --white: #ffffff;
      --gold: #d7a83a;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      line-height: 1.75;
      background: #ffffff;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(1120px, calc(100% - 40px));
      margin: 0 auto;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 800;
      white-space: nowrap;
    }

    .button.primary {
      color: #fff;
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      box-shadow: none;
    }

    .button.secondary {
      color: var(--blue-dark);
      border-color: rgba(132, 179, 197, .46);
      background: rgba(255, 255, 255, .76);
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, .92) 35%, rgba(255, 255, 255, .48) 60%, rgba(255, 255, 255, .06) 100%),
        url("/assets/banner.jpg") center right / cover no-repeat;
    }

    .hero .container {
      display: flex;
      align-items: center;
      min-height: 650px;
      padding: 0px 0;
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--gold);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 30px;
      color: #1f3540;
      font-size: clamp(42px, 5.8vw, 60px);
      line-height: 1.16;
      letter-spacing: 0;
    }

    .hero-content {
      width: min(650px, 100%);
    }

    .hero-copy {
      max-width: 560px;
      color: #52656f;
      font-size: 20px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 34px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 82px;
      max-width: 760px;
    }

    .hero-point {
      display: flex;
      gap: 12px;
      align-items: center;
      color: #31444c;
      font-size: 17px;
      font-weight: 800;
      line-height: 1.5;
    }

    .hero-point span {
      display: grid;
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      place-items: center;
      border: 2px solid var(--blue);
      border-radius: 50%;
      color: var(--blue);
      font-size: 18px;
    }

    section {
      padding: 92px 0;
    }

    .section-head {
      max-width: 720px;
      margin: 0 auto 46px;
      text-align: center;
    }

    .section-head h2 {
      margin-bottom: 14px;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.25;
      letter-spacing: 0;
    }

    .section-head p {
      color: var(--muted);
      font-size: 18px;
    }

    .guarantees {
      background: #ffffff;
    }

    .about-story {
      background: linear-gradient(180deg, #ffffff 0%, #f1f7f9 100%);
    }

    #rules {
      background: linear-gradient(180deg, #f4fafb 0%, #ffffff 100%);
    }

    .story-layout {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 54px;
      align-items: center;
      margin-bottom: 0;
    }

    .story-copy h2 {
      margin-bottom: 22px;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.25;
    }

    .story-copy p {
      color: #43545c;
      font-size: 18px;
      line-height: 2;
    }

    .story-copy p + p {
      margin-top: 18px;
    }

    .story-photo {
      overflow: hidden;
      border-radius: 8px;
      box-shadow: 0 20px 60px rgba(25, 92, 121, .12);
    }

    .story-photo img {
      display: block;
      width: 100%;
      height: 560px;
      object-fit: cover;
    }

    .care-flow {
      margin-top: 38px;
      margin-bottom: 60px;
      padding: 0;
      border: 0;
      border-radius: 8px;
      background: transparent;
      box-shadow: none;
    }

    .care-flow-title {
      margin: 0 0 18px;
      color: var(--blue-dark);
      font-size: 24px;
      font-weight: 900;
      text-align: center;
    }

    .care-flow-list {
      display: grid;
      grid-template-columns: repeat(7, minmax(0, 1fr));
      gap: 20px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .care-flow-list li {
      position: relative;
      display: grid;
      min-height: 92px;
      place-items: center;
      padding: 20px 10px 18px;
      border: none;
      border-radius: 40px;
      color: var(--blue-dark);
      background: #ffffff;
      box-shadow: 0 16px 38px rgba(26, 88, 114, .10);
      font-size: 16px;
      font-weight: 900;
      line-height: 1.45;
      text-align: center;
    }

    .care-flow-list .material-symbols-outlined {
      display: block;
      margin-bottom: 10px;
      color: var(--blue);
      font-size: 50px;
      line-height: 1;
      font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 32;
    }

    .care-flow-list li:not(:last-child)::after {
      content: "→";
      position: absolute;
      top: 50%;
      right: -31px;
      z-index: 10;
      transform: translateY(-50%);
      color: var(--blue);
      font-size: 45px;
      font-weight: 900;
      line-height: 1;
    }

    @media (max-width: 1090px) {
      .care-flow-list {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .care-flow-list li:not(:last-child)::after {
        content: "↓";
        right: auto;
        top: auto;
        bottom: -28px;
        left: 50%;
        width: auto;
        height: auto;
        transform: translateX(-50%);
        color: var(--blue);
        background: transparent;
        font-size: 34px;
        font-weight: 900;
        line-height: 1;
      }
    }

    .definition-panel {
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 16px 44px rgba(26, 88, 114, .08);
    }

    .definition-panel h3 {
      display: inline-flex;
      margin-bottom: 18px;
      padding: 8px 18px;
      border-radius: 999px;
      color: #fff;
      background: var(--blue);
      font-size: 24px;
    }

    .definition-panel p {
      color: #43545c;
      font-size: 17px;
      line-height: 2;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    .feature {
      min-height: 264px;
      padding: 34px 30px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #ffffff;
    }

    .feature-icon {
      display: grid;
      width: 58px;
      height: 58px;
      margin-bottom: 24px;
      place-items: center;
      border-radius: 16px;
      color: var(--blue-dark);
      background: var(--soft);
      font-size: 30px;
      font-weight: 900;
    }

    .feature h3 {
      margin-bottom: 12px;
      font-size: 23px;
    }

    .feature p {
      margin-bottom: 0;
      color: var(--muted);
    }

    .services {
      background: linear-gradient(180deg, #f4fafb 0%, #ffffff 100%);
    }

    .fee {
      background: #ffffff;
    }

    .fee-card {
      padding: 46px 56px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 20px 60px rgba(25, 92, 121, .10);
    }

    .fee-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 52px;
      align-items: start;
    }

    .fee-card h3 {
      margin-bottom: 14px;
      color: var(--blue);
      font-size: 20px;
    }

    .fee-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .fee-list li {
      position: relative;
      padding-left: 30px;
      color: #43545c;
      font-size: 18px;
      line-height: 1.85;
    }

    .fee-list li + li {
      margin-top: 14px;
    }

    .fee-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #ffdc69;
    }

    .fee-list strong,
    .fee-highlight {
      color: #ff4545;
      font-weight: 900;
    }

    .fee-cta {
      margin-top: 34px;
      text-align: center;
    }

    .fee-cta a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 26px;
      border-radius: 8px;
      color: #fff;
      background: #ff4b4b;
      font-size: 18px;
      font-weight: 900;
    }

    .service-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
      padding: 0;
      margin: 0;
      list-style: none;
    }

    .service-list li {
      position: relative;
      min-height: 74px;
      padding: 20px 22px 20px 54px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      color: #354850;
      font-weight: 700;
    }

    .service-list li::before {
      content: "";
      position: absolute;
      left: 22px;
      top: 28px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--blue);
      box-shadow: 0 0 0 6px rgba(132, 179, 197, .16);
    }

    .faq-list {
      display: grid;
      gap: 16px;
      max-width: 920px;
      margin: 0 auto;
    }

    .faq-item {
      position: relative;
      padding: 24px 26px 32px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 12px 34px rgba(26, 88, 114, .06);
      cursor: pointer;
    }

    .faq-question {
      display: block;
      width: 100%;
      padding: 0;
      border: 0;
      background: transparent;
      text-align: left;
      cursor: pointer;
    }

    .faq-number {
      display: inline-block;
      margin-bottom: 8px;
      color: var(--blue);
      font-size: 14px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .faq-title {
      display: block;
      color: var(--blue-dark);
      font-size: 21px;
      font-weight: 900;
      line-height: 1.45;
    }

    .faq-answer {
      position: relative;
      max-height: 7.6em;
      margin-top: 12px;
      overflow: hidden;
      color: var(--muted);
      line-height: 1.9;
      transition: max-height .32s ease;
    }

    .faq-answer::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 86px;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .88) 56%, #ffffff 100%);
      opacity: 1;
      transition: opacity .24s ease;
    }

    .faq-item.is-open .faq-answer {
      max-height: 2400px;
    }

    .faq-item.is-open .faq-answer::after {
      opacity: 0;
    }

    .faq-answer p {
      margin: 0 0 10px;
    }

    .faq-answer p:last-child {
      margin-bottom: 0;
    }

    .faq-answer ol {
      margin: 0;
      padding-left: 1.85em;
      list-style-position: outside;
    }

    .faq-answer li {
      margin-bottom: 8px;
      padding-left: 0.15em;
    }

    .faq-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      left: 50%;
      bottom: 18px;
      transform: translateX(-50%);
      min-height: 32px;
      padding: 0 20px;
      border-radius: 999px;
      background: #edf7fa;
      color: var(--blue-dark);
      font-size: 13px;
      font-weight: 900;
      box-shadow: 0 10px 24px rgba(26, 88, 114, .08);
      z-index: 2;
    }

    .faq-item.is-open {
      cursor: default;
    }

    .faq-item.is-open .faq-toggle {
      display: none;
    }

    .rule-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .rule-grid li {
      min-height: 160px;
      padding: 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
      color: #43545c;
      font-weight: 700;
    }

    .rule-grid strong {
      display: block;
      margin-bottom: 8px;
      color: var(--blue-dark);
      font-size: 18px;
    }

    .rules-manual {
      margin: 34px 0 0;
      padding: 30px;
      overflow: hidden;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 18px 42px rgba(38, 61, 70, .08);
    }

    .rules-manual img {
      display: block;
      width: 100%;
      height: auto;
    }

    .record-gallery {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .record-gallery-button {
      display: block;
      padding: 0;
      border: 0;
      border-radius: 8px;
      overflow: hidden;
      background: #fff;
      box-shadow: 0 18px 42px rgba(38, 61, 70, .08);
      cursor: zoom-in;
      transition: transform .28s ease, box-shadow .28s ease;
    }

    .record-gallery-button img {
      aspect-ratio: 5 / 6;
      object-fit: contain;
      object-position: center;
      transition: transform .28s ease;
    }

    .record-gallery-button span {
      display: block;
      padding: 14px 10px 16px;
      color: var(--blue-dark);
      font-size: 16px;
      font-weight: 900;
      text-align: center;
      letter-spacing: .02em;
    }

    .record-gallery-button:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 24px 52px rgba(38, 61, 70, .12);
    }

    .record-gallery-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 34px;
      background: rgba(14, 26, 30, .86);
      z-index: 1200;
    }

    .record-gallery-modal.is-open {
      display: flex;
    }

    .record-gallery-panel {
      position: relative;
      width: min(1120px, 100%);
      height: min(82vh, 820px);
    }

    .record-gallery-swiper,
    .record-gallery-swiper .swiper-wrapper,
    .record-gallery-swiper .swiper-slide {
      width: 100%;
      height: 100%;
    }

    .record-gallery-swiper .swiper-slide {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .record-gallery-swiper img {
      display: block;
      max-width: 100%;
      max-height: 100%;
      width: auto;
      height: auto;
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
    }

    .record-gallery-close {
      position: absolute;
      right: -14px;
      top: -14px;
      width: 44px;
      height: 44px;
      border: 0;
      border-radius: 50%;
      background: #ffffff;
      color: var(--blue-dark);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      z-index: 4;
    }

    .record-gallery-nav {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      color: #fff;
      background: rgba(255, 255, 255, .18);
      backdrop-filter: blur(8px);
    }

    .record-gallery-nav::after {
      font-size: 20px;
      font-weight: 900;
    }

    .cases {
      color: #fff;
      background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
    }

    .cases .section-head p,
    .cases .eyebrow {
      color: rgba(255, 255, 255, .86);
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .case-grid li {
      padding: 18px 20px;
      border: 1px solid rgba(255, 255, 255, .24);
      border-radius: 8px;
      background: rgba(255, 255, 255, .12);
      font-weight: 800;
    }

    .review-preview {
      position: relative;
      background: linear-gradient(180deg, #ffffff 0%, #f4fafb 100%);
    }

    .home-review-frame {
      position: relative;
      max-height: 660px;
      overflow: hidden;
    }

    .home-review-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      align-items: start;
    }

    .home-review-column {
      display: grid;
      align-content: start;
      gap: 18px;
      min-width: 0;
    }

    .home-review-card {
      display: block;
      width: 100%;
      margin: 0;
      border-radius: 8px;
      overflow: hidden;
      background: transparent;
      box-shadow: 0 18px 44px rgba(18, 57, 84, .10);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .home-review-slideshow {
      position: relative;
      overflow: hidden;
      background: #dcebfa;
    }

    .home-review-card img {
      display: block;
      width: 100%;
      height: auto;
      background: #dcebfa;
      transition: transform .35s ease, opacity .65s ease;
    }

    .home-review-slideshow img {
      transition: transform .35s ease, opacity .65s ease;
    }

    @media (hover: hover) and (pointer: fine) {
      .home-review-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 54px rgba(18, 57, 84, .16);
      }

      .home-review-card:hover .home-review-slideshow img.is-active {
        transform: scale(1.035);
      }
    }

    .home-review-slideshow img:not(:first-child) {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
    }

    .home-review-slideshow img:first-child {
      opacity: 1;
    }

    .home-review-slideshow img.is-active {
      opacity: 1;
    }

    .home-review-slideshow img:first-child:not(.is-active) {
      opacity: 0;
    }

    .home-review-card-count {
      position: absolute;
      left: 10px;
      bottom: 10px;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 3px 9px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      color: #315662;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.3px;
      box-shadow: 0 8px 22px rgba(18, 57, 84, .12);
    }

    .home-review-card-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      padding: 12px 14px 14px;
      background: #ffffff;
      border-bottom: 1px solid #ececec;
    }

    .home-review-card-title {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 3px 9px;
      border-radius: 999px;
      background: #5394ad;
      color: #ffffff;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.3px;
    }

    .home-review-card-text {
      display: -webkit-box;
      margin: 0;
      overflow: hidden;
      color: #1f3540;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.65;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }

    .home-review-fade {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 3;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      min-height: 265px;
      padding-bottom: 18px;
      background: linear-gradient(180deg, rgba(244, 250, 251, 0) 0%, rgb(246 251 252) 72%, #f5fafb 100%);
      pointer-events: none;
    }

    .home-review-fade .button {
      pointer-events: auto;
    }

    .locations {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 76% 42%, rgba(156, 203, 208, .24) 0%, rgba(156, 203, 208, .12) 32%, rgba(255, 255, 255, 0) 62%),
        linear-gradient(180deg, #ffffff 0%, #f5fafb 100%);
    }

    .locations::after {
      content: "";
      position: absolute;
      right: -8%;
      bottom: -18%;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: rgba(132, 179, 197, .12);
      pointer-events: none;
    }

    .location-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 56px;
      align-items: center;
    }

    .location-copy .section-head {
      max-width: none;
      margin-right: 0;
      margin-left: 0;
      text-align: left;
    }

    .location-copy h2 {
      font-size: clamp(38px, 5vw, 64px);
      line-height: 1.2;
    }

    .map-panel {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 520px;
    }

    .map-panel::before {
      content: "";
      position: absolute;
      width: min(520px, 86vw);
      aspect-ratio: 1;
      border-radius: 50%;
      background: rgba(132, 179, 197, .18);
      filter: blur(.2px);
    }

    .taiwan-map {
      position: relative;
      display: block;
      width: min(430px, 82vw);
      height: auto;
      margin: 0 auto;
    }

    .location-list {
      display: grid;
      grid-template-columns: repeat(8, minmax(72px, 1fr));
      gap: 5px;
      margin: 34px 0 0;
      padding: 0;
      list-style: none;
    }

    .location-list li {
      padding: 9px 10px;
      border: 1px solid rgba(132, 179, 197, .30);
      border-radius: 999px;
      color: #43545c;
      background: rgba(255, 255, 255, .74);
      font-weight: 800;
      text-align: center;
      box-shadow: 0 10px 24px rgba(54, 93, 102, .05);
    }

    .location-list li.location-overseas {
      background-color: rgb(132 179 197 / 15%);
    }

    .location-note {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      margin-top: 36px;
      padding: 14px 22px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: #52676d;
      background: rgba(255, 255, 255, .84);
      box-shadow: 0 18px 48px rgba(54, 93, 102, .08);
      font-size: 18px;
      font-weight: 800;
    }

    .contact {
      padding-bottom: 72px;
      background: #ffffff;
    }

    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition:
        opacity .82s ease,
        transform .82s ease;
      will-change: opacity, transform;
    }

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

    .recruitment {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, #ffffff 0%, #eef7f8 100%);
    }

    .recruitment::after {
      content: "";
      position: absolute;
      right: -6%;
      bottom: -22%;
      width: 58%;
      height: 48%;
      border-radius: 60% 0 0 0;
      background: rgba(132, 179, 197, .18);
      pointer-events: none;
    }

    .recruit-layout {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 54px;
      align-items: center;
    }

    .recruit-photo {
      align-self: stretch;
      min-height: 520px;
      border-radius: 8px;
      overflow: hidden;
    }

    .recruit-photo img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
    }

    .recruit-copy h2 {
      margin-bottom: 22px;
      font-size: clamp(30px, 4vw, 44px);
      line-height: 1.25;
    }

    .recruit-copy h3 {
      margin: 26px 0 8px;
      color: var(--blue);
      font-size: 22px;
    }

    .recruit-copy ol,
    .recruit-copy ul {
      margin: 0;
      padding-left: 24px;
      color: #43545c;
      font-size: 18px;
    }

    .recruit-copy li + li {
      margin-top: 8px;
    }

    .recruit-message {
      margin: 28px 0 22px;
      color: var(--blue);
      font-size: 20px;
      font-weight: 800;
      line-height: 1.8;
    }

    .phone-button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 52px;
      padding: 0 24px;
      border-radius: 8px;
      color: #fff;
      background: var(--blue);
      font-size: 20px;
      font-weight: 900;
      box-shadow: 0 14px 32px rgba(54, 93, 102, .22);
    }

    .fee-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-top: 34px;
      color: #263238;
      font-size: 18px;
      font-weight: 900;
    }

    .fee-actions .button {
      min-width: 118px;
    }

    .fee-actions .line-button {
      color: #fff;
      background: #bde84b;
      border-color: #bde84b;
      box-shadow: 0 14px 32px rgba(141, 205, 31, .20);
    }

    .fee-reminder {
      margin: 22px 0 0;
      color: #263238;
      font-size: 18px;
      font-weight: 900;
      text-align: center;
    }

    .qr-panel {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: repeat(2, minmax(180px, 240px));
      justify-content: center;
      gap: 58px;
      margin-top: 56px;
      text-align: center;
    }

    .qr-card h3 {
      margin-bottom: 18px;
      font-size: 22px;
      letter-spacing: 1px;
    }

    .qr-card.wechat h3 {
      color: #f05a28;
    }

    .qr-card.line h3 {
      color: #15985a;
    }

    .qr-card img {
      width: 200px;
      max-width: 100%;
      border: 10px solid #fff;
      box-shadow: 0 14px 36px rgba(26, 88, 114, .12);
    }

    .info-band {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }

    .info-box {
      padding: 34px 30px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: #fff;
    }

    .info-box h3 {
      margin-bottom: 12px;
      color: var(--blue-dark);
      font-size: 24px;
    }

    .info-box p,
    .info-box li {
      color: var(--muted);
    }

    .info-box ul {
      margin: 16px 0 0;
      padding-left: 22px;
    }

    .contact-panel {
      display: flex;
      flex-direction: column;
      gap: 32px;
      padding: 46px;
      border-radius: 8px;
      background: var(--soft);
    }

    .contact-panel h2 {
      margin-bottom: 14px;
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.25;
    }

    .contact-panel p {
      color: var(--muted);
      font-size: 18px;
    }

    .contact-list {
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
      color: #43545c;
      font-weight: 700;
    }

    .contact-list li + li {
      margin-top: 10px;
    }

    .contact-list a {
      color: var(--blue-dark);
      font-weight: 900;
    }

    .contact-note {
      padding: 0;
      border-radius: 8px;
      background: transparent;
      box-shadow: none;
    }

    .contact-methods {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      align-items: stretch;
    }

    .contact-method {
      display: flex;
      min-height: 230px;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 16px;
      padding: 22px 18px;
      border: 1px solid var(--line);
      border-radius: 8px;
      color: var(--blue-dark);
      background: #ffffff;
      box-shadow: 0 18px 44px rgba(26, 88, 114, .10);
      cursor: pointer;
      font: inherit;
      text-align: center;
      transition:
        transform .22s ease,
        border-color .22s ease,
        box-shadow .22s ease;
    }

    .contact-method:hover {
      transform: translateY(-3px);
      border-color: rgba(132, 179, 197, .75);
      box-shadow: 0 22px 52px rgba(26, 88, 114, .14);
    }

    .contact-method-icon {
      display: block;
      width: min(160px, 100%);
      height: 150px;
      border-radius: 8px;
      object-fit: contain;
      object-position: center;
    }

    .contact-method-name {
      display: block;
      margin-top: 2px;
      color: var(--blue);
      font-size: 15px;
      font-weight: 900;
      letter-spacing: .12em;
    }

    .contact-method-label {
      display: block;
      word-break: break-word;
      color: var(--blue-dark);
      font-size: 20px;
      font-weight: 900;
      line-height: 1.35;
    }

    .float-actions {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 30;
      display: grid;
      gap: 10px;
    }

    .float-actions a {
      display: grid;
      width: 64px;
      height: 64px;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: #ef6b8a;
      box-shadow: 0 12px 30px rgba(239, 107, 138, .28);
      font-size: 14px;
      font-weight: 900;
      line-height: 1.2;
      text-align: center;
    }

    @media (max-width: 920px) {
      .hero .container {
        min-height: auto;
        padding: 0 20px;
      }

      .hero {
        background:
          linear-gradient(0deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .90) 38%, rgba(255, 255, 255, .34) 72%, rgba(255, 255, 255, .08) 100%),
          url("/assets/banner_m.jpg") center center / cover no-repeat;
      }

        .grid-3,
        .case-grid,
        .info-band,
        .rule-grid,
        .record-gallery,
        .recruit-layout,
        .story-layout,
        .location-layout,
        .fee-grid {
        grid-template-columns: 1fr;
      }

      .location-copy .section-head {
        text-align: center;
      }

      .story-layout {
        gap: 0;
      }

      .story-photo img {
        height: auto;
      }

      .location-layout {
        gap: 20px;
      }

      .location-list {
        grid-template-columns: repeat(4, minmax(76px, 1fr));
        gap: 8px 4px;
      }

      .location-list li {
        padding: 6px 6px;
        font-size: 14px;
      }

      .location-note {
        display: flex;
        width: fit-content;
        margin-right: auto;
        margin-left: auto;
      }

      .map-panel {
        min-height: 420px;
      }

      .map-panel::before {
        width: min(520px, 82vw);
      }

      .taiwan-map {
        width: min(430px, 72vw);
      }

      .locations::after {
        display: none;
      }

      .recruit-photo {
        min-height: 260px;
      }

      .contact-methods {
        grid-template-columns: 1fr;
      }

      .record-gallery-modal {
        padding: 18px;
      }

      .care-flow-list {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .care-flow-list li {
        width: 60%;
        margin: auto;
      }

      .care-flow-list li:not(:last-child)::after {
        content: "↓";
        right: auto;
        top: auto;
        bottom: -28px;
        left: 50%;
        width: auto;
        height: auto;
        transform: translateX(-50%);
        color: var(--blue);
        background: transparent;
        font-size: 34px;
        font-weight: 900;
        line-height: 1;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1120px);
      }

      h1 {
        font-size: 36px;
        margin-bottom: 138px;
      }

      .hero-copy {
        font-size: 18px;
      }

      .hero-actions,
      .button {
        width: 100%;
      }

      .hero-points {
        grid-template-columns: 1fr;
        margin-top: 42px;
      }

      section {
        padding: 64px 20px;
      }

      .service-list {
        grid-template-columns: 1fr;
      }

      .rule-grid {
        grid-template-columns: 1fr;
      }

      .home-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .home-review-frame {
        max-height: 1540px;
      }

      .location-list {
        grid-template-columns: repeat(5, minmax(55px, 1fr));
        gap: 5px 3px;
      }

      .location-note {
        width: 100%;
        align-items: flex-start;
        font-size: 16px;
      }

      .map-panel {
        min-height: auto;
      }

      .contact-panel {
        padding: 28px 20px;
      }

      .home-review-grid {
        grid-template-columns: 1fr;
      }

      .fee-card,
      .definition-panel {
        padding: 26px 20px;
      }

      .care-flow {
        padding: 24px 18px;
      }

      .care-flow-list {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .faq-answer ol {
        padding-left: 1.85em;
      }

      .faq-item.is-open .faq-answer {
        max-height: 3200px;
      }

      .faq-answer li {
        padding-left: 0.05em;
      }

      .fee-actions {
        gap: 10px;
        font-size: 16px;
      }

      .fee-actions .button {
        min-width: 0;
        width: auto;
        padding: 0 20px;
      }

      .qr-panel {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .float-actions {
        right: 14px;
        bottom: 14px;
      }

      .float-actions a {
        width: 56px;
        height: 56px;
        font-size: 13px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .reveal-on-scroll {
        opacity: 1;
        transform: none;
        transition: none;
      }
    }
