/* =========================
  Base
========================= */
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Noto Sans TC", sans-serif;
}

html {
  scroll-behavior: smooth;
}

section {
  border-top: 2px solid #fff;
}

section:first-of-type {
  border-top: none;
}

/* =========================
  全域變數
========================= */
:root{
  --cta-primary: #d8740b;
  --cta-primary-dark: #bc6308;
  --cta-text: #1f2937;
  --cta-text-light: #6b7280;
  --cta-line: #d9d9d9;
  --cta-white: rgba(255,255,255,0.92);
  --cta-white-soft: rgba(255,255,255,0.86);
  --cta-radius: 24px;
  --cta-shadow: 0 16px 34px rgba(0, 0, 0, 0.06);
  --cta-shadow-soft: 0 10px 28px rgba(0, 0, 0, 0.04);
  --cta-container: 1380px;
  --cta-gutter: 24px;
}

/* 共用 container */
.container{
  width: min(100%, var(--cta-container));
  margin: 0 auto;
  padding-left: var(--cta-gutter);
  padding-right: var(--cta-gutter);
}

/* CTA 按鈕基礎 */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  font-family: inherit;
  font-weight: 800;
}

.btn-primary{
  background: var(--cta-primary);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(216, 116, 11, 0.22);
}

.btn-primary:hover{
  background: var(--cta-primary-dark);
  transform: translateY(-1px);
}

.btn-lg{
  min-height: 52px;
  padding: 0 22px;
  font-size: 18px;
  letter-spacing: 0.02em;
}

.w-full{
  width: 100%;
}

/* =========================
  Hero
========================= */
.hero {
  position: relative;
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: flex-start;   /* 改成靠上 */
  overflow: hidden;
}

/* 背景 */
.hero__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background: url('../images/hospitality/banner.png') center/cover no-repeat; /* 🔧可修改 */
}

/* 彎曲線 */
.hero__curve {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

/* 左側 */
.hero__content {
  width: 40%;
  padding: 8px 48px 60px 48px;   /* 上方縮小，左右維持 */
  position: relative;
  z-index: 2;
}

.hero__title {
  margin: 0;
  font-size: 54px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #12264d;
}

/* =========================
  Hero slogan
========================= */
.hero__slogan {
  margin-top: 160px;
}

.hero__slogan-top {
  font-size: 34px;         /* 【可修改】桌機大小 */
  font-weight: 700;
  line-height: 1.3;
  color: #5f7590;
  letter-spacing: 0.02em;
}

.hero__slogan-bottom {
  margin-top: 6px;
  font-size: 48px;         /* 【可修改】桌機大小 */
  font-weight: 800;
  line-height: 1.2;
  color: #5f7590;
  letter-spacing: 0.01em;
}

.hero__highlight-word {
  color: #e6805b;          /* 只有「直送」變色 */
  margin-right: 4px;
}

.hero__desc {
  margin-top: 100px;
  line-height: 1.8;
  font-size: 20px;
}

/* scroll */
.scroll-down {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #d98263;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
  text-align: center;
  z-index: 3;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.scroll-down span {
  display: block;
}

.scroll-down span:last-child {
  font-size: 18px;
  line-height: 1;
}


/* =========================
  右側浮動按鈕
========================= */
.side-buttons {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 10px;
  z-index: 2000;
}

.side-btn {
  width: 48px;
  height: 138px;
  padding: 0; /* 改掉上下 padding，避免視覺偏上 */
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  color: #1f2d3d;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* 關鍵：內容垂直置中 */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  overflow: hidden;
  gap: 8px; /* 用 gap 取代 margin-bottom，置中更穩 */
}

.side-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}

.side-btn__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0; /* 拿掉，用父層 gap 控制 */
}

.side-btn__icon i {
  color: #fff;
  font-size: 16px;
  line-height: 1;
}

.side-btn__text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 16px;         /* 【修正 7】文字縮小 */
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.04em;
  color: #22324a;
}

/* 各按鈕 icon 圓底色 */
.side-btn--consult .side-btn__icon {
  background: #D77C5D;
}

.side-btn--plan .side-btn__icon {
  background: #001A72;
}

.side-btn--line .side-btn__icon {
  background: #7CC44F;
}

.side-btn {
  width: 48px;
  height: 170px;
}

/* =========================
  Section 2｜產業痛點 vs 解決方案
========================= */
.compare-section {
  background: #f5f5f3;
  padding: 96px 24px 84px;
}

.compare-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 標題 */
.compare-section__heading {
  text-align: center;
  margin-bottom: 56px;
}

.compare-section__accent {
  display: block;
  width: 140px;
  height: 6px;
  margin: 0 auto 18px;
  background: #d77c5d;
  border-radius: 999px;
}

.compare-section__title {
  margin: 0;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.18;
  color: #111;
  letter-spacing: -0.03em;
}

/* 雙欄 */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  align-items: stretch;
  max-width: 1180px;
  margin: 0 auto;
}

.compare-card {
  padding: 0 28px 24px;
  color: #fff;
}

.compare-card--pain {
  background: #c91b1b;
}

.compare-card--solution {
  background: #5a9f80;
}

