@charset "UTF-8";
/* ==========================================================================
   防詐宣導專區 anti-fraud-intro
   依「介面設計-電腦.pdf / 介面設計-手機.pdf」製作
   色值、字級、間距皆由視覺稿量測而來（電腦稿 1920 / 手機稿 375）
   Desktop first RWD，斷點：1200 / 1024 / 860 / 768 / 568
   ========================================================================== */
/* ----------------------------------------------------------------
   設計 token
---------------------------------------------------------------- */
/* ----------------------------------------------------------------
   基本
---------------------------------------------------------------- */
/* 平滑捲動由 jQuery animate() 處理，不用 CSS scroll-behavior 以免互相干擾 */
a {
  color: #2ba253;
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid #2ba253;
  outline-offset: 2px;
}

.red {
  color: #f76260;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
.container--narrow {
  max-width: 824px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 10px 16px;
  background: #2ba253;
  color: #ffffff;
}
.skip-link:focus {
  left: 12px;
  top: 12px;
}

/* ----------------------------------------------------------------
   進場動畫
---------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  -webkit-transform: translateY(24px);
          transform: translateY(24px);
  -webkit-transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.3, 1), transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: opacity 0.7s cubic-bezier(0.22, 0.8, 0.3, 1), transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-transform 0.7s cubic-bezier(0.22, 0.8, 0.3, 1);
  will-change: opacity, transform;
}
[data-reveal].is-inview {
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}
[data-reveal][data-reveal=fade] {
  -webkit-transform: none;
          transform: none;
}
[data-reveal][data-reveal=left] {
  -webkit-transform: translateX(-14px);
          transform: translateX(-14px);
}
[data-reveal][data-reveal=right] {
  -webkit-transform: translateX(14px);
          transform: translateX(14px);
}
[data-reveal][data-reveal=zoom] {
  -webkit-transform: scale(1);
          transform: scale(1);
}

[data-reveal-delay="1"] {
  -webkit-transition-delay: 0.08s;
          transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
  -webkit-transition-delay: 0.16s;
          transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
  -webkit-transition-delay: 0.24s;
          transition-delay: 0.24s;
}

[data-reveal-delay="4"] {
  -webkit-transition-delay: 0.32s;
          transition-delay: 0.32s;
}

[data-reveal-delay="5"] {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

[data-reveal-delay="6"] {
  -webkit-transition-delay: 0.48s;
          transition-delay: 0.48s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1 !important;
    -webkit-transform: none !important;
            transform: none !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/* ----------------------------------------------------------------
   麵包屑
---------------------------------------------------------------- */
.breadcrumb {
  background: #ffffff;
}
.breadcrumb ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 46px;
  padding: 12px 0;
  font-size: 13px;
  line-height: 1.5;
  color: #526157;
}
.breadcrumb li::after {
  content: "›";
  margin: 0 9px;
  color: #b7c0ba;
}
.breadcrumb li:last-child::after {
  display: none;
}
.breadcrumb a {
  color: #2ba253;
}
.breadcrumb a.on-touch, .breadcrumb a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .breadcrumb ol {
    min-height: 0;
    font-size: 12px;
  }
  .breadcrumb li::after {
    margin: 0 8px;
  }
}

