/* ==========================================================================
   About Page – Scoped Styles
   All rules scoped to .tmpl-about or .page-template-page-about
   ========================================================================== */

/* ---------- Design tokens ---------- */
.tmpl-about {
  --ab-red: #e6433e;
  --ab-orange: #fea500;
  --ab-black: #000000;
  --ab-text: #111111;
  --ab-white: #ffffff;
  --ab-grey: #a7a7a7;
  --ab-pink-bg: #fce4e4;
  --ab-font: "Inter", "Noto Sans TC", "Noto Sans JP", sans-serif;
  background: var(--ab-white);
}

/* ==========================================================================
   Section 1 – Hero
   ========================================================================== */
.tmpl-about .about_s1 {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.tmpl-about .about_s1__hero {
  position: relative;
  width: 100%;
  min-height: 490px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("../img/about/about_s1_hero_bg.webp") center / cover no-repeat;
}

.tmpl-about .about_s1__hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  width: 710px;
  max-width: calc(100% - 2rem);
  padding: 60px 0;
}

.tmpl-about .about_s1__title-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  color: var(--ab-white);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

.tmpl-about .about_s1__title {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.tmpl-about .about_s1__subtitle {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
}

.tmpl-about .about_s1__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 54px;
  border-radius: 36.5px;
  background: var(--ab-white);
}

.tmpl-about .about_s1__pill p {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 400;
  color: var(--ab-red);
  white-space: nowrap;
}

/* ==========================================================================
   Section 2 – 大大寬頻第四台
   ========================================================================== */
.tmpl-about .about_s2 {
  padding: 46px 0 60px;
  background: var(--ab-white);
}

.tmpl-about .about_s2__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 1298px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tmpl-about .about_s2__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 430px;
  max-width: 100%;
}

.tmpl-about .about_s2__title-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  max-width: 100%;
  height: 38px;
}

.tmpl-about .about_s2__title-mark-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tmpl-about .about_s2__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--ab-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--ab-red);
  white-space: nowrap;
}

.tmpl-about .about_s2__subtitle {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 400;
  color: var(--ab-black);
  text-align: center;
}

.tmpl-about .about_s2__desc {
  margin: 0;
  max-width: 700px;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ab-black);
  text-align: left;
}

.tmpl-about .about_s2__grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}

.tmpl-about .about_s2__row {
  display: flex;
  gap: 102px;
  align-items: center;
  justify-content: center;
}

.tmpl-about .about_s2__item {
  display: flex;
  gap: 16px;
  align-items: center;
}

/* 電腦端：六個紅色方形標題對齊（使用 grid 讓左右兩欄寬度一致） */
@media (min-width: 1025px) {
  .tmpl-about .about_s2__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 102px;
    row-gap: 36px;
  }

  .tmpl-about .about_s2__row {
    display: contents;
  }

  .tmpl-about .about_s2__row .about_s2__item:nth-child(1) {
    grid-column: 1;
  }

  .tmpl-about .about_s2__row .about_s2__item:nth-child(2) {
    grid-column: 2;
  }

  /* S3 大大寬頻費用透明：紅色標題與下方白底方案內容分開間距 */
  .tmpl-about .about_s3__group {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  /* S4 大大寬頻網路費用：白色對話框內文字置中，避免跑版 */
  .tmpl-about .about_s4__offer-caption {
    position: relative;
  }

  .tmpl-about .about_s4__offer-caption p {
    position: absolute;
    top: calc(50% + 0.5rem);
    left: 0;
    right: 0;
    margin: 0;
    transform: translateY(-50%);
    padding: 0 8px;
    box-sizing: border-box;
  }
}

.tmpl-about .about_s2__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 148px;
  height: 36px;
  background: var(--ab-red);
  color: var(--ab-white);
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 500;
}

.tmpl-about .about_s2__text {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
  line-height: 1.4;
}

.tmpl-about .about_s2__note {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--ab-red);
  text-align: center;
}

.tmpl-about .about_s2__cta-wrap,
.tmpl-about .about_s3__cta-wrap,
.tmpl-about .about_s4__cta-wrap {
  display: flex;
  justify-content: center;
}

.tmpl-about .about_s2__cta,
.tmpl-about .about_s3__cta,
.tmpl-about .about_s4__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: 200px;
  height: 51px;
  background: url("../img/about/about_s2_button.svg") center / contain no-repeat;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.tmpl-about .about_s2__cta span,
.tmpl-about .about_s3__cta span,
.tmpl-about .about_s4__cta span {
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
}

.tmpl-about .about_s2__cta img,
.tmpl-about .about_s3__cta img,
.tmpl-about .about_s4__cta img {
  width: 21px;
  height: 21px;
}

.tmpl-about .about_s2__cta:hover,
.tmpl-about .about_s3__cta:hover,
.tmpl-about .about_s4__cta:hover {
  transform: translateY(-2px);
}

/* ==========================================================================
   Section 3 – 大大寬頻費用透明
   ========================================================================== */
.tmpl-about .about_s3 {
  padding: 57px 0 60px;
  background: var(--ab-pink-bg);
}

.tmpl-about .about_s3__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tmpl-about .about_s3__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 430px;
  max-width: 100%;
}

.tmpl-about .about_s3__title-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  max-width: 100%;
  height: 38px;
}

.tmpl-about .about_s3__title-mark-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tmpl-about .about_s3__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--ab-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--ab-red);
  white-space: nowrap;
}

.tmpl-about .about_s3__subtitle {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 400;
  color: var(--ab-black);
  text-align: center;
}

.tmpl-about .about_s3__desc {
  margin: 0;
  max-width: 700px;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ab-black);
}

.tmpl-about .about_s3__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.tmpl-about .about_s3__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  border-radius: 10px 10px 0 0;
  background: var(--ab-red);
  color: var(--ab-white);
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 500;
}

.tmpl-about .about_s3__cards {
  display: flex;
  gap: 42px;
  justify-content: center;
}

.tmpl-about .about_s3__cards--4 {
  display: grid;
  grid-template-columns: repeat(4, 310px);
  gap: 42px;
  justify-content: center;
}

.tmpl-about .about_s3__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 196px;
  padding: 10px;
  border-radius: 14px;
  background: var(--ab-white);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
}

.tmpl-about .about_s3__card--wide {
  width: 100%;
}

.tmpl-about .about_s3__card-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.tmpl-about .about_s3__card-top--center {
  align-items: center;
}

.tmpl-about .about_s3__card-title {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--ab-black);
}

.tmpl-about .about_s3__price-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.tmpl-about .about_s3__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 74px;
  height: 24px;
  border-radius: 50px;
  background: var(--ab-orange);
  color: var(--ab-white);
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  flex-shrink: 0;
}

.tmpl-about .about_s3__price {
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
}