.compare-card__head {
  text-align: center;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  padding: 18px 0 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

/* 清單 */
.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.compare-list__item {
  position: relative;
  padding: 20px 8px 20px 30px;
  font-size: 17px;
  line-height: 1.7;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.compare-list__item::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 31px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid #f5dc88;
}

/* 底部 */
.compare-section__footer {
  text-align: center;
  margin-top: 34px;
}

.compare-section__statement {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.25;
  color: #111;
  letter-spacing: -0.02em;
}

.compare-section__statement-line {
  display: block;
  width: 96px;
  height: 5px;
  border-radius: 999px;
  background: #d77c5d;
  margin: 10px auto 28px;
}

.compare-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1d5c96;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.compare-section__cta-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d91f26;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.compare-section__cta-icon i {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/* =========================
  Hover 效果（重點）
========================= */
.compare-section__cta:hover {
  background: #d91f26;        /* 整顆變紅 */
  border-color: #d91f26;
  color: #fff;                /* 文字變白 */
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(217, 31, 38, 0.25);
}

/* icon 跟著變 */
.compare-section__cta:hover .compare-section__cta-icon {
  background: #fff;
}

.compare-section__cta:hover .compare-section__cta-icon i {
  color: #d91f26;
}

/* =========================
  Section 3｜人才培養體系
========================= */
.talent-system-section {
  background: #eef1f1;
  padding: 88px 24px 96px;
}

#talent-system {
  scroll-margin-top: 110px;
}

.talent-system-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 標題區 */
.talent-system-section__heading {
  max-width: 1300px;
  margin: 0 auto 52px;
}

.talent-system-section__title {
  margin: 0;
  max-width: 1300px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #12264d;
}

.talent-system-section__subtitle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 24px;
  max-width: 980px;
}

.talent-system-section__subtitle-line {
  width: 4px;
  min-width: 4px;
  height: 44px;
  background: #6f88a6;
  border-radius: 999px;
  margin-top: 4px;
}

.talent-system-section__subtitle-text {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.55;
  color: #1f73ae;
}

/* 三欄流程 */
.talent-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr) 48px minmax(0, 1fr);
  align-items: stretch;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto;
}

.talent-flow__item {
  min-width: 0;
  display: flex;
}

.talent-flow__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}

.talent-flow__arrow-icon {
  width: 30px;
  height: auto;
  display: block;
}

/* 卡片 */
.talent-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.75) inset;
  overflow: visible;
}

.talent-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 24px 22px 26px;
}

/* icon 白色圓底 */
.talent-card__icon-wrap {
  position: absolute;
  top: -24px;
  left: -14px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.talent-card__icon {
  width: 100px;
  height: auto;
  display: block;
}

/* 標題固定高度，讓三張卡對齊 */
.talent-card__title {
  margin: 0 0 14px 50px;
  min-height: 74px;
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.4;
  color: #111;
  word-break: break-word;
}

.talent-card__divider {
  margin: 0 0 16px;
  border-top: 2px dotted #cfcfcf;
}

.talent-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  line-height: 1.9;
  color: #222;
  word-break: break-word;
}

.talent-card__content p {
  margin: 0 0 10px;
}

.talent-card__content p:last-child {
  margin-bottom: 0;
}

.talent-card__content ul {
  margin: 0;
  padding-left: 1.2em;
}

.talent-card__content li {
  margin-bottom: 8px;
}

.talent-card__content li:last-child {
  margin-bottom: 0;
}

/* 底部紅字備註固定靠底 */
.talent-card__note {
  display: inline-block;
  margin-top: auto;
  padding-top: 14px;
  color: #d63f2f;
  font-weight: 700;
  line-height: 1.75;
}

/* 底部標語 */
.talent-system-section__footer {
  text-align: center;
  margin-top: 54px;
}

.talent-system-section__statement {
  max-width: 980px;
  margin: 0 auto;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  color: #111;
  letter-spacing: -0.01em;
}

.talent-system-section__statement-line {
  display: block;
  width: 144px;
  height: 5px;
  margin: 14px auto 0;
  background: #d98055;
  border-radius: 999px;
}

/* =========================
  Section 4｜可導入職務
========================= */
.hospitality-section {
  position: relative;
  overflow: hidden;
  background: #eef1f1;
  padding: 40px 24px 96px;
}

.hospitality-section__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hospitality/bg-hospitality.png") center center / cover no-repeat;
  opacity: 0.2; /* 【重點】底圖透明度，避免過亮 */
  pointer-events: none;
  z-index: 0;
}

.hospitality-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

/* 標題 */
.hospitality-section__heading {
  text-align: center;
  margin-bottom: 56px;
}

.hospitality-section__title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #12264d;
}

.hospitality-section__title-line {
  display: block;
  width: 410px;
  max-width: 78%;
  height: 3px;
  margin: 16px auto 0;
  background: rgba(18, 38, 77, 0.28);
  border-radius: 999px;
}

/* 卡片排列：桌機 3 欄 */
.hospitality-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 64px 72px;
  align-items: stretch;
}

/* 卡片 */
.hospitality-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(78, 151, 144, 0.45);
  border-top-right-radius: 0;     /* 右上直角 */
  border-top-left-radius: 0;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
  overflow: visible;
  min-height: 150px;
  box-shadow: 0 2px 0 rgba(255, 255, 255, 0.75) inset;
}

/* 上方標籤 */
.hospitality-card__label {
  position: absolute;
  top: 0;
  right: 0; 
  background: #155a7c;
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  padding: 10px 18px 9px;
  border-top-right-radius: 0;  /* 右上直角 */
  border-bottom-left-radius: 6px;
  z-index: 2;
}

/* icon 同第三區塊：左上角，1/4 在卡片內 */
.hospitality-card__icon-wrap {
  position: absolute;
  top: -24px;
  left: -14px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
}

.hospitality-card__icon {
  width: 100px;
  height: auto;
  display: block;
}

/* 內容 */
.hospitality-card__body {
  padding: 70px 18px 18px 22px;
  font-size: 16px;
  line-height: 1.85;
  color: #222;
}

.hospitality-card__body p {
  margin: 0 0 4px;
}

.hospitality-card__body p:last-child {
  margin-bottom: 0;
}

/* 結尾 */
.hospitality-section__footer {
  text-align: center;
  margin-top: 48px;
}

.hospitality-section__statement {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  color: #111;
}