/* ----------------------------------------------------------------
   共用元件：按鈕 / 標籤
---------------------------------------------------------------- */
.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  height: 54px;
  padding: 0 30px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.c-btn img {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-btn {
  /* LINE 綠實心 */
}
.c-btn--line {
  color: #ffffff;
  background: #06c755;
  -webkit-box-shadow: 0 8px 20px rgba(6, 199, 85, 0.25);
          box-shadow: 0 8px 20px rgba(6, 199, 85, 0.25);
}
.c-btn--line.on-touch, .c-btn--line:hover, .c-btn--line:focus {
  color: #ffffff;
  background: rgb(5.1043902439, 169.2956097561, 72.312195122);
}
.c-btn {
  /* 白底 */
}
.c-btn--ghost {
  padding: 0 40px;
  color: #0f2416;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 12px rgba(15, 36, 22, 0.04);
          box-shadow: 0 2px 12px rgba(15, 36, 22, 0.04);
}
.c-btn--ghost.on-touch, .c-btn--ghost:hover, .c-btn--ghost:focus {
  color: #2ba253;
  background: #ffffff;
}
.c-btn {
  /* 主色實心 */
}
.c-btn--solid {
  color: #ffffff;
  background: #2ba253;
}
.c-btn--solid.on-touch, .c-btn--solid:hover, .c-btn--solid:focus {
  color: #ffffff;
  background: rgb(35.5117073171, 133.7882926829, 68.5458536585);
}
.c-btn {
  /* 綠底上的白色膠囊 */
}
.c-btn--white {
  gap: 8px;
  padding: 0 26px;
  font-size: 15px;
  color: #00b900;
  background: #ffffff;
  white-space: nowrap;
}
.c-btn--white.on-touch, .c-btn--white:hover, .c-btn--white:focus {
  color: #1f7d40;
  background: #eafaf0;
}
@media (max-width: 768px) {
  .c-btn {
    width: 100%;
    height: 52px;
    padding: 0 18px;
    gap: 8px;
    font-size: 15px;
  }
}

/* 主視覺標籤 */
.badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 700;
  color: #2BA253;
  background: #e9f8ee;
  border-radius: 999px;
}
.badge img {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media (max-width: 768px) {
  .badge {
    height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }
  .badge img {
    width: 20px;
    height: 20px;
  }
}

/* ----------------------------------------------------------------
   site-body
---------------------------------------------------------------- */
.site-body {
  width: 100%;
  min-width: 0;
  position: relative;
  padding-top: 84px;
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.8;
  color: #526157;
}
@media (max-width: 768px) {
  .site-body {
    padding-top: 54px;
  }
}

/* ----------------------------------------------------------------
   主視覺 hero
---------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  /* 視覺稿為辦公室情境照，圖檔未提供，先以相近色階漸層呈現。
     圖檔到位後放到 images/hero-bg.jpg，改用下面被註解的 background-image 即可。 */
  background-color: #f1f5f8;
  background-image: url(../images/main-bg.png);
  background-size: cover;
  background-position: center;
  /* 注意：.hero__inner 同時掛在 .container 上，不要用 padding 簡寫，
     以免蓋掉 .container 的左右留白；上下留白改掛在 .hero__text。 */
}
.hero [data-reveal][data-reveal=right] {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
}
.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  min-height: 700px;
}
.hero__text {
  padding-top: 64px;
  padding-bottom: 104px;
}
.hero__badges {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.hero__title {
  margin-top: 12px;
  font-size: 52px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #354D3D;
}
.hero__title em {
  font-style: normal;
  color: #2ba253;
}
.hero__lead {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.6;
  color: #4a5a50;
}
.hero {
  /* 政策連結膠囊 */
}
.hero__guide {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  height: 47px;
  margin-top: 16px;
  padding: 0 20px;
  font-size: 16px;
  color: #1875b2;
  background: #ebf7ff;
  border-radius: 12px;
  -webkit-transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.hero__guide img {
  width: 24px;
  height: 24px;
}
.hero__guide.on-touch, .hero__guide:hover, .hero__guide:focus {
  color: #1875b2;
  background: rgb(214.6, 238.84, 255);
}
.hero__stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
  position: relative;
}
.hero__stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-filter: blur(5px);
          filter: blur(5px);
  backdrop-filter: blur(7px);
  z-index: -1;
}
.hero__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.hero__visual {
  text-align: center;
}
.hero__visual img {
  width: 100%;
  max-width: 620px;
  height: auto;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1200px) {
  .hero__title {
    font-size: 44px;
  }
}
@media (max-width: 1024px) {
  .hero__inner {
    gap: 24px;
    min-height: 0;
  }
  .hero__text {
    padding-top: 56px;
    padding-bottom: 64px;
  }
  .hero__title {
    font-size: 38px;
  }
  .hero__lead {
    font-size: 17px;
  }
}
@media (max-width: 860px) {
  .hero__text {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero__visual {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero__title {
    margin-top: 14px;
    font-size: 30px;
    line-height: 1.4;
  }
  .hero__lead {
    font-size: 15px;
    line-height: 1.6;
  }
  .hero__guide {
    height: 42px;
    margin-top: 14px;
    padding: 0 14px;
    font-size: 13px;
  }
  .hero__stats {
    margin-top: 26px;
  }
  .hero__actions {
    gap: 12px;
    margin-top: 30px;
  }
  .hero__visual {
    margin: 24px -18px 0;
  }
  .hero {
    background-color: #F7F9FD;
    background-image: url(../images/main-bg-m.png);
    background-size: cover;
    background-position: center bottom;
  }
}
@media (max-width: 359px) {
  .hero__title {
    font-size: 26px;
  }
}

.stat {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  padding: 16px 24px;
}
.stat + .stat {
  border-left: 1px solid #dfe6e2;
}
.stat__n {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #2ba253;
}
.stat__label {
  display: block;
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.5;
  color: #6b7a70;
}
@media (max-width: 768px) {
  .stat {
    padding: 0 14px;
  }
  .stat:first-child {
    padding-left: 14px;
  }
  .stat__n {
    font-size: 20px;
  }
  .stat__label {
    margin-top: 4px;
    font-size: 12px;
  }
}
@media (max-width: 568px) {
  .stat {
    padding: 0 10px;
  }
  .stat:first-child {
    padding-left: 10px;
  }
}

/* ----------------------------------------------------------------
   區塊共用
---------------------------------------------------------------- */
.section {
  padding: 72px 0;
}
.section--cases {
  background: #f7faf8;
}
.section--faq {
  background: #f7faf8;
}
.section__kicker {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #2ba253;
}
.section__title {
  margin-top: 8px;
  font-size: 38px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #0f2416;
}
.section__lead {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
  color: #5b6a61;
}
.section__foot {
  margin-top: 56px;
  text-align: center;
}
@media (max-width: 1024px) {
  .section {
    padding: 64px 0;
  }
  .section__title {
    font-size: 30px;
  }
  .section__lead {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }
  .section__kicker {
    font-size: 13px;
  }
  .section__title {
    margin-top: 10px;
    font-size: 22px;
  }
  .section__lead {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
  }
  .section__foot {
    margin-top: 28px;
  }
}

/* ----------------------------------------------------------------
   詐騙案例
---------------------------------------------------------------- */
.cases {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
@media (max-width: 768px) {
  .cases {
    margin-top: 24px;
    gap: 20px;
  }
}

.case {
  background: #ffffff;
  border-radius: 24px;
  -webkit-box-shadow: 0 2px 12px rgba(15, 36, 22, 0.04);
          box-shadow: 0 2px 12px rgba(15, 36, 22, 0.04);
  overflow: hidden;
}
.case__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  min-height: 70px;
  padding: 16px 24px;
  border-bottom: 1px solid #f1f4f2;
}
.case__no {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 37px;
  padding: 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: #2ba253;
  background: #e8ffef;
  border-radius: 999px;
}
.case__title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #333333;
}
.case__body {
  padding: 24px;
}
@media (max-width: 768px) {
  .case {
    border-radius: 16px;
  }
  .case__head {
    gap: 12px;
    min-height: 0;
    padding: 14px 16px;
  }
  .case__no {
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }
  .case__title {
    font-size: 15px;
  }
  .case__body {
    padding: 18px 14px;
  }
}

/* 五格漫畫（Swiper 5：.steps = .swiper-container，.steps__list = .swiper-wrapper）
   版位/間距由 JS breakpoints 控制：
   ≥1025 五格並排 gap 14（等同視覺稿 246.4px × 5）；1024 以下轉輪播 gap 16 */
.steps {
  /* Swiper 沒載入時的保底：至少保留原生橫向捲動 */
}
.steps.is-fallback {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.steps.is-fallback::-webkit-scrollbar {
  display: none;
}
.steps.is-fallback .steps__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.steps.is-fallback .step {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 246px;
          flex: 0 0 246px;
  margin-right: 16px;
}

.step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  background: #ffffff;
  border: 1px solid #e8ebe9;
  border-radius: 16px;
  overflow: hidden;
  /* 旁白：卡片頂端深色橫幅 */
}
.step__narr {
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
  background: #2b2b2b;
}
.step__thumb {
  position: relative;
  aspect-ratio: 1/1;
  background: #f2f5f3;
  overflow: hidden;
}
.step__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.step__no {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  width: 22px;
  height: 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: center;
  color: #333333;
  background: #ffffff;
  border-radius: 999px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.18);
}
.step {
  /* 旁白：貼在圖片左下角 */
}
.step__stamp {
  position: absolute;
  left: 0;
  bottom: 16px;
  z-index: 2;
  padding: 6px 14px;
  font-size: 14px;
  line-height: 1.4;
  color: #ffffff;
  background: rgba(24, 24, 24, 0.72);
  border-radius: 0 8px 8px 0;
}
.step__body {
  padding: 16px;
}
.step__who {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 28px;
  padding: 0 12px;
  font-size: 13px;
  font-weight: 500;
  color: #ffffff;
  background: #555555;
  border-radius: 999px;
}
.step__who--victim {
  color: #175cd3;
  background: #eff8ff;
}
.step__msg {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: #3d4c43;
}
.step__msg strong {
  font-weight: 700;
  color: #2ba253;
}
.step__note {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: #3d4c43;
}
.step {
  /* 沒有旁白橫幅時，圖片上緣切齊卡片圓角 */
}
.step:not(.step--narr) .step__thumb {
  border-radius: 15px 15px 0 0;
}