.tmpl-about .about_s3__card-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 20px);
  min-height: 72px;
  padding: 21px 20px;
  border: 1px solid var(--ab-grey);
  border-radius: 0 0 8px 8px;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
  text-align: center;
  box-sizing: border-box;
}

/* 光纖上網四卡：200M／300M 底部兩行 — 桌面仍顯示為單行文案（Figma 581:3383） */
.tmpl-about .about_s3__cards--4 .about_s3__card-bottom--fiber-split {
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
}

.tmpl-about
  .about_s3__cards--4
  .about_s3__card-bottom--fiber-split
  .about_s3__card-bottom__row {
  flex: 0 0 auto;
}

.tmpl-about
  .about_s3__cards--4
  .about_s3__card-bottom--fiber-split:not(.about_s3__card-bottom--fiber-center)
  .about_s3__card-bottom__row:first-child::after {
  content: "、";
}

.tmpl-about .about_s3__two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.tmpl-about .about_s3__three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tmpl-about .about_s3__bar--compact {
  font-size: 20px;
}

.tmpl-about .about_s3__note {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
  text-align: center;
}

/* ==========================================================================
   Section 4 – 費用 + 評價推薦
   ========================================================================== */
.tmpl-about .about_s4 {
  background: var(--ab-white);
}

.tmpl-about .about_s4__pricing {
  padding: 47px 0 60px;
}

.tmpl-about .about_s4__pricing-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tmpl-about .about_s4__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 430px;
  max-width: 100%;
}

.tmpl-about .about_s4__title-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 430px;
  max-width: 100%;
  height: 38px;
}

.tmpl-about .about_s4__title-mark-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tmpl-about .about_s4__title {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: var(--ab-font);
  font-size: 24px;
  font-weight: 500;
  color: var(--ab-red);
  white-space: nowrap;
}

.tmpl-about .about_s4__subtitle {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 400;
  color: var(--ab-black);
  text-align: center;
}

.tmpl-about .about_s4__desc {
  margin: 0;
  max-width: 700px;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ab-black);
}

.tmpl-about .about_s4__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1368px;
  height: 48px;
  border: 1px solid var(--ab-red);
  border-radius: 10px 10px 0 0;
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--ab-red);
}

.tmpl-about .about_s4__offers {
  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tmpl-about .about_s4__offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.tmpl-about .about_s4__offer-ball {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: var(--ab-red);
}

.tmpl-about .about_s4__offer-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 36px;
  border-radius: 18px;
  background: var(--ab-white);
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--ab-black);
  text-align: center;
}

.tmpl-about .about_s4__offer-price {
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--ab-white);
}

.tmpl-about .about_s4__offer-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: -38.5px;
}

.tmpl-about .about_s4__offer-caption__shape {
  display: block;
}

.tmpl-about .about_s4__offer-caption__shape--desktop {
  width: 264px;
  height: 60.5px;
}

.tmpl-about .about_s4__offer-caption__shape--mobile {
  display: none;
}

.tmpl-about .about_s4__offer-caption p {
  margin: -8px 0 0;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
  text-align: center;
}

/* Reviews sub-section */
.tmpl-about .about_s4__reviews {
  position: relative;
  padding: 64px 0 60px;
  overflow: hidden;
}

.tmpl-about .about_s4__reviews-bg {
  position: absolute;
  inset: 0;
  background: url("../img/about/about_s4_bg.webp") center / cover no-repeat;
  opacity: 0.1;
  pointer-events: none;
}

.tmpl-about .about_s4__reviews-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
  max-width: 1368px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tmpl-about .about_s4__highlights {
  display: flex;
  gap: 48px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tmpl-about .about_s4__highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 200px;
}

.tmpl-about .about_s4__dot {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(230, 67, 62, 0.3) 0%,
    transparent 70%
  );
}

.tmpl-about .about_s4__bubble {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  margin-top: -80px;
}

.tmpl-about .about_s4__bubble-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  box-shadow: 4px 4px 28px rgba(0, 0, 0, 0.25);
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 500;
  color: var(--ab-red);
  text-align: center;
  position: relative;
  z-index: 0;
}

/* 紅色光暈裝飾：僅電腦端顯示於白圓左上角 */
.tmpl-about .about_s4__bubble-glow {
  display: none;
}

@media (min-width: 1025px) {
  .tmpl-about .about_s4__bubble-glow {
    display: block;
    position: absolute;
    top: 2rem;
    left: 1rem;
    width: 116px;
    height: 116px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: -1;
  }

  .tmpl-about .about_s4__bubble {
    overflow: visible;
  }

  .tmpl-about .about_s4__bubble-title {
    position: relative;
    z-index: 1;
  }
}

.tmpl-about .about_s4__highlight p {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
  text-align: center;
  line-height: 1.5;
}

.tmpl-about .about_s4__highlights-dots {
  display: none;
}

/* ==========================================================================
   Section 5 – 實績案例
   ========================================================================== */
.tmpl-about .about_s5_trackrecord {
  padding: 48px 0 56px;
  background: var(--ab-white);
}

.tmpl-about .about_s5_trackrecord__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tmpl-about .about_s5_trackrecord__header,
.tmpl-about .about_s6_Testimonials__header,
.tmpl-about .about_s7_qa__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tmpl-about .about_s5_trackrecord__title-wrap,
.tmpl-about .about_s6_Testimonials__title-wrap,
.tmpl-about .about_s7_qa__title-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  min-width: 0;
}

.tmpl-about .about_s5_trackrecord__title-bar,
.tmpl-about .about_s6_Testimonials__title-bar,
.tmpl-about .about_s7_qa__title-bar {
  display: block;
  width: 5px;
  height: 28px;
  background: var(--ab-red);
  border-radius: 2px;
  flex-shrink: 0;
}

.tmpl-about .about_s5_trackrecord__title,
.tmpl-about .about_s6_Testimonials__title,
.tmpl-about .about_s7_qa__title {
  margin: 0 12px 0 8px;
  font-family: var(--ab-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--ab-red);
  white-space: nowrap;
  flex-shrink: 0;
}

.tmpl-about .about_s5_trackrecord__title-line,
.tmpl-about .about_s6_Testimonials__title-line,
.tmpl-about .about_s7_qa__title-line {
  display: block;
  flex: 1;
  height: 2px;
  background: var(--ab-red);
  border-radius: 1px;
}