.hospitality-section__statement-line {
  display: block;
  width: 146px;
  height: 5px;
  margin: 14px auto 26px;
  background: #d98055;
  border-radius: 999px;
}

.hospitality-section__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #1d5c96;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
}

.hospitality-section__cta-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #d91f26;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hospitality-section__cta-icon i {
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/* =========================
  Section 5｜服務效益
========================= */
.benefit-section {
  background: #eef1f1;
  padding: 50px 24px 96px;
}

.benefit-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.benefit-section__heading {
  max-width: 980px;
  margin-bottom: 42px;
}

.benefit-section__title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: #12264d;
}

.benefit-section__title-line {
  display: block;
  width: 340px;
  max-width: 70%;
  height: 2px;
  margin: 14px 0 16px;
  background: rgba(18, 38, 77, 0.26);
}

.benefit-section__subtitle {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5;
  color: #6a84a4;
}

/* 卡片排列 */
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 26px;
  align-items: stretch;
}

.benefit-card {
  width: 320px;     /* 固定卡片寬度 */
  flex: 0 0 320px;  /* 不讓第4、5張被縮小 */
}

.benefit-card__inner {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  min-height: 100%;
  padding: 20px 18px 18px;   /* 縮小 */
  transform-origin: left center;
  backface-visibility: hidden;
  transition: transform 0.7s ease, opacity 0.7s ease, box-shadow 0.3s ease;
}

/* 左上角三角遮罩 */
.benefit-card__triangle {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-top: 34px solid #E7F0EE;
  border-right: 34px solid transparent;
  z-index: 2;
}

/* 圖片 */
.benefit-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;   /* 縮小 */
  margin-bottom: 8px;
}

.benefit-card__image {
  max-width: 100%;
  width: 160px;        /* 縮小 */
  height: auto;
  display: block;
}

.benefit-card__title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.3;
  color: #111;
  text-align: center;
}

.benefit-card__desc {
  margin: 10px 0 0;
  font-size: 15px;
  line-height: 1.6;
  color: #222;
  text-align: center;
}



/* 初始翻開前狀態 */
.reveal-card .benefit-card__inner {
  opacity: 0;
  transform: rotateY(-88deg) translateX(-24px);
}

/* 進場後 */
.reveal-card.is-visible .benefit-card__inner {
  opacity: 1;
  transform: rotateY(0deg) translateX(0);
}

/* hover 微效果 */
.benefit-card:hover .benefit-card__inner {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

/* =========================
  Section 6｜導入流程
========================= */
.process-section {
  position: relative;
  overflow: hidden;
  background: #eef1f1;
  padding: 40px 24px 96px;
}

.process-section__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hospitality/bg-process.png") center center / cover no-repeat;
  opacity: 0.4; /* figma 40% */
  pointer-events: none;
  z-index: 0;
}

.process-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
}

/* 標題 */
.process-section__heading {
  text-align: center;
  margin-bottom: 48px;
}

.process-section__title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #12264d;
}

.process-section__title-line {
  display: block;
  width: 330px;
  max-width: 70%;
  height: 2px;
  margin: 10px auto 0;
  background: rgba(18, 38, 77, 0.28);
}

/* 桌機流程：3張 + 轉向 + 3張 */
.process-flow {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr;
  grid-template-areas:
  "card1 arrow1 card2 arrow2 card3"
  ". . . . turn"
  "card6 arrow5 card5 arrow4 card4";
  align-items: center;
  gap: 22px 18px;
}

.process-arrow--turn {
  justify-self: center;
  align-self: center;   
  transform: translateY(-6px);
}

.process-flow > .process-card--step1 { grid-area: card1; }
.process-flow > .process-card--step2 { grid-area: card2; }
.process-flow > .process-card--step3 { grid-area: card3; }
.process-flow > .process-card--step4 { grid-area: card4; }
.process-flow > .process-card--step5 { grid-area: card5; }
.process-flow > .process-card--step6 { grid-area: card6; }

.process-flow > .process-arrow--step1 { grid-area: arrow1; }
.process-flow > .process-arrow--step2 { grid-area: arrow2; }
.process-flow > .process-arrow--turn  { grid-area: turn; }
.process-flow > .process-arrow--step4 { grid-area: arrow4; }
.process-flow > .process-arrow--step5 { grid-area: arrow5; }

/* 手機版預設隱藏 */
.process-flow-mobile {
  display: none;
}

/* 卡片 */
.process-card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 240px; 
  margin: 0 auto; 
}

/* 上半部 2/3 */
.process-card__top {
  flex: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px 10px;
  color: #fff;
}

/* 下半部 1/3 */
.process-card__bottom {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
  padding: 12px 12px 14px;
}

.process-card__icon-wrap {
  width: 100px;
  height: 100px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-card__icon {
  width: 90px;
  height: auto;
  display: block;
}

.process-card__step {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
}

.process-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  color: #111;
}

.process-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: #222;
}