/* 五格漫畫左右切換（僅行動版顯示；箭頭與圓點交給 Swiper 控制狀態） */
.steps-nav {
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  margin-top: 24px;
}
.steps-nav__arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  font-size: 22px;
  line-height: 1;
  color: #5b6a61;
  background: #ffffff;
  border: 1px solid #e8ebe9;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: opacity 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), border-color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: opacity 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), border-color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  /* Swiper 的 disabledClass 設為 is-disabled；a11y 模組另外會加 disabled 屬性 */
}
.steps-nav__arrow.is-disabled, .steps-nav__arrow:disabled {
  opacity: 0.35;
  cursor: default;
  border-color: #e8ebe9;
  color: #5b6a61;
}
.steps-nav__arrow:not(.is-disabled):not(:disabled):hover {
  border-color: #2ba253;
  color: #2ba253;
}
.steps-nav__arrow.is-locked, .steps-nav__arrow.is-hidden {
  display: none;
}
.steps-nav__dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.steps-nav__dots.is-locked, .steps-nav__dots.is-hidden {
  display: none;
}
.steps-nav {
  /* Swiper 產生的是 <span>，需要 display:block 才吃得到寬高 */
}
.steps-nav__dot {
  display: block;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  background: #dcdfdd;
  border-radius: 999px;
  cursor: pointer;
  -webkit-transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-transform 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-transform 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), transform 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: background 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), transform 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-transform 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.steps-nav__dot.is-active {
  background: #08bf5b;
  -webkit-transform: scale(1.15);
          transform: scale(1.15);
}
@media (max-width: 1024px) {
  .steps-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 568px) {
  .steps-nav {
    gap: 14px;
  }
  .steps-nav__arrow {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  .steps-nav__dots {
    gap: 10px;
  }
  .steps-nav__dot {
    width: 9px;
    height: 9px;
  }
}

/* 官方提醒 */
.warn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 18px 24px;
  background: #f3f3f3;
  border-radius: 16px;
}
.warn__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 48px;
  height: 48px;
}
.warn__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.warn__title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
  color: #333333;
}
.warn__text {
  margin-top: 2px;
  font-size: 13px;
  line-height: 1.6;
  color: #434343;
}
.warn__text strong {
  font-weight: 700;
  color: #333333;
}
.warn__more {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: #2ba253;
}
.warn__more.on-touch, .warn__more:hover, .warn__more:focus {
  color: rgb(32.3024390244, 121.6975609756, 62.3512195122);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .warn__icon {
    width: 40px;
    height: 40px;
  }
  .warn__more {
    display: block;
    margin-top: 14px;
    text-align: right;
  }
}