.tmpl-about .about_s5_trackrecord__toggle,
.tmpl-about .about_s6_Testimonials__toggle,
.tmpl-about .about_s7_qa__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 18px;
  border: none;
  border-radius: 6px;
  background: var(--ab-red);
  color: var(--ab-white);
  font-family: var(--ab-font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.tmpl-about .about_s5_trackrecord__toggle:hover,
.tmpl-about .about_s6_Testimonials__toggle:hover,
.tmpl-about .about_s7_qa__toggle:hover {
  background: #cb3632;
}

.tmpl-about .about_s5_trackrecord__toggle,
.tmpl-about .about_s6_Testimonials__toggle,
.tmpl-about .about_s7_qa__toggle {
  gap: 8px;
}

.tmpl-about .about_s5_trackrecord__toggle::after,
.tmpl-about .about_s6_Testimonials__toggle::after,
.tmpl-about .about_s7_qa__toggle::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--ab-white);
  transition: transform 0.3s ease;
}

.tmpl-about .about_s5_trackrecord__toggle.is-open::after,
.tmpl-about .about_s6_Testimonials__toggle.is-open::after,
.tmpl-about .about_s7_qa__toggle.is-open::after {
  transform: rotate(180deg);
}

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

.tmpl-about .about_s5_trackrecord.is-expanded .about_s5_trackrecord__grid {
  display: grid;
}

.tmpl-about .about_s5_trackrecord__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tmpl-about .about_s5_trackrecord__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #d9d9d9;
  border-radius: 4px;
}

.tmpl-about .about_s5_trackrecord__caption {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
}

.tmpl-about .about_s5_trackrecord__dots,
.tmpl-about .about_s6_Testimonials__dots,
.tmpl-about .about_s8_readmore__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

.tmpl-about .about_s5_trackrecord__dots,
.tmpl-about .about_s6_Testimonials__dots {
  display: none;
}

.tmpl-about .about_s5_trackrecord.is-expanded .about_s5_trackrecord__dots,
.tmpl-about .about_s6_Testimonials.is-expanded .about_s6_Testimonials__dots {
  display: flex;
}

.tmpl-about .about_s8_readmore__dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
  position: relative !important;
  bottom: auto !important;
  left: auto !important;
  width: auto !important;
}

.tmpl-about .about_s5_trackrecord__dot,
.tmpl-about .about_s6_Testimonials__dot,
.tmpl-about .about_s8_readmore__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #e6433e;
  padding: 0;
  cursor: pointer;
  box-sizing: border-box;
  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.tmpl-about .about_s5_trackrecord__dot--active,
.tmpl-about .about_s6_Testimonials__dot--active,
.tmpl-about .about_s8_readmore__dot--active {
  background: #e6433e;
  transform: scale(1.05);
}

/* ==========================================================================
   Section 6 – 好評推薦
   ========================================================================== */
.tmpl-about .about_s6_Testimonials {
  padding: 48px 0 56px;
  background: var(--ab-white);
}

.tmpl-about .about_s6_Testimonials__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

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

.tmpl-about .about_s6_Testimonials.is-expanded .about_s6_Testimonials__cards {
  display: grid;
}

.tmpl-about .about_s6_Testimonials__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: var(--ab-white);
}

.tmpl-about .about_s6_Testimonials__stars {
  display: flex;
  gap: 4px;
}

.tmpl-about .about_s6_Testimonials__star {
  display: inline-block;
  width: 24px;
  height: 24px;
  background: var(--ab-orange);
  clip-path: polygon(
    50% 0%,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 91%,
    50% 70%,
    21% 91%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.tmpl-about .about_s6_Testimonials__star--empty {
  background: #d9d9d9;
}

.tmpl-about .about_s6_Testimonials__text {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
  line-height: 1.6;
}

.tmpl-about .about_s6_Testimonials__media {
  display: flex;
  gap: 8px;
}

.tmpl-about .about_s6_Testimonials__divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
}

.tmpl-about .about_s6_Testimonials__author {
  display: flex;
  gap: 12px;
  align-items: center;
}

.tmpl-about .about_s6_Testimonials__author-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.tmpl-about .about_s6_Testimonials__name {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 500;
  color: var(--ab-black);
}

.tmpl-about .about_s6_Testimonials__meta {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

/* Testimonials Form */
.tmpl-about .about_s6_Testimonials__form-wrap {
  display: none;
  padding: 28px 32px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background: var(--ab-white);
}

.tmpl-about
  .about_s6_Testimonials.is-expanded
  .about_s6_Testimonials__form-wrap {
  display: block;
}

.tmpl-about .about_s6_Testimonials__form-title {
  margin: 0 0 20px;
  font-family: var(--ab-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--ab-black);
}

.tmpl-about .about_s6_Testimonials__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tmpl-about .about_s6_Testimonials__row {
  display: flex;
  gap: 16px;
  align-items: center;
}

.tmpl-about .about_s6_Testimonials__row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tmpl-about .about_s6_Testimonials__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--ab-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--ab-black);
  width: 100%;
}

.tmpl-about .about_s6_Testimonials__rating {
  display: flex;
  gap: 4px;
  margin-left: 8px;
}

.tmpl-about .about_s6_Testimonials__input {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: var(--ab-font);
  font-size: 14px;
  box-sizing: border-box;
}

.tmpl-about .about_s6_Testimonials__textarea {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: var(--ab-font);
  font-size: 14px;
  resize: vertical;
  box-sizing: border-box;
}

.tmpl-about .about_s6_Testimonials__form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tmpl-about .about_s6_Testimonials__consent {
  display: flex;
  gap: 8px;
  align-items: center;
  font-family: var(--ab-font);
  font-size: 12px;
  color: #666;
  cursor: pointer;
}

.tmpl-about .about_s6_Testimonials__consent input {
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.tmpl-about .about_s6_Testimonials__upload-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-family: var(--ab-font);
  font-size: 14px;
  color: var(--ab-black);
  transition: opacity 0.2s ease;
}

.tmpl-about .about_s6_Testimonials__upload-label:hover {
  opacity: 0.7;
}

.tmpl-about .about_s6_Testimonials__upload-icon {
  font-size: 18px;
}

.tmpl-about .about_s6_Testimonials__upload-text {
  font-weight: 400;
}

.tmpl-about .about_s6_Testimonials__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  padding: 0 28px;
  border: none;
  border-radius: 6px;
  background: var(--ab-red);
  color: var(--ab-white);
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s ease;
}

.tmpl-about .about_s6_Testimonials__submit:hover {
  background: #cb3632;
}

/* ==========================================================================
   Section 7 – 常見問題 (Q&A)
   ========================================================================== */
.tmpl-about .about_s7_qa {
  padding: 48px 0 56px;
  background: var(--ab-white);
}

.tmpl-about .about_s7_qa__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tmpl-about .about_s7_qa__list {
  display: none;
  flex-direction: column;
  gap: 16px;
}

.tmpl-about .about_s7_qa.is-expanded .about_s7_qa__list {
  display: flex;
  align-items: center;
}