/* 每張卡顏色 */
.process-card--step1 .process-card__top { background: #4f88ca; }
.process-card--step2 .process-card__top { background: #22b7b1; }
.process-card--step3 .process-card__top { background: #5dbd61; }
.process-card--step4 .process-card__top { background: #b8ca39; }
.process-card--step5 .process-card__top { background: #7aaadd; }
.process-card--step6 .process-card__top { background: #3f8d94; }

/* 箭頭 */
.process-arrow {
  position: relative;
  width: 52px;
  height: 52px;
  justify-self: center;
  align-self: center;
  opacity: 0.9;
}

.process-card:hover + .process-arrow {
  transform: scale(1.1);
}

.process-arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
}

/* 右箭頭 */
.process-arrow--right::before {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 22px solid currentColor;
  left: 10px;
}

/* 左箭頭 */
.process-arrow--left::before {
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-right: 22px solid currentColor;
  right: 10px;
}

/* 下箭頭 */
.process-arrow--down::before {
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 22px solid currentColor;
  top: 10px;
}

/* 箭頭顏色 = 上一張卡片顏色 */
.process-arrow--step1 { color: #4f88ca; }
.process-arrow--step2 { color: #22b7b1; }
.process-arrow--step3 { color: #5dbd61; }
.process-arrow--step4 { color: #b8ca39; }
.process-arrow--step5 { color: #7aaadd; }

/* 結尾 */
.process-section__footer {
  text-align: center;
  margin-top: 42px;
}

.process-section__statement {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.55;
  color: #111;
}

.process-section__statement-line {
  display: block;
  width: 120px;
  height: 5px;
  margin: 12px auto 0;
  background: #d98055;
  border-radius: 999px;
}
/* 卡片浮起感 */
#process-section.is-animated .process-reveal.is-visible .process-card {
  animation: processCardLift 0.65s ease 1;
}

/* 桌機 hover 小互動 */
@media (hover: hover) and (pointer: fine) {
  .process-card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.16);
  }
}

/* 動畫 keyframes */
@keyframes processShine {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes processArrowPulse {
  0% {
    transform: scale(0.72);
    opacity: 0.35;
  }
  45% {
    transform: scale(1.18);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes processCardLift {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* =========================
  Section 7｜系統化管理
========================= */
.system-section {
  position: relative;
  overflow: hidden;
  background: #eef1f1;
  padding: 40px 24px 60px;
}

.system-section__bg {
  position: absolute;
  inset: 0;
  background: url("../images/hospitality/bg-system.png") center center / cover no-repeat;
  opacity: 0.2; /* figma 20% */
  pointer-events: none;
  z-index: 0;
}

.system-section__inner {
  position: relative;
  z-index: 1;
  max-width: 1600px;
  margin: 0 auto;
}

/* 標題 */
.system-section__heading {
  max-width: 420px;
  margin-bottom: 34px;
}

.system-section__title {
  margin: 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #12264d;
}

.system-section__title-line {
  display: block;
  width: 180px;
  height: 2px;
  margin-top: 12px;
  background: rgba(18, 38, 77, 0.28);
}

/* 卡片排列 */
.system-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

/* 卡片 */
.system-card {
  position: relative;
  width: 100%;
  max-width: 500px;  /* 不要太寬 */
  min-height: 190px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(18, 38, 77, 0.08);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

/* 圖片區 */
.system-card__image-wrap {
  padding: 12px 12px 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
}

.system-card__image {
  max-width: 100%;
  width: 450px;
  height: auto;
  display: block;
  opacity: 0.6; /* 圖片透明，避免太清晰 */
}

/* 右下角標籤 */
.system-card__label {
  position: absolute;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #111;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  padding: 10px 14px 9px;
  border-top-left-radius: 8px;
  text-align: center;
  box-shadow: -2px -2px 10px rgba(0, 0, 0, 0.04);
}

/* 結尾 */
.system-section__footer {
  text-align: center;
  margin-top: 42px;
}

.system-section__statement {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.45;
  color: #111;
}

.system-section__statement-line {
  display: block;
  width: 122px;
  height: 5px;
  margin: 12px auto 0;
  background: #d98055;
  border-radius: 999px;
}

/* =========================
  Section 8｜FAQ
========================= */
.faq-section {
  background: #eef1f1;
  padding: 40px 24px 70px;
}

.faq-section__inner {
  max-width: 920px; /* 桌機版不要太寬 */
  margin: 0 auto;
}

.faq-section__heading {
  margin-bottom: 28px;
}

.faq-section__title {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: rgba(18, 38, 77, 0.14);
}

/* FAQ list */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 6px;
  overflow: hidden;
}

/* 問題列 */
.faq-item__question {
  width: 100%;
  border: none;
  background: transparent;
  padding: 18px 18px 18px 18px;
  display: grid;
  grid-template-columns: 58px 1fr 26px;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.faq-item__qno {
  font-size: 22px;
  font-weight: 800;
  color: #dd7f52;
  line-height: 1;
}

.faq-item__qtext {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.45;
  color: #111;
}

.faq-item__icon {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: #dd7f52;
  text-align: right;
}

/* 答案區 */
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item__answer-inner {
  display: grid;
  grid-template-columns: 58px 1fr; 
  gap: 14px;
  padding: 0 18px 18px 18px;
}

.faq-item__ano {
  font-size: 34px;
  font-weight: 900;
  color: #dd7f52;
  display: flex;
  align-items: flex-start; 
}

.faq-item__atext {
  font-size: 18px;
  line-height: 1.8;
  color: #222;
}

/* 展開狀態 */
.faq-item.is-open .faq-item__question {
  padding-bottom: 10px;
}

.faq-item.is-open .faq-item__icon {
  font-size: 30px;
}

/* hover */
@media (hover: hover) and (pointer: fine) {
  .faq-item__question:hover .faq-item__qtext {
    color: #12264d;
  }
}

/* =========================
   CTA 區塊
========================= */
/* 外層區塊 */
.section-cta{
  position: relative;
  padding: 88px 0;
  overflow: hidden;
  background: #f7f7f7;
}

/* 背景圖層 */
.section-cta .section-bg{
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: 0;
}

/* 內容層 */
.section-cta > .container{
  position: relative;
  z-index: 2;
}

/* 左右雙欄 */
.cta-inner{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(460px, 620px);
  gap: 22px;
  align-items: start;
}

/* =========================
   左側利益卡
========================= */
.benefits{
  background: var(--cta-white-soft);
  border: 1px solid rgba(214, 180, 145, 0.55);
  border-radius: var(--cta-radius);
  padding: 26px 24px;
  box-shadow: var(--cta-shadow-soft);
  backdrop-filter: blur(2px);
}

.benefits-title{
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 900;
  color: #111827;
}

.benefits-list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.benefits-list li{
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #1f2937;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
}

.benefits-list .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cta-primary);
  flex: 0 0 auto;
  margin-top: 9px;
}

/* =========================
   右側表單卡
========================= */
.cta-box{
  background: var(--cta-white);
  border: 1px solid rgba(214, 180, 145, 0.75);
  border-radius: var(--cta-radius);
  padding: 24px 22px 20px;
  box-shadow: var(--cta-shadow);
  backdrop-filter: blur(3px);
}

.cta-title{
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 900;
  color: #1f2937;
}

/* =========================
   表單本體
========================= */
.contact-form{
  display: grid;
  gap: 12px;
}

.form-row{
  display: grid;
  gap: 6px;
}

.form-label{
  display: inline-block;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  color: #1f2937;
}

.form-input,
.form-select,
.contact-form textarea{
  width: 100%;
  border: 1px solid var(--cta-line);
  border-radius: 14px;
  background: rgba(255,255,255,0.94);
  color: #111827;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

/* input / select 高度 */
.form-input,
.form-select{
  height: 44px;
  padding: 0 14px;
}

/* textarea 備用 */
.contact-form textarea{
  min-height: 120px;
  padding: 12px 14px;
  resize: vertical;
}

.form-input::placeholder,
.form-select::placeholder,
.contact-form textarea::placeholder{
  color: #9ca3af;
}

.form-input:focus,
.form-select:focus,
.contact-form textarea:focus{
  border-color: rgba(216, 116, 11, 0.52);
  box-shadow: 0 0 0 4px rgba(216, 116, 11, 0.10);
  background: #fff;
}

/* select 箭頭美化 */
.form-select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #6b7280 50%),
    linear-gradient(135deg, #6b7280 50%, transparent 50%);
  background-position:
    calc(100% - 18px) calc(50% - 2px),
    calc(100% - 12px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}

/* 送出區 */
.form-actions{
  margin-top: 8px;
  display: grid;
  gap: 10px;
}

/* 送出後提示 */
.form-hint2{
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: #374151;
}

/* 【修改點】紅框那一塊的容器要能當定位基準 */
.form-lock-area{
    position: relative;
}

/* 【修改點】只覆蓋紅框區塊的 overlay */
.loading-overlay-local{
    position: absolute;
    inset: 0;               /* top:0 right:0 bottom:0 left:0 */
    background: rgba(255,255,255,0.85);
    z-index: 50;

    display: flex;
    align-items: center;
    justify-content: center;

    /* 鎖住區塊內所有點擊/輸入 */
    pointer-events: all;

    /* 如果紅框容器本身有圓角，這裡同步 */
    border-radius: 12px;    /* 依你卡片圓角調整 */
}

.loading-overlay-local .loading-text{
    font-size: 18px;
    font-weight: 700;
    color: #141a4f;
    letter-spacing: 1px;
}

/* =========================
  Large Tablet
========================= */
@media (max-width: 1400px) {
/* =========================
  Section 3｜人才培養體系
========================= */    
  .talent-system-section__title {
    font-size: 40px;
  }

  .talent-system-section__subtitle-text {
    font-size: 17px;
  }

  .talent-flow {
    grid-template-columns: minmax(0, 1fr) 40px minmax(0, 1fr) 40px minmax(0, 1fr);
    gap: 8px;
  }

  .talent-flow__arrow-icon {
    width: 26px;
  }

  .talent-card__body {
    padding: 22px 20px 20px 22px;
  }

  .talent-card__title {
    min-height: 78px;
    margin-left: 46px;
    font-size: 17px;
  }

  .talent-card__content {
    font-size: 14px;
    line-height: 1.85;
  }

  .talent-card__icon-wrap {
    width: 68px;
    height: 68px;
  }

  .talent-card__icon {
    width: 100px;
  }

/* =========================
  Section 4｜可導入職務
========================= */

  .hospitality-section__title {
    font-size: 42px;
  }

  .hospitality-grid {
    gap: 56px 32px;
  }

  .hospitality-card__label {
    margin-left: 98px;
    font-size: 20px;
    padding: 9px 16px 8px;
  }

  .hospitality-card__icon-wrap {
    width: 72px;
    height: 72px;
  }

  .hospitality-card__icon {
    width: 100px;
  }

  .hospitality-card__body {
    font-size: 15px;
    line-height: 1.8;
  }

/* =========================
  Section 5｜服務效益
========================= */
  .benefit-section__title {
    font-size: 42px;
  }

  .benefit-section__subtitle {
    font-size: 20px;
  }

  .benefit-grid {
    gap: 28px 22px;
  }

  .benefit-card__image-wrap {
    min-height: 150px;
  }

  .benefit-card__image {
    width: 180px;
  }

  .benefit-card__title {
    font-size: 20px;
  }

  .benefit-card__desc {
    font-size: 16px;
  }

/* =========================
  Section 6｜導入流程
========================= */
  .process-section__title {
    font-size: 40px;
  }

  .process-flow {
    gap: 18px 14px;
  }

  .process-card {
    min-height: 176px;
  }

  .process-card__icon-wrap {
    width: 90px;
    height: 90px;
  }

  .process-card__icon {
    width: 85px;
  }

/* =========================
  Section 7｜系統化管理
========================= */

  .system-section__title {
    font-size: 38px;
  }

  .system-card {
    max-width: 280px;
    min-height: 178px;
  }

  .system-card__image-wrap {
    min-height: 178px;
  }

  .system-card__image {
    width: 228px;
  }

}

/* =========================
  Tablet
========================= */
@media (max-width: 1024px) {

/* =========================
  Section 2｜產業痛點 vs 解決方案
========================= */   

  .compare-section {
    padding: 78px 20px 72px;
  }

  .compare-section__title {
    font-size: 42px;
  }

  .compare-card__head {
    font-size: 22px;
  }

  .compare-list__item {
    font-size: 16px;
    padding: 18px 8px 18px 28px;
  }

  .compare-section__statement {
    font-size: 24px;
  }

  .compare-section__cta {
    font-size: 19px;
  }

/* =========================
  Section 3｜人才培養體系
========================= */
  .talent-system-section {
    padding: 72px 20px 84px;
  }

  .talent-system-section__heading {
    margin-bottom: 40px;
  }

  .talent-system-section__title {
    font-size: 34px;
    line-height: 1.35;
  }

  .talent-system-section__subtitle {
    max-width: 100%;
    margin-top: 20px;
  }

  .talent-system-section__subtitle-text {
    font-size: 16px;
    line-height: 1.5;
  }

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

  .talent-flow__arrow {
    min-height: 32px;
  }

  .talent-flow__arrow-icon {
    width: 28px;
    transform: rotate(90deg);
  }

  .talent-card {
    height: auto;
  }

  .talent-card__body {
    padding: 22px 18px 20px 20px;
  }

  .talent-card__icon-wrap {
    width: 68px;
    height: 68px;
    top: -22px;
    left: -10px;
  }

  .talent-card__icon {
    width: 80px;
  }

  .talent-card__title {
    min-height: auto;
    margin: 0 0 12px 46px;
    font-size: 20px;
    line-height: 1.4;
  }

  .talent-card__content {
    flex: initial;
    font-size: 15px;
    line-height: 1.8;
  }

  .talent-card__note {
    margin-top: 10px;
    padding-top: 0;
  }

  .talent-system-section__footer {
    margin-top: 40px;
  }

  .talent-system-section__statement {
    font-size: 20px;
    line-height: 1.5;
  }

/* =========================
  Section 4｜可導入職務
========================= */
  .hospitality-section {
    padding: 72px 20px 84px;
  }

  .hospitality-section__title {
    font-size: 34px;
  }

  .hospitality-section__title-line {
    width: 280px;
  }

  .hospitality-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 52px 24px;
  }

  .hospitality-card {
    min-height: 170px;
  }

  .hospitality-card__label {
    margin-left: 94px;
    font-size: 18px;
  }

  .hospitality-section__statement {
    font-size: 20px;
  }

  .hospitality-section__cta {
    font-size: 18px;
  }

/* =========================
  Section 5｜服務效益
========================= */
  .benefit-section {
    padding: 72px 20px 84px;
  }

  .benefit-section__title {
    font-size: 36px;
  }

  .benefit-section__subtitle {
    font-size: 18px;
  }

  .benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
  }

  .benefit-card {
    width: auto;
    flex: initial;
  }

  .benefit-grid > .benefit-card:nth-child(4),
  .benefit-grid > .benefit-card:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
  }

  .benefit-card__inner {
    padding: 22px 20px 20px;
  }

/* =========================
  Section 6｜導入流程
========================= */
  .process-section {
    padding: 72px 20px 84px;
  }

  .process-section__title {
    font-size: 34px;
  }

  .process-flow {
    grid-template-columns: 1fr 42px 1fr 42px 1fr;
    gap: 18px 10px;
  }

  .process-arrow {
    width: 42px;
    height: 42px;
  }

  .process-arrow--right::before {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-left-width: 18px;
  }

  .process-arrow--left::before {
    border-top-width: 11px;
    border-bottom-width: 11px;
    border-right-width: 18px;
  }

  .process-arrow--down::before {
    border-left-width: 11px;
    border-right-width: 11px;
    border-top-width: 18px;
  }

  .process-card__title {
    font-size: 15px;
  }

  .process-card__desc {
    font-size: 13px;
  }

/* =========================
  Section 7｜系統化管理
========================= */
  .system-section {
    padding: 72px 20px 84px;
  }

  .system-section__title {
    font-size: 34px;
  }

  .system-grid {
    gap: 20px;
  }

  .system-card {
    max-width: 260px;
    min-height: 170px;
  }

  .system-card__image-wrap {
    min-height: 170px;
  }

  .system-card__image {
    width: 210px;
  }

  .system-card__label {
    font-size: 15px;
    padding: 9px 12px 8px;
  }

  .system-section__statement {
    font-size: 20px;
  }  

/* =========================
  Section 8｜FAQ
========================= */
  .faq-section {
    padding: 72px 20px 84px;
  }

  .faq-section__inner {
    max-width: 860px;
  }

  .faq-section__title {
    font-size: 56px;
  }

  .faq-item__qtext {
    font-size: 18px;
  }

  .faq-item__atext {
    font-size: 17px;
  }  

}

/* =========================
  Mobile
========================= */
@media (max-width: 768px) {

  body {
    padding-bottom: 96px;
  }
  
  .nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background: white;
    padding: 20px;
  }

  .nav.active {
    display: flex;
  }

  .menu-btn {
    display: block;
  }

  /* Hero */
  .hero {
    height: auto;
    min-height: calc(100vh - var(--header-height));
    padding: 92px 20px 88px;
    align-items: flex-start;
  }

  .hero__content {
    width: 100%;
    padding: 0;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    padding: 20px 18px 24px;
  }

  .hero__title {
    font-size: 34px;
    line-height: 1.08;
  }

  .hero__slogan {
    margin-top: 60px;
  }

  .hero__bg {
    width: 100%;
    opacity: 0.3;
  }

  .hero__slogan-top {
    font-size: 22px;       /* 【可修改】手機大小 */
    line-height: 1.35;
  }

  .hero__slogan-bottom {
    margin-top: 4px;
    font-size: 30px;       /* 【可修改】手機大小 */
    line-height: 1.25;
  }

  .scroll-down {
    width: 64px;
    height: 64px;
    bottom: 78px; /* 避開手機底部按鈕 */
    font-size: 12px;
  }

  .scroll-down span:last-child {
    font-size: 16px;
  }

  /* 右側按鈕 → 底部 */
  .side-buttons {
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    transform: none;
    flex-direction: row;
    align-items: stretch;
    gap: 0;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.08);
    padding: 6px;
    z-index: 2000;
  }

  .side-btn {
    flex: 1;
    width: auto;
    height: auto;
    min-height: auto;
    padding: 8px 6px;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
    border: none;
    justify-content: center;
    gap: 6px;
  }

  .side-btn:hover {
    transform: none;
    box-shadow: none;
  }

  .side-btn__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 0;
  }

  .side-btn__icon i {
    font-size: 15px;
  }

  .side-btn__text {
    writing-mode: initial;
    text-orientation: initial;
    font-size: 12px;
    letter-spacing: 0;
    text-align: center;
  }  

/* =========================
  Section 2｜產業痛點 vs 解決方案
========================= */   

  .compare-section {
    padding: 64px 16px 56px;
  }

  .compare-section__heading {
    margin-bottom: 32px;
  }

  .compare-section__accent {
    width: 92px;
    height: 5px;
    margin-bottom: 14px;
  }

  .compare-section__title {
    font-size: 30px;
    line-height: 1.28;
    letter-spacing: -0.02em;
  }

  .compare-grid {
    grid-template-columns: 1fr;   /* 手機改上下堆疊 */
    gap: 16px;
  }

  .compare-card {
    padding: 0 18px 14px;
    border-radius: 18px;
    overflow: hidden;
  }

  .compare-card__head {
    font-size: 20px;
    padding: 16px 0 12px;
  }

  .compare-list__item {
    font-size: 15px;
    line-height: 1.65;
    padding: 16px 4px 16px 26px;
  }

  .compare-list__item::before {
    left: 2px;
    top: 25px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 7px solid #f5dc88;
  }

  .compare-section__footer {
    margin-top: 26px;
  }

  .compare-section__statement {
    font-size: 22px;
    line-height: 1.35;
  }

  .compare-section__statement-line {
    width: 74px;
    height: 4px;
    margin: 10px auto 22px;
  }

  .compare-section__cta {
    gap: 10px;
    font-size: 17px;
    line-height: 1.5;
    justify-content: center;
    flex-wrap: wrap;
  }

  .compare-section__cta-icon {
    width: 24px;
    height: 24px;
  }

  .compare-section__cta-icon i {
    font-size: 16px;
  }

/* =========================
  Section 3｜人才培養體系
========================= */
  .talent-system-section {
    padding: 60px 16px 120px;
  }

  .talent-system-section__title {
    font-size: 28px;
    line-height: 1.4;
  }

  .talent-system-section__subtitle {
    gap: 12px;
    margin-top: 18px;
  }

  .talent-system-section__subtitle-line {
    height: 40px;
  }

  .talent-system-section__subtitle-text {
    font-size: 15px;
    line-height: 1.6;
  }

  .talent-card {
    border-radius: 18px;
  }

  .talent-card__body {
    padding: 20px 16px 18px 18px;
  }

  .talent-card__icon-wrap {
    width: 62px;
    height: 62px;
    top: -18px;
    left: -8px;
  }

  .talent-card__icon {
    width: 80px;
  }

  .talent-card__title {
    margin: 0 0 10px 40px;
    font-size: 17px;
    line-height: 1.45;
  }

  .talent-card__divider {
    margin-bottom: 12px;
  }

  .talent-card__content {
    font-size: 14px;
    line-height: 1.85;
  }

  .talent-system-section__footer {
    margin-top: 30px;
    padding: 0 6px;
  }

  .talent-system-section__statement {
    max-width: 100%;
    margin: 0 auto;
    padding: 18px 14px 14px;
    font-size: 15px;
    font-weight: 900;
    line-height: 1.7;
    letter-spacing: -0.01em;
    text-align: center;
    word-break: keep-all;
    overflow-wrap: break-word;
    background: rgba(255, 255, 255, 0.78);
    border-radius: 14px;
  }

  .talent-system-section__statement-line {
    width: 88px;
    height: 4px;
    margin: 12px auto 0;
  }

/* =========================
  Section 4｜可導入職務
========================= */
  .hospitality-section {
    padding: 60px 16px 120px;
  }

  .hospitality-section__bg {
    opacity: 0.14;
  }

  .hospitality-section__heading {
    margin-bottom: 34px;
  }

  .hospitality-section__title {
    font-size: 28px;
    line-height: 1.35;
  }

  .hospitality-section__title-line {
    width: 210px;
    margin-top: 12px;
  }

  /* 手機版一行 1 張 */
  .hospitality-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hospitality-card {
    min-height: auto;
  }

  .hospitality-card__icon-wrap {
    width: 66px;
    height: 66px;
    top: -20px;
    left: -8px;
  }

  .hospitality-card__icon {
    width: 60px;
  }

  .hospitality-card__label {
    margin-left: 72px;
    margin-top: 0px;
    font-size: 17px;
    padding: 8px 14px 7px;
  }

  .hospitality-card__body {
    padding: 46px 16px 16px 18px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hospitality-section__footer {
    margin-top: 36px;
    padding: 0 6px;
  }

  .hospitality-section__statement {
    font-size: 18px;
    line-height: 1.55;
  }

  .hospitality-section__statement-line {
    width: 108px;
    height: 4px;
    margin: 12px auto 20px;
  }

  .hospitality-section__cta {
    gap: 10px;
    font-size: 16px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .hospitality-section__cta-icon {
    width: 24px;
    height: 24px;
  }

  .hospitality-section__cta-icon i {
    font-size: 16px;
  }
/* =========================
  Section 5｜服務效益
========================= */
  .benefit-section {
    padding: 60px 16px 120px;
  }

  .benefit-section__heading {
    margin-bottom: 28px;
  }

  .benefit-section__title {
    font-size: 30px;
    line-height: 1.32;
  }

  .benefit-section__title-line {
    width: 200px;
    margin: 12px 0 14px;
  }

  .benefit-section__subtitle {
    font-size: 17px;
    line-height: 1.6;
  }

  /* 手機版一行 1 張 */
  .benefit-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .benefit-card {
    width: auto;
    flex: initial;
  }

  .benefit-grid > .benefit-card:nth-child(4),
  .benefit-grid > .benefit-card:nth-child(5) {
    grid-column: auto;
    justify-self: stretch;
  }

  .benefit-card__inner {
    padding: 20px 18px 18px;
    border-radius: 16px;
  }

  .benefit-card__triangle {
    border-top-width: 28px;
    border-right-width: 28px;
  }

  .benefit-card__image-wrap {
    min-height: 132px;
    margin-bottom: 8px;
  }

  .benefit-card__image {
    width: 150px;
  }

  .benefit-card__title {
    font-size: 19px;
    line-height: 1.35;
  }

  .benefit-card__desc {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.65;
  }

  .benefit-card:hover .benefit-card__inner {
    transform: none;
  }

/* =========================
  Section 6｜導入流程
========================= */
  .process-section {
    padding: 60px 16px 120px;
  }

  .process-section__bg {
    opacity: 0.3;
  }

  .process-section__heading {
    margin-bottom: 30px;
  }

  .process-section__title {
    font-size: 28px;
    line-height: 1.35;
  }

  .process-section__title-line {
    width: 210px;
  }

  /* 桌機版隱藏 */
  .process-flow {
    display: none;
  }

  /* 手機版顯示 */
  .process-flow-mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 360px;
    margin: 0 auto;
  }

  .process-flow-mobile .process-card {
    min-height: 170px;
  }

  .process-flow-mobile .process-arrow {
    width: 36px;
    height: 36px;
    align-self: center;
  }

  .process-flow-mobile .process-arrow--down::before {
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 16px;
  }

  .process-card__icon-wrap {
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
  }

  .process-card__icon {
    width: 75px;
  }

  .process-card__step {
    font-size: 18px;
  }

  .process-card__title {
    font-size: 18px;
  }

  .process-card__desc {
    font-size: 15px;
    line-height: 1.55;
  }

  .process-section__footer {
    margin-top: 32px;
    padding: 0 6px;
  }

  .process-section__statement {
    font-size: 17px;
    line-height: 1.6;
  }

  .process-section__statement-line {
    width: 100px;
    height: 4px;
  }

  .js-ready #process-section .process-reveal {
    transform: translateY(18px) scale(0.98);
  }

/* =========================
  Section 7｜系統化管理
========================= */
  .system-section {
    padding: 60px 16px 120px;
  }

  .system-section__bg {
    opacity: 0.18;
  }

  .system-section__heading {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .system-section__title {
    font-size: 28px;
    line-height: 1.3;
  }

  .system-section__title-line {
    width: 150px;
    margin-top: 10px;
  }

  .system-grid {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .system-card {
    max-width: 320px;
    min-height: 182px;
  }

  .system-card__image-wrap {
    min-height: 182px;
    padding: 12px 12px 42px;
  }

  .system-card__image {
    width: 240px;
    opacity: 0.58;
  }

  .system-card__label {
    font-size: 15px;
    padding: 9px 12px 8px;
  }

  .system-section__footer {
    margin-top: 32px;
    padding: 0 6px;
  }

  .system-section__statement {
    font-size: 18px;
    line-height: 1.55;
  }

  .system-section__statement-line {
    width: 104px;
    height: 4px;
  }

/* =========================
  Section 8｜FAQ
========================= */
  .faq-section {
    padding: 60px 16px 120px;
  }

  .faq-section__inner {
    max-width: 100%;
  }

  .faq-section__heading {
    margin-bottom: 20px;
  }

  .faq-section__title {
    font-size: 44px;
  }

  .faq-list {
    gap: 10px;
  }

  .faq-item__question {
    padding: 16px 14px;
    grid-template-columns: 44px 1fr 20px;
    gap: 10px;
  }

  .faq-item__qno {
    font-size: 18px;
  }

  .faq-item__qtext {
    font-size: 17px;
    line-height: 1.45;
  }

  .faq-item__icon {
    font-size: 24px;
  }

  .faq-item__answer-inner {
    grid-template-columns: 26px 1fr;
    gap: 10px;
    padding: 0 16px 16px 16px;
  }

  .faq-item__ano {
    font-size: 30px;
  }

  .faq-item__atext {
    font-size: 15px;
    line-height: 1.75;
  }

/* =========================
  Section 9｜CTA
========================= */

  .section-cta{
    padding: 60px 0;
  }

  .container{
    padding-left: 18px;
    padding-right: 18px;
  }

  .cta-inner{
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .benefits,
  .cta-box{
    border-radius: 20px;
  }

  .benefits{
    padding: 20px 18px;
  }

  .cta-box{
    padding: 20px 18px 18px;
  }

  .benefits-title{
    font-size: 22px;
    line-height: 1.4;
  }

  .cta-title{
    font-size: 17px;
    line-height: 1.5;
  }

  .benefits-list{
    gap: 10px;
  }

  .benefits-list li{
    font-size: 15px;
    line-height: 1.8;
  }

  .form-label{
    font-size: 14px;
  }

  .form-input,
  .form-select{
    height: 46px;
    font-size: 16px;
  }

  .btn-lg{
    min-height: 50px;
    font-size: 18px;
  }

  .form-hint2{
    font-size: 13px;
    line-height: 1.7;
  }

}