/* ----------------------------------------------------------------
   LINE 查驗 CTA ＋ 官方查證管道（綠底大區塊）
---------------------------------------------------------------- */
.cta {
  padding: 100px 0 60px;
  background: #08bf5b;
}
.cta__bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}
.cta__title {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #ffffff;
}
.cta__text {
  margin-top: 8px;
  font-size: 18px;
  line-height: 1.5;
  color: #d8ffe8;
}
@media (max-width: 1024px) {
  .cta {
    padding: 72px 0 48px;
  }
  .cta__title {
    font-size: 30px;
  }
  .cta__text {
    font-size: 16px;
  }
}
@media (max-width: 860px) {
  .cta__bar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 24px;
  }
  .cta .c-btn--white {
    width: 100%;
    max-width: 212px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .cta {
    padding: 48px 0 40px;
  }
  .cta__bar {
    gap: 20px;
  }
  .cta__title {
    font-size: 24px;
  }
  .cta__text {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.8;
  }
}
@media (max-width: 568px) {
  .cta__title {
    font-size: 22px;
  }
}

.verify {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 62px;
  padding: 40px;
  background: #ffffff;
  border-radius: 24px;
}
.verify__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: #0f2416;
}
.verify__lead {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: #5b6a61;
  min-height: 54px;
}
@media (max-width: 950px) {
  .verify__lead {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .verify {
    gap: 32px;
    padding: 32px;
  }
  .verify__title {
    font-size: 26px;
  }
}
@media (max-width: 860px) {
  .verify {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 24px;
  }
  .verify__lead {
    min-height: 0;
  }
}
@media (max-width: 768px) {
  .verify {
    gap: 32px;
    margin-top: 32px;
    padding: 24px 18px;
    border-radius: 24px;
  }
  .verify__title {
    font-size: 21px;
  }
  .verify__lead {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.8;
  }
}

/* 查驗 3 步驟 */
.lsteps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.lsteps [data-reveal=left] {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.lstep {
  min-height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 16px;
  padding: 16px 16px;
  border: 1px solid #e8ebe9;
  border-radius: 18px;
}
.lstep__n {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 30px;
  height: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  background: #08bf5b;
  border-radius: 999px;
}
.lstep__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f2416;
}
.lstep__text {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.4;
  color: #6b7a70;
}
@media (max-width: 768px) {
  .lstep {
    gap: 14px;
    padding: 18px 14px;
  }
  .lstep__title {
    font-size: 16px;
  }
  .lstep__text {
    font-size: 13px;
  }
}

/* LINE AI 客服提示 */
.skills {
  min-height: 110px;
  margin-top: 12px;
  padding: 10px 24px;
  background: #eafaf0;
  border-radius: 18px;
}
.skills__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #08bf5b;
}
.skills ul {
  margin-top: 8px;
}
.skills li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
  font-size: 14px;
  line-height: 1.6;
  color: #2f4a39;
}
.skills li + li {
  margin-top: 10px;
}
.skills li img {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 2px;
}
@media (max-width: 768px) {
  .skills {
    padding: 18px 14px;
  }
  .skills__title {
    font-size: 15px;
  }
  .skills li {
    font-size: 13px;
  }
}