.tmpl-about .about_s7_qa__item {
  display: flex;
  flex-direction: column;
  width: 1054px;
  max-width: 100%;
  border: none;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 0 21.519px 0 rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.tmpl-about .about_s7_qa__q {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 20px;
  cursor: pointer;
  list-style: none;
  font-family: var(--ab-font);
  justify-content: space-between;
}

.tmpl-about .about_s7_qa__q::-webkit-details-marker {
  display: none;
}

.tmpl-about .about_s7_qa__q-heading {
  display: flex;
  gap: 12px;
}

.tmpl-about .about_s7_qa__q-label {
  font-size: 18px;
  font-weight: 700;
  color: var(--ab-red);
  flex-shrink: 0;
}

.tmpl-about .about_s7_qa__q-spacer {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
  margin: 0 16px;
}

.tmpl-about .about_s7_qa__q-plus {
  font-size: 20px;
  font-weight: 400;
  color: var(--ab-red);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.tmpl-about .about_s7_qa__item[open] .about_s7_qa__q-plus {
  transform: rotate(45deg);
}

.tmpl-about .about_s7_qa__a {
  padding: 0 20px 20px;
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--ab-black);
  line-height: 1.6;
}

.tmpl-about .about_s7_qa__a p {
  margin: 0 0 8px;
}

.tmpl-about .about_s7_qa__a p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   Section 8 – 延伸閱讀
   ========================================================================== */
.tmpl-about .about_s8_readmore {
  padding: 48px 0 64px;
  background: var(--ab-white);
}

.tmpl-about .about_s8_readmore__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.tmpl-about .about_s8_readmore__title {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #000;
  font-family: Inter, "Noto Sans TC", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media (min-width: 769px) {
  .tmpl-about .about_s8_readmore__title {
    box-sizing: border-box;
    width: 250px;
    height: 55px;
    padding: 0;
    background-image: url("../img/common/延伸閱讀標題背景.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 250px 55px;
  }
}

/* 四個 L 型交叉角落裝飾 */
.tmpl-about .about_s8_readmore__corner {
  position: absolute;
  width: 0;
  height: 0;
}

.tmpl-about .about_s8_readmore__corner::before,
.tmpl-about .about_s8_readmore__corner::after {
  content: "";
  position: absolute;
  background: var(--ab-red);
}

/* 水平線 */
.tmpl-about .about_s8_readmore__corner::before {
  height: 2px;
  width: 80px;
}

/* 垂直線 */
.tmpl-about .about_s8_readmore__corner::after {
  width: 2px;
  height: 28px;
}

/* ── 左上角 ── */
.tmpl-about .about_s8_readmore__corner--tl {
  top: 0;
  left: 0;
}
.tmpl-about .about_s8_readmore__corner--tl::before {
  top: 0;
  left: -8px;
}
.tmpl-about .about_s8_readmore__corner--tl::after {
  top: -8px;
  left: 0;
}

/* ── 右上角 ── */
.tmpl-about .about_s8_readmore__corner--tr {
  top: 0;
  right: 0;
}
.tmpl-about .about_s8_readmore__corner--tr::before {
  top: 0;
  right: -8px;
}
.tmpl-about .about_s8_readmore__corner--tr::after {
  top: -8px;
  right: 0;
}

/* ── 左下角 ── */
.tmpl-about .about_s8_readmore__corner--bl {
  bottom: 0;
  left: 0;
}
.tmpl-about .about_s8_readmore__corner--bl::before {
  bottom: 0;
  left: -8px;
}
.tmpl-about .about_s8_readmore__corner--bl::after {
  bottom: -8px;
  left: 0;
}

/* ── 右下角 ── */
.tmpl-about .about_s8_readmore__corner--br {
  bottom: 0;
  right: 0;
}
.tmpl-about .about_s8_readmore__corner--br::before {
  bottom: 0;
  right: -8px;
}
.tmpl-about .about_s8_readmore__corner--br::after {
  bottom: -8px;
  right: 0;
}

.tmpl-about .about_s8_readmore__cards {
  width: 100%;
  padding: 20px 20px 30px;
  margin: -20px -20px -30px;
}

.tmpl-about .about_s8_readmore__slide {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  box-sizing: border-box;
}

.tmpl-about .about_s8_readmore__card {
  display: flex;
  flex-direction: column;
  border-radius: 0;
  overflow: hidden;
  background: var(--ab-white);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}

.tmpl-about .about_s8_readmore__thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: #d9d9d9;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.tmpl-about .about_s8_readmore__thumb img,
.tmpl-about .about_s8_readmore__thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tmpl-about .about_s8_readmore__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 20px 24px;
}

.tmpl-about .about_s8_readmore__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.tmpl-about .about_s8_readmore__heading {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--ab-black);
}

.tmpl-about .about_s8_readmore__date {
  font-family: var(--ab-font);
  font-size: 14px;
  font-weight: 400;
  color: #999;
  flex-shrink: 0;
}

.tmpl-about .about_s8_readmore__excerpt {
  margin: 0;
  font-family: var(--ab-font);
  font-size: 14px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}

.tmpl-about .about_s8_readmore__btn {
  display: flex;
  width: 245px;
  height: 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  border-radius: 52.165px;
  background:
    linear-gradient(to bottom right, #ffe1e0 0%, #e6433e 50%) bottom right / 51%
      51% no-repeat,
    linear-gradient(to bottom left, #ffe1e0 0%, #e6433e 50%) bottom left / 51%
      51% no-repeat,
    linear-gradient(to top left, #ffe1e0 0%, #e6433e 50%) top left / 51% 51%
      no-repeat,
    linear-gradient(to top right, #ffe1e0 0%, #e6433e 50%) top right / 51% 51%
      no-repeat;
  color: #000;
  font-family: Inter, var(--ab-font);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(230, 67, 62, 0.3);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.tmpl-about .about_s8_readmore__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(230, 67, 62, 0.4);
}

.tmpl-about .about_s8_readmore__more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 28px;
  border-radius: 8px;
  background: var(--ab-red);
  color: var(--ab-white);
  font-family: var(--ab-font);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.tmpl-about .about_s8_readmore__more:hover {
  background: #cb3632;
  transform: translateY(-1px);
}

/* ==========================================================================
   Responsive – 1024px
   ========================================================================== */
@media (max-width: 1024px) {
  .tmpl-about .about_s2__row {
    flex-direction: column;
    gap: 24px;
  }

  .tmpl-about .about_s3__cards--4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .tmpl-about .about_s3__card {
    width: 100%;
  }

  .tmpl-about .about_s3__two {
    grid-template-columns: 1fr;
  }

  .tmpl-about .about_s3__three {
    grid-template-columns: 1fr;
  }

  .tmpl-about .about_s4__offers {
    gap: 32px;
  }

  .tmpl-about .about_s4__highlights {
    gap: 24px;
  }

  .tmpl-about .about_s4__highlight {
    width: 160px;
  }

  .tmpl-about .about_s4__bubble {
    width: 160px;
    height: 160px;
  }

  .tmpl-about .about_s4__bubble-inner {
    font-size: 18px;
  }

  .tmpl-about .about_s4__dot {
    width: 64px;
    height: 64px;
  }

  .tmpl-about .about_s4__bubble {
    margin-top: -64px;
  }
}

/* ==========================================================================
   Responsive – 768px  (Figma mobile 375px base)
   ========================================================================== */
@media (max-width: 768px) {
  .tmpl-about .about_s6_Testimonials__consent {
    font-size: 8px;
  }
  /* ------------------------------------------------------------------
       S1 – Hero
       ------------------------------------------------------------------ */
  .tmpl-about .about_s1__hero {
    min-height: 136px;
  }

  .tmpl-about .about_s1__hero-inner {
    gap: 7px;
    padding: 20px 0;
  }

  .tmpl-about .about_s1__title-group {
    gap: 3px;
  }

  .tmpl-about .about_s1__title {
    font-size: 13px;
    font-weight: 600;
  }

  .tmpl-about .about_s1__subtitle {
    font-size: 12px;
    font-weight: 400;
  }

  .tmpl-about .about_s1__pill {
    height: 28px;
    border-radius: 60px;
    width: 303px;
    max-width: 100%;
  }

  .tmpl-about .about_s1__pill p {
    font-size: 10px;
    white-space: nowrap;
    padding: 0;
  }

  /* ------------------------------------------------------------------
       S2 – 大大寬頻第四台
       ------------------------------------------------------------------ */
  .tmpl-about .about_s2 {
    padding: 24px 0;
  }

  .tmpl-about .about_s2__inner {
    gap: 24px;
    max-width: 320px;
  }

  .tmpl-about .about_s2__header {
    width: 252px;
    gap: 8px;
  }

  .tmpl-about .about_s2__title-mark {
    width: 252px;
    height: 26px;
  }

  .tmpl-about .about_s2__title {
    font-size: 13px;
    font-weight: 600;
  }

  .tmpl-about .about_s2__subtitle {
    font-size: 12px;
  }

  .tmpl-about .about_s2__desc {
    font-size: 12px;
  }

  .tmpl-about .about_s2__grid {
    gap: 16px;
  }

  .tmpl-about .about_s2__row {
    gap: 20px;
  }

  .tmpl-about .about_s2__item {
    gap: 16px;
  }

  .tmpl-about .about_s2__badge {
    width: 108px;
    height: 36px;
    font-size: 13px;
    font-weight: 600;
  }

  .tmpl-about .about_s2__text {
    font-size: 12px;
  }

  .tmpl-about .about_s2__note {
    font-size: 13px;
    font-weight: 600;
  }

  /* ------------------------------------------------------------------
       S3 – 費用透明
       ------------------------------------------------------------------ */
  .tmpl-about .about_s3 {
    padding: 24px 0;
  }

  .tmpl-about .about_s3__inner {
    gap: 24px;
    max-width: 100%;
    padding: 0 16px;
    box-sizing: border-box;
  }

  .tmpl-about .about_s3__header {
    width: 252px;
    gap: 8px;
  }

  .tmpl-about .about_s3__title-mark {
    width: 252px;
    height: 26px;
  }

  .tmpl-about .about_s3__title {
    font-size: 13px;
    font-weight: 600;
  }

  .tmpl-about .about_s3__subtitle {
    font-size: 12px;
  }

  /* 與下方方案欄同寬 300px（Figma 581:3383） */
  .tmpl-about .about_s3__desc {
    font-size: 12px;
    max-width: min(300px, 100%);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
  }

  /* 所有紅底區塊標題統一為「光纖上網」級：13px／600／行高 22、高 32px、上圓角 10px（含 --compact） */
  .tmpl-about .about_s3__bar,
  .tmpl-about .about_s3__bar.about_s3__bar--compact {
    width: 100%;
    height: 32px;
    min-height: 32px;
    padding: 0 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0;
    color: var(--ab-white);
    background: var(--ab-red);
    border-radius: 10px 10px 0 0;
    text-align: center;
    box-sizing: border-box;
  }

  /* 圖塊標題（紅條）與下方卡片保留間隔 */
  .tmpl-about .about_s3__group {
    width: 100%;
    max-width: 100%;
    gap: 20px;
  }

  /* 方案區塊（含光纖／有線電視等）同欄寬 300px 置中，紅條與內容與光纖區一致 */
  .tmpl-about .about_s3__stack .about_s3__group {
    max-width: min(300px, 100%);
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .tmpl-about .about_s3__cards {
    gap: 16px;
  }

  .tmpl-about .about_s3__card {
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .tmpl-about .about_s3__card-top {
    gap: 8px;
  }

  .tmpl-about .about_s3__card-title {
    font-size: 13px;
    font-weight: 600;
  }

  .tmpl-about .about_s3__price-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  /* 光纖上網四卡：Figma 581:3383（僅此區；月費／金額直向、135×196、內文 114px） */
  .tmpl-about .about_s3__cards--4 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 135px));
    gap: 16px;
    width: 100%;
    max-width: min(300px, 100%);
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

  .tmpl-about .about_s3__cards--4 .about_s3__card {
    width: 100%;
    max-width: 135px;
    justify-self: center;
    min-height: 196px;
    padding: 10px;
    border-radius: 14px;
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.25);
    gap: 20px;
  }

  .tmpl-about .about_s3__cards--4 .about_s3__card-top {
    width: 100%;
    max-width: 114px;
    align-self: center;
    align-items: flex-start;
    gap: 8px;
  }

  /* 光纖四卡文字階層：標題 13 半粗行高 22；月費／金額／底欄為小內文 12 正規行高 normal（Figma 581:3383） */
  .tmpl-about .about_s3__cards--4 .about_s3__card-title {
    font-size: 13px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0;
    white-space: nowrap;
  }

  .tmpl-about .about_s3__cards--4 .about_s3__price-row {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    width: 100%;
  }

  /* 單張卡片區（有線電視、附加包、安裝費、保證金、優惠）：如截圖排版，月費與金額同一行橫向置中 */
  .tmpl-about .about_s3__card-top--center .about_s3__price-row {
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
  }

  /* 單張卡片內月費 pill 橘色背景寬度為原本的 0.8 倍 */
  .tmpl-about .about_s3__card-top--center .about_s3__pill {
    width: auto;
    min-width: 86px;
    max-width: 178px;
    height: 24px;
    flex-shrink: 0;
  }

  /* 月費標籤與背景拉寬三倍（桌面 74px × 3 ≈ 222px，窄螢幕不超出卡片） */
  .tmpl-about .about_s3__pill {
    min-width: 120px;
    width: 100%;
    max-width: 222px;
    height: 36px;
    font-size: 14px;
    font-weight: 500;
  }

  .tmpl-about .about_s3__price {
    font-size: 12px;
  }

  .tmpl-about .about_s3__card-bottom {
    font-size: 12px;
    min-height: 48px;
    padding: 12px;
  }

  /* 光纖四卡：覆寫通用 pill／底欄，對齊 Figma */
  .tmpl-about .about_s3__cards--4 .about_s3__pill {
    min-width: 0;
    width: 100%;
    max-width: none;
    height: 24px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
    box-sizing: border-box;
  }

  .tmpl-about .about_s3__cards--4 .about_s3__price {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
  }

  .tmpl-about .about_s3__cards--4 .about_s3__card-bottom {
    width: 100%;
    min-height: 48px;
    padding: 0;
    box-sizing: border-box;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
  }

  .tmpl-about .about_s3__cards--4 .about_s3__card-bottom__row {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0;
  }

  .tmpl-about .about_s3__cards--4 .about_s3__card-bottom--fiber-split {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }

  .tmpl-about
    .about_s3__cards--4
    .about_s3__card-bottom--fiber-split:not(
      .about_s3__card-bottom--fiber-center
    )
    .about_s3__card-bottom__row:first-child::after {
    content: none;
  }

  .tmpl-about .about_s3__cards--4 .about_s3__card-bottom--fiber-center {
    align-items: center;
    text-align: center;
  }

  .tmpl-about .about_s3__two {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .tmpl-about .about_s3__three {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* 單張卡片統一 UI：與截圖一致（寬度、圓角、陰影、內距與文字比例） */
  .tmpl-about .about_s3__two .about_s3__cards,
  .tmpl-about .about_s3__three .about_s3__cards {
    width: 100%;
  }

  .tmpl-about .about_s3__two .about_s3__card,
  .tmpl-about .about_s3__three .about_s3__card {
    width: 100%;
    max-width: 100%;
    padding: 24px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    gap: 20px;
    align-items: center;
    min-height: auto;
    box-sizing: border-box;
  }

  .tmpl-about .about_s3__two .about_s3__card-top,
  .tmpl-about .about_s3__three .about_s3__card-top {
    width: 100%;
    align-items: center;
    gap: 16px;
  }

  .tmpl-about .about_s3__two .about_s3__card-title,
  .tmpl-about .about_s3__three .about_s3__card-title {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    margin: 0;
  }

  .tmpl-about .about_s3__two .about_s3__card-bottom,
  .tmpl-about .about_s3__three .about_s3__card-bottom {
    width: 100%;
    box-sizing: border-box;
    border-radius: 0 0 20px 20px;
    padding: 16px 20px;
    min-height: 52px;
    font-size: 14px;
  }

  .tmpl-about .about_s3__two .about_s3__price,
  .tmpl-about .about_s3__three .about_s3__price {
    font-size: 14px;
  }

  .tmpl-about .about_s3__note {
    font-size: 12px;
  }

  /* ------------------------------------------------------------------
       S4 – Pricing sub-section
       ------------------------------------------------------------------ */
  .tmpl-about .about_s4__pricing {
    padding: 32px 0 42px;
  }

  .tmpl-about .about_s4__pricing-inner {
    gap: 10px;
    max-width: 320px;
  }

  .tmpl-about .about_s4__header {
    width: 252px;
    gap: 8px;
  }

  .tmpl-about .about_s4__title-mark {
    width: 252px;
    height: 26px;
  }

  .tmpl-about .about_s4__title {
    font-size: 13px;
    font-weight: 600;
  }

  .tmpl-about .about_s4__subtitle {
    font-size: 12px;
  }

  .tmpl-about .about_s4__desc {
    font-size: 12px;
  }

  .tmpl-about .about_s4__reviews .about_s4__desc {
    align-self: stretch;
    width: min(300px, 100%);
    max-width: 300px;
    margin: 0 auto;
    color: #000;
    font-family: var(--ab-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    white-space: normal;
  }

  .tmpl-about .about_s4__bar {
    height: 32px;
    font-size: 13px;
    font-weight: 600;
  }

  /* 網路+第四台：固定兩欄兩列（與原行動版一致）；對話框改為欄寬內 100% 以適配 320px 內寬） */
  .tmpl-about .about_s4__offers {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    row-gap: 16px;
    width: 100%;
    justify-items: center;
    align-items: start;
  }

  .tmpl-about .about_s4__offer {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .tmpl-about .about_s4__offer-ball {
    width: 109px;
    height: 109px;
    padding: 0;
    gap: 10px;
  }

  .tmpl-about .about_s4__offer-pill {
    width: 70px;
    height: 22px;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 400;
  }

  .tmpl-about .about_s4__offer-price {
    font-size: 12px;
    font-weight: 400;
  }

  /* 行動裝置：對話框 SVG 隨欄寬縮放（設計寬 171px），文字落在下方圓角白底區 */
  .tmpl-about .about_s4__offer-caption {
    position: relative;
    margin-top: -26px;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .tmpl-about .about_s4__offer-caption__shape--desktop {
    display: none;
  }

  .tmpl-about .about_s4__offer-caption__shape--mobile {
    display: block;
    width: 115%;
    max-width: 200px;
    height: auto;
  }

  .tmpl-about .about_s4__offer-caption p {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0;
    transform: translateY(-50%);
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    color: var(--ab-black);
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
    z-index: 1;
  }

  /* ------------------------------------------------------------------
       S4 – Reviews sub-section
       ------------------------------------------------------------------ */
  .tmpl-about .about_s4__reviews {
    padding: 24px 0;
    overflow: visible;
  }

  .tmpl-about .about_s4__reviews-bg {
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-position: center;
    background-size: cover;
    opacity: 0.18;
  }

  .tmpl-about .about_s4__reviews-inner {
    gap: 24px;
    max-width: none;
    width: 100%;
    padding: 0;
  }

  .tmpl-about .about_s4__highlights {
    --about-s4-mobile-gap: 28px;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--about-s4-mobile-gap);
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 14px 16px 10px;
    background: transparent;
    border: 0;
    box-shadow: none;
    box-sizing: border-box;
  }

  .tmpl-about .about_s4__highlights::-webkit-scrollbar {
    display: none;
  }

  .tmpl-about .about_s4__highlight {
    width: 100%;
    max-width: 109px;
    flex-shrink: 0;
    gap: 11px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .tmpl-about .about_s4__highlights-spacer {
    flex-shrink: 0;
    width: calc(50% - 109px / 2 - var(--about-s4-mobile-gap));
    min-width: calc(50% - 109px / 2 - var(--about-s4-mobile-gap));
  }

  .tmpl-about .about_s4__dot {
    display: none;
  }

  .tmpl-about .about_s4__bubble {
    width: 100%;
    max-width: 109px;
    aspect-ratio: 1 / 1;
    height: auto;
    margin-top: 0;
    overflow: visible;
    position: relative;
  }

  .tmpl-about .about_s4__bubble-glow {
    display: block;
    position: absolute;
    top: 18px;
    left: 14px;
    width: 72px;
    height: 72px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
    opacity: 0.95;
  }

  .tmpl-about .about_s4__bubble-inner {
    display: flex;
    width: 100%;
    height: 100%;
    padding: 0 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5.495px;
    box-sizing: border-box;
    color: var(--0001, #e6433e);
    font-family: var(--ab-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
  }

  .tmpl-about .about_s4__bubble::before {
    content: none;
  }

  .tmpl-about .about_s4__highlight p {
    width: 100%;
    max-width: 100%;
    min-height: 21.863px;
    color: #000;
    text-align: center;
    font-family: var(--ab-font);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.25;
    height: auto;
  }

  .tmpl-about .about_s4__highlights-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: -2px;
  }

  .tmpl-about .about_s4__highlights-dot {
    width: 6px;
    height: 6px;
    border: 1px solid #e6433e;
    border-radius: 50%;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition:
      background-color 0.2s ease,
      transform 0.2s ease;
  }

  .tmpl-about .about_s4__highlights-dot.is-active,
  .tmpl-about .about_s4__highlights-dot[aria-current="true"] {
    background: #e6433e;
    transform: scale(1.05);
  }

  /* ------------------------------------------------------------------
       S5 – 實績案例
       ------------------------------------------------------------------ */
  .tmpl-about .about_s5_trackrecord {
    padding: 24px 0;
  }

  .tmpl-about .about_s5_trackrecord__inner,
  .tmpl-about .about_s6_Testimonials__inner,
  .tmpl-about .about_s7_qa__inner {
    width: 100%;
    box-sizing: border-box;
  }

  .tmpl-about .about_s5_trackrecord__inner {
    gap: 12px;
  }

  .tmpl-about .about_s5_trackrecord__header,
  .tmpl-about .about_s6_Testimonials__header,
  .tmpl-about .about_s7_qa__header {
    gap: 8px;
    width: 100%;
  }

  .tmpl-about .about_s5_trackrecord__title-bar,
  .tmpl-about .about_s6_Testimonials__title-bar,
  .tmpl-about .about_s7_qa__title-bar {
    width: 10px;
    height: 20px;
  }

  .tmpl-about .about_s5_trackrecord__title,
  .tmpl-about .about_s6_Testimonials__title,
  .tmpl-about .about_s7_qa__title {
    font-size: 13px;
    font-weight: 600;
    margin: 0 8px 0 4px;
  }

  .tmpl-about .about_s5_trackrecord__title-line,
  .tmpl-about .about_s6_Testimonials__title-line,
  .tmpl-about .about_s7_qa__title-line {
    min-width: 20px;
  }

  .tmpl-about .about_s5_trackrecord__toggle,
  .tmpl-about .about_s6_Testimonials__toggle,
  .tmpl-about .about_s7_qa__toggle {
    height: auto;
    min-height: 28px;
    width: auto;
    min-width: 72px;
    font-size: 12px;
    padding: 6px 14px;
    border: none;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(230, 67, 62, 0.28);
    -webkit-appearance: none;
    appearance: none;
  }

  .tmpl-about .about_s5_trackrecord__card {
    padding: 12px;
    gap: 8px;
    border-radius: 8px;
    background: var(--ab-white);
    box-shadow: none;
    border: none;
    height: auto;
  }

  .tmpl-about .about_s5_trackrecord__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .tmpl-about .about_s5_trackrecord__thumb {
    aspect-ratio: 1 / 1;
    height: auto;
    border-radius: 8px;
  }

  .tmpl-about .about_s5_trackrecord__caption {
    font-size: 10px;
    line-height: 14.4px;
  }

  /* ------------------------------------------------------------------
       S6 – 好評推薦
       ------------------------------------------------------------------ */
  .tmpl-about .about_s6_Testimonials {
    padding: 24px 0;
  }

  .tmpl-about .about_s6_Testimonials__inner {
    gap: 12px;
  }

  .tmpl-about .about_s6_Testimonials__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .tmpl-about .about_s6_Testimonials__card {
    padding: 12px;
    gap: 8px;
    border-radius: 8px;
  }

  .tmpl-about .about_s6_Testimonials__star {
    width: 25px;
    height: 25px;
  }

  .tmpl-about .about_s6_Testimonials__text {
    font-size: 10px;
    line-height: 14.4px;
  }

  .tmpl-about .about_s6_Testimonials__thumb {
    width: 20px;
    height: 20px;
    border-radius: 1px;
  }

  .tmpl-about .about_s6_Testimonials__avatar {
    width: 24px;
    height: 24px;
  }

  .tmpl-about .about_s6_Testimonials__name {
    font-size: 12px;
  }

  .tmpl-about .about_s6_Testimonials__meta {
    font-size: 8px;
  }

  .tmpl-about .about_s6_Testimonials__form-wrap {
    padding: 14px 17px;
    border-radius: 8px;
  }

  .tmpl-about .about_s6_Testimonials__form-title {
    font-size: 12px;
    text-align: center;
    margin-bottom: 12px;
  }

  .tmpl-about .about_s6_Testimonials__form {
    gap: 12px;
  }

  .tmpl-about .about_s6_Testimonials__label {
    font-size: 10px;
    gap: 4px;
    flex-direction: row;
    white-space: nowrap;
  }

  .tmpl-about .about_s6_Testimonials__row--2 {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .tmpl-about .about_s6_Testimonials__input {
    height: 15px;
    font-size: 10px;
    padding: 0 4px;
    border-radius: 2px;
    border-width: 0.5px;
  }

  .tmpl-about .about_s6_Testimonials__textarea {
    min-height: 43px;
    font-size: 10px;
    padding: 4px;
    border-radius: 2px;
    border-width: 0.5px;
  }

  .tmpl-about .about_s6_Testimonials__rating {
    margin-left: 4px;
  }

  .tmpl-about .about_s6_Testimonials__form-footer {
    flex-direction: row;
    align-items: center;
  }

  .tmpl-about .about_s6_Testimonials__upload-label {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    font-family: var(--ab-font);
    font-size: 10px;
    color: var(--ab-black);
  }

  .tmpl-about .about_s6_Testimonials__upload-icon {
    font-size: 14px;
  }

  .tmpl-about .about_s6_Testimonials__upload-text {
    font-size: 10px;
    font-weight: 400;
  }

  .tmpl-about .about_s6_Testimonials__submit {
    height: 24px;
    min-width: 48px;
    padding: 4px 12px;
    font-size: 10px;
    border-radius: 4px;
  }

  /* ------------------------------------------------------------------
       S7 – 常見問題
       ------------------------------------------------------------------ */
  .tmpl-about .about_s7_qa {
    padding: 24px 0;
  }

  .tmpl-about .about_s7_qa__inner {
    gap: 16px;
  }

  .tmpl-about .about_s7_qa__list {
    gap: 12px;
  }

  .tmpl-about .about_s7_qa__item {
    width: 100%;
    border: none;
    border-radius: 10px;
    box-shadow: 0 0 21px 0 rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
  }

  .tmpl-about .about_s7_qa__q {
    min-height: 40px;
    padding: 10px 16px;
    justify-content: space-between;
  }

  .tmpl-about .about_s7_qa__q-label {
    font-size: 14px;
    font-weight: 700;
  }

  .tmpl-about .about_s7_qa__q-spacer {
    display: block;
    flex: 1;
    height: 1px;
    background: #e0e0e0;
    margin: 0 12px;
  }

  .tmpl-about .about_s7_qa__q-plus {
    font-size: 16px;
  }

  .tmpl-about .about_s7_qa__a {
    padding: 0 16px 16px;
    font-size: 12px;
    line-height: 1.6;
  }

  /* ------------------------------------------------------------------
       S8 – 延伸閱讀（行動版輪播：每頁 2 張卡片）
       ------------------------------------------------------------------ */
  .tmpl-about .about_s8_readmore {
    padding: 24px 0;
  }

  .tmpl-about .about_s8_readmore__inner {
    gap: 16px;
    align-items: center;
  }

  .tmpl-about .about_s8_readmore__title {
    box-sizing: border-box;
    width: 108px;
    height: 30px;
    padding: 0;
    color: #000;
    font-family: Inter, "Noto Sans TC", "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-image: url("../img/common/延伸閱讀標題背景.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 108px 30px;
  }

  .tmpl-about .about_s8_readmore__title-text {
    display: inline-block;
    transform: translateY(-0.1rem);
  }

  .tmpl-about .about_s8_readmore__cards {
    padding: 20px 20px 30px;
    margin: -20px -20px -30px;
  }

  .tmpl-about .about_s8_readmore__thumb {
    aspect-ratio: auto;
    height: 79px;
    border-radius: 0;
  }

  .tmpl-about .about_s8_readmore__card {
    border-radius: 0;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    height: auto;
  }

  .tmpl-about .about_s8_readmore__body {
    padding: 8px 8px 12px;
    gap: 8px;
  }

  .tmpl-about .about_s8_readmore__heading {
    font-size: 12px;
  }

  .tmpl-about .about_s8_readmore__date {
    font-size: 8px;
  }

  .tmpl-about .about_s8_readmore__excerpt {
    font-size: 10px;
    line-height: 1.5;
  }

  /* 延伸閱讀「查看更多」— Figma 581:776（Frame 73×16、輔助文字 10/400/14.4、圓角 52.165、漸層同 MCP） */
  .tmpl-about .about_s8_readmore__btn {
    display: flex;
    box-sizing: border-box;
    width: 73px;
    height: 16px;
    min-height: 16px;
    padding: 0;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0 auto;
    border-radius: 52.165px;
    background:
      linear-gradient(to bottom right, #ffe1e0 0%, #e6433e 50%) bottom right /
        51% 51% no-repeat,
      linear-gradient(to bottom left, #ffe1e0 0%, #e6433e 50%) bottom left / 51%
        51% no-repeat,
      linear-gradient(to top left, #ffe1e0 0%, #e6433e 50%) top left / 51% 51%
        no-repeat,
      linear-gradient(to top right, #ffe1e0 0%, #e6433e 50%) top right / 51% 51%
        no-repeat;
    color: #000;
    font-family: Inter, var(--ab-font);
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 14.4px;
    text-decoration: none;
    box-shadow: none;
    align-self: center;
  }

  .tmpl-about .about_s8_readmore__btn:hover {
    transform: none;
    box-shadow: none;
  }

  .tmpl-about .about_s8_readmore__dots {
    gap: 6px;
    margin-top: 4px;
  }

  .tmpl-about .about_s8_readmore__dot {
    width: 6px;
    height: 6px;
    border: 1px solid #e6433e;
    padding: 0;
    cursor: pointer;
  }

  .tmpl-about .about_s8_readmore__more {
    height: 28px;
    min-width: 80px;
    padding: 0 12px;
    font-size: 12px;
    font-weight: 500;
    border-radius: 6px;
  }

  /* ------------------------------------------------------------------
       Shared CTA buttons (S2 / S3 / S4)
       ------------------------------------------------------------------ */
  .tmpl-about .about_s2__cta,
  .tmpl-about .about_s3__cta,
  .tmpl-about .about_s4__cta {
    width: 123px;
    height: 42px;
  }

  .tmpl-about .about_s4__reviews .about_s4__cta {
    display: none;
  }

  .tmpl-about .about_s2__cta span,
  .tmpl-about .about_s3__cta span,
  .tmpl-about .about_s4__cta span {
    font-size: 12px;
    position: relative;
    top: -0.5rem;
  }

  .tmpl-about .about_s2__cta img,
  .tmpl-about .about_s3__cta img,
  .tmpl-about .about_s4__cta img {
    width: 15px;
    height: 15px;
    position: relative;
    top: -0.5rem;
  }

  .tmpl-about .about_s6_Testimonials__consent {
    font-size: 8px;
  }

  .tmpl-about .about_s6_Testimonials__consent input {
    width: 13px;
    height: 13px;
  }
}

/* ==========================================================================
   全站區塊內文統一排版：電腦端與行動端（僅內文置左、行高 1.5；標題維持置中）
   ========================================================================== */
.tmpl-about .about_s1__subtitle,
.tmpl-about .about_s2__subtitle,
.tmpl-about .about_s3__subtitle,
.tmpl-about .about_s4__subtitle {
  text-align: left;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .tmpl-about .about_s2__header,
  .tmpl-about .about_s3__header,
  .tmpl-about .about_s4__header {
    margin-inline: -0.5rem;
    padding-inline: 0.5rem;
    box-sizing: content-box;
  }
  .tmpl-about .about_s1__subtitle,
  .tmpl-about .about_s2__subtitle,
  .tmpl-about .about_s3__subtitle,
  .tmpl-about .about_s4__subtitle {
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .tmpl-about .about_s1__subtitle,
  .tmpl-about .about_s2__subtitle,
  .tmpl-about .about_s3__subtitle,
  .tmpl-about .about_s4__subtitle {
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
  }
}

/* ==========================================================================
   修正：手機版 Header 置頂失效問題
   ========================================================================== */
@media (max-width: 768px) {
  /* 強制確保 .site-header 在 /about 頁面對齊全站標準並置頂 */
  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    background: #e6433e !important;
    width: 100% !important;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25) !important;
  }
}