/* 官方查證管道 */
.channels {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.channels [data-reveal=right] {
  -webkit-transform: translateX(0px);
  transform: translateX(0px);
}

.channel {
  min-height: 110px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 16px 16px 16px 24px;
  border: 1px solid #e8ebe9;
  border-radius: 18px;
  -webkit-transition: border-color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: border-color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: border-color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: border-color 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-box-shadow 0.2s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.channel__icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 40px;
  height: 40px;
}
.channel__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
}
.channel__kind {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: #5b6a61;
}
.channel__name {
  display: block;
  margin-top: 2px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f2416;
  word-break: break-word;
}
.channel__note {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  line-height: 1.6;
  color: #6b7a70;
}
.channel__arrow {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 24px;
  height: 24px;
}
@media (max-width: 768px) {
  .channel {
    gap: 14px;
    padding: 18px 14px;
  }
  .channel__kind {
    font-size: 12px;
  }
  .channel__name {
    font-size: 17px;
  }
  .channel__note {
    font-size: 13px;
  }
}

/* ----------------------------------------------------------------
   FAQ
---------------------------------------------------------------- */
.faq {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.faq__item {
  background: #ffffff;
  border: 1px solid #e8ebe9;
  border-radius: 16px;
  overflow: hidden;
}
.faq__q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 18px 20px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
}
.faq__q > span {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  color: #0f2416;
}
.faq__mark {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  width: 24px;
  height: 24px;
  background: #eafaf0;
  border-radius: 999px;
}
.faq__mark::before, .faq__mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  margin: -1px 0 0 -5px;
  background: #1f7d40;
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: -webkit-transform 0.25s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: transform 0.25s cubic-bezier(0.22, 0.8, 0.3, 1);
  transition: transform 0.25s cubic-bezier(0.22, 0.8, 0.3, 1), -webkit-transform 0.25s cubic-bezier(0.22, 0.8, 0.3, 1);
}
.faq__mark::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.faq__a {
  display: none;
  padding: 0 20px 20px;
  font-size: 15px;
  line-height: 1.8;
  color: #526157;
}
.faq__a p + p, .faq__a p + ol, .faq__a ol + p {
  margin-top: 6px;
}
.faq__a strong {
  font-weight: 700;
  color: #0f2416;
}
.faq__a a {
  color: #2ba253;
  text-decoration: underline;
}
.faq__a a.on-touch, .faq__a a:hover {
  color: rgb(32.3024390244, 121.6975609756, 62.3512195122);
}
.faq__a ol {
  list-style: decimal;
  padding-left: 24px;
}
.faq__a ol li + li {
  margin-top: 2px;
}
.faq {
  /* 展開狀態：＋ 轉成 ✕ */
}
.faq__item.is-open .faq__a {
  display: block;
}
.faq__item.is-open .faq__mark::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.faq__item.is-open .faq__mark::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 768px) {
  .faq {
    margin-top: 20px;
  }
  .faq__q {
    gap: 14px;
    padding: 16px 14px;
  }
  .faq__q > span {
    font-size: 15px;
  }
  .faq__a {
    padding: 0 14px 16px;
    font-size: 14px;
  }
}

/* ----------------------------------------------------------------
   footer（覆寫 frame / module_footer）
---------------------------------------------------------------- */
.footer {
  min-width: 0;
  background-color: #303030;
}
.footer .footer-content {
  max-width: 1400px;
  padding: 40px 32px;
}
@media (max-width: 768px) {
  .footer .footer-content {
    padding: 28px 18px;
  }
}