/* ============================================
   首頁 index.css（瑋崧企業社）
   依 Figma 電腦版匯出還原；缺圖以牛皮色佔位
   ============================================ */

/* ===== 共用：區塊標題 / 按鈕 ===== */
.home-section {
  padding-block: clamp(48px, 6vw, 88px);
}
.home-section--cream {
  background: var(--color-surface);
}

.site-footer {
  padding-top: 200px;
}
.section-head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
  margin-bottom: clamp(32px, 4vw, 42px);
}
/* 標題裝飾：單檔 title-dec.svg（牛皮梯形頂＋白底棕框＋底部向下小三角，已分層） */
.section-head__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 6px 50px 6px;
  font-size: clamp(1.125rem, 1rem + 0.5vw, 1.5rem);
  font-weight: var(--fw-bold);
  color: var(--color-ink);
  margin-bottom: var(--space-6);
  background: url("../../images/home/title-dec.svg") center / 100% 100%
    no-repeat;
}
.section-head__desc {
  font-size: var(--fs-base);
  color: var(--color-text);
  line-height: var(--lh-base);
  margin: 0;
  text-align: left;
}

/* pill-btn / section-actions 已移至 5-components.css（全頁共用） */

/* ===== Hero ===== */
.home-hero {
  position: relative;
  min-height: clamp(440px, 37vw, 700px);
  background: var(--color-kraft)
    url("../../images/front-page/freepik__minimalist-hero-banner-unfolded-461-4731.webp")
    center/cover no-repeat;
  border-radius: 0 0 90px 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.home-hero__inner {
  position: relative;
  width: min(700px, 88vw);
  aspect-ratio: 700 / 280;
}
.home-hero__title {
  position: absolute;
  inset: 0;
  margin: 0;
}
.home-hero__cn {
  position: absolute;
  font-family: "AaJianZhengLiHei", "Noto Serif TC", serif;
  font-weight: 400; /* AaJianZhengLiHei 僅 400 字重；設計稿即此粗細 */
  font-style: italic; /* 中文無真斜體，由瀏覽器合成傾斜 */
  font-synthesis: style; /* 確保即使字體無 italic 變體也合成斜體 */
  font-size: clamp(64px, 9vw, 128px);
  line-height: 1;
  color: #fff;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}
.home-hero__cn--1 {
  top: 0;
  left: 32%;
}
.home-hero__cn--2 {
  top: 46%;
  left: 54%;
}
.home-hero__en {
  position: absolute;
  top: 19%;
  left: 63%;
  font-family: "Splash", "Brush Script MT", cursive;
  font-style: italic;
  font-synthesis: style;
  font-size: clamp(38px, 4.6vw, 61px);
  line-height: 1;
  color: #cfb18d;
  transform: rotate(7.4deg);
  transform-origin: left;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}
.home-hero__tagline {
  position: absolute;
  top: 57%;
  left: 5%;
  width: 46%;
  font-size: clamp(18px, 2.6vw, 36px);
  line-height: 1.143;
  font-weight: 500;
  font-style: italic;
  font-synthesis: style;
  color: #fff;
  text-align: right;
  text-shadow: 0 5px 5px rgba(0, 0, 0, 0.25);
}

/* ===== 服務卡 ===== */
.svc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 70px);
  max-width: 1202px;
  margin-inline: auto;
}
.svc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.svc-card__icon {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.svc-card__icon--kraft {
  background: var(--color-kraft);
}
.svc-card__icon--brand {
  background: var(--color-brand);
}
/* 服務卡 icon：白色 glyph 置於彩色圓內（桌機預設，手機於 ≤640 覆蓋寬度） */
.svc-card__icon img {
  width: 64px;
  height: auto;
  filter: brightness(0) invert(1);
}
.svc-card__body {
  width: 100%;
  max-width: 354px;
  min-height: 200px;
  margin-top: -20px;
  border: 2px solid var(--color-kraft);
  border-radius: 20px;
  padding: 36px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}
.svc-card__body--brand {
  border-color: var(--color-brand);
}
.svc-card__title {
  font-size: var(--fs-lg);
  color: var(--color-ink);
  font-weight: var(--fw-medium);
  text-align: center;
}
.svc-card__text {
  font-size: var(--fs-sm);
  color: #333;
  line-height: 1.6;
}

/* ===== 盒型卡（上 小|大、下 大|小；大=640 小=524） ===== */
.boxtype-cards {
  --bt-gap: clamp(24px, 2.5vw, 40px);
  display: flex;
  flex-wrap: wrap;
  gap: var(--bt-gap);
  max-width: 1200px;
  margin-inline: auto;
}
.boxtype-card:nth-child(1),
.boxtype-card:nth-child(4) {
  flex: 0 0 calc(45.02% - var(--bt-gap) / 2); /* 小 524 */
}
.boxtype-card:nth-child(2),
.boxtype-card:nth-child(3) {
  flex: 0 0 calc(54.98% - var(--bt-gap) / 2); /* 大 640 */
}
.boxtype-card {
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.boxtype-card__photo {
  position: relative;
  height: clamp(220px, 22vw, 368px);
  background: var(--color-kraft) center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* 預設較暗、hover 變亮 */
.boxtype-card__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(35, 24, 21, 0.3);
  transition: background var(--ease-base);
}
.boxtype-card:hover .boxtype-card__photo::before {
  background: rgba(35, 24, 21, 0);
}
.boxtype-card__look {
  position: relative;
  z-index: 1;
  width: 138px;
  height: 138px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  font-weight: var(--fw-medium);
}
.boxtype-card__bar {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
}
.boxtype-card__bar--kraft {
  background: var(--color-kraft);
}
.boxtype-card__bar--brand {
  background: var(--color-brand);
}
.boxtype-card__label {
  background: #fff;
  color: var(--color-kraft);
  border-radius: var(--radius-full);
  padding: 6px 18px;
  font-weight: var(--fw-medium);
  white-space: nowrap;
}
/* 標籤字色＝所在色條顏色 */
.boxtype-card__bar--kraft .boxtype-card__label {
  color: var(--color-kraft);
}
.boxtype-card__bar--brand .boxtype-card__label {
  color: var(--color-brand);
}
.boxtype-card__desc {
  font-size: var(--fs-sm);
  color: #fff;
}

/* ===== 食品包裝卡 ===== */
.food-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
  max-width: 1218px;
  margin-inline: auto;
}
.food-card__photo {
  position: relative;
  overflow: hidden;
  height: clamp(300px, 22vw, 415px);
  border-radius: 24px;
  background: var(--color-kraft) center/cover no-repeat;
}
/* hover：放大鏡出現於中央、圖片變暗、鏡片有毛玻璃模糊 */
.food-card__zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(35, 24, 21, 0);
  transition:
    opacity var(--ease-base),
    background var(--ease-base);
}
.food-card:hover .food-card__zoom {
  opacity: 1;
  background: rgba(35, 24, 21, 0.5);
}
.food-card__lens {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  transform: translate(-6px, -5px);
}
.food-card__glass {
  position: relative;
  width: 74px;
  height: 72px;
  filter: brightness(0) invert(1);
}
.food-card__meta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
}
.food-card__label {
  flex: 0 0 auto;
  min-width: 102px;
  height: 54px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: var(--fw-medium);
  padding: 0 21px;
}
.food-card__label--kraft {
  background: #cc9a55;
}
.food-card__label--brand {
  background: var(--color-brand);
}
.food-card__desc {
  font-size: var(--fs-sm);
  color: #000;
  line-height: 1.55;
  margin: 0;
}
.section-rule {
  border: 0;
  border-top: 4px solid #cfb18d;
  margin-top: clamp(40px, 5vw, 72px);
}

/* ===== 節慶禮盒卡 ===== */
.gift-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 47px);
  max-width: 1321px;
  margin-inline: auto;
}
/* 上＝漸層色塊(標題+分隔線+說明)，下＝照片，右下角箭頭圓鈕 */
.gift-card {
  border-radius: 26px;
  color: #fff;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 389px;
  height: 428px;
}
.gift-card__body {
  padding: 44px clamp(24px, 2.4vw, 32px) clamp(42px, 4.2vw, 56px);
  height: 295px;
  margin-bottom: -100px;
  text-align: center;
  border-radius: 26px 26px 0 0;
}
.gift-card--kraft .gift-card__body {
  background: linear-gradient(180deg, var(--color-kraft), #ffe9ce);
}
.gift-card--brand .gift-card__body {
  background: linear-gradient(180deg, var(--color-brand), #ffe9ce);
}
.gift-card__title {
  font-size: 20px;
  font-weight: var(--fw-medium);
  margin: 0;
}
.gift-card__divider {
  display: block;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  margin: 18px 0 26px;
}
.gift-card__desc {
  font-size: 16px;
  line-height: 1.25;
  margin: 0;
}
.gift-card__photo {
  position: relative;
  z-index: 1;
  margin-top: -32px; /* 疊進漸層 body，圓角處露出漸層色 */
  height: clamp(220px, 18vw, 236px);
  background-image: var(
    --bg-desktop
  ); /* 桌機圖（手機於 ≤640 改 --bg-mobile） */
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
}
/* 箭頭鈕：嵌入照片右下缺口，尺寸對齊設計 92px（≈卡寬 22.5%） */
.gift-card__arrow {
  position: absolute;
  right: -20px;
  bottom: -9px;
  width: 22.5%;
  max-width: 92px;
  aspect-ratio: 1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-kraft);
  transition: transform var(--ease-base);
}
.gift-card--brand .gift-card__arrow {
  background: var(--color-brand);
}
.gift-card__arrow:hover {
  transform: translateY(-2px);
}
.gift-card__arrow img {
  width: 100%;
  height: auto;
}

/* ===== 工廠優勢 ===== */
.home-factory {
  padding: 0;
}
.home-factory__bg {
  position: relative;
  padding: 341px 20px 0; /* 底部 0：footer -115px 疊上玻璃卡 */
  margin-bottom: -115px;
}
/* 底部裝飾帶：放最底層（負 z），讓玻璃卡疊在它上面 */
.home-factory__bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 135px;
  z-index: -1;
  height: 100%;
  background: url("../../images/home/custom-holiday-box-bottom-bg.png") center
    bottom / cover no-repeat;
  pointer-events: none;
}
/* 玻璃卡：不設 z-index/backdrop-filter（避免自成堆疊脈絡鎖住按鈕），
   模糊與白霧移到 ::before；本體層級維持 root auto → 會被 footer 蓋住 */
.home-factory__glass {
  position: relative;
  width: 100%;
  max-width: var(
    --container-max
  ); /* 接管原 .container 的限寬（已移除外層 .container） */
  border: 3px solid rgba(255, 255, 255, 0.8);
  border-radius: 48px;
  padding: clamp(32px, 4vw, 64px);
  margin-inline: auto;
  box-shadow:
    0 0px 4px rgba(35, 24, 21, 0.12),
    inset 0 3px 3px rgb(0 0 0 / 13%);
}
.home-factory__glass::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1; /* 白霧墊在內容（z-index:2）之下 */
  border-radius: inherit;
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
/* 內容墊在 ::before 之上 */
.home-factory__glass > * {
  position: relative;
  z-index: 2;
}
/* 按鈕提到 footer(z-index:1) 之上 */
.home-factory .section-actions {
  position: relative;
  z-index: 2;
}
.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 56px;
  max-width: 826px;
  margin-inline: auto;
}
.adv-item__bar {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: var(--fw-medium);
  font-size: var(--fs-lg);
}
.adv-item__bar--kraft {
  background: var(--color-kraft);
}
.adv-item__bar--brand {
  background: var(--color-brand);
}
.adv-item__desc {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 22px 0 0;
  font-size: var(--fs-sm);
  color: #000;
  line-height: 1.6;
}
.adv-item__check {
  color: var(--color-success);
  flex: 0 0 auto;
  margin-top: 1px;
  width: 22px;
  height: 22px;
}

/* ============================================
   RWD
   ============================================ */
@media (max-width: 1024px) {
  .svc-cards,
  .food-cards,
  .gift-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .svc-cards,
  .food-cards,
  .gift-cards,
  .adv-grid {
    grid-template-columns: 1fr;
  }
  .boxtype-card:nth-child(n) {
    flex-basis: 100%;
  }
  .home-hero {
    padding-bottom: 42px;
    align-items: flex-end;
  }
  .home-hero__inner {
    width: 92vw;
    aspect-ratio: 360 / 260;
  }
  .home-hero__cn--1 {
    left: 4%;
  }
  .home-hero__cn--2 {
    left: 34%;
  }
}
/* ============================================
   ≤640 手機版：依 Figma 手機畫布（375 寬）逐區塊重排，像素級對齊
   只新增手機規則、不改桌機。設計稿來源：figma-export/front-page/mobile
   ============================================ */
@media (max-width: 640px) {
  .footer-cta {
    padding-top: 0;
  }

  /* 區塊上下間距收斂（設計稿各區約 48px 起） */
  .home-section {
    padding-block: 48px;
  }

  /* ===== 共用：區塊標題（icon 標籤 + 標題 + 說明，整塊置中、寬 290） ===== */
  .section-head {
    max-width: 290px;
    margin-bottom: 20px;
  }
  /* 手機標題改為「icon 標籤膠囊」風格：13px 600 棕字，去除桌機梯形底圖 */
  .section-head__title {
    min-height: 38px;
    min-width: 128px;
    padding: 6px 16px;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
    color: var(--color-ink);
    background-size: 100% 100%;
  }
  /* 說明文字手機改置中、13px / 22px */
  .section-head__desc {
    font-size: 13px;
    line-height: 22px;
  }

  /* ===== 共用：區塊 CTA（了解服務 96×28，14px） ===== */
  .section-actions {
    margin-top: 24px;
  }
  .pill-btn {
    min-height: 0;
    gap: 6px;
    padding: 0 9px 2px;
    font-size: 14px;
  }
  .pill-btn::after {
    width: 16px;
    height: 14px;
  }

  /* ===== Hero：黑底圓角圖 + 疊放標題群 ===== */
  .home-hero {
    min-height: 204px;
    border-radius: 0 0 30px 30px;
    background-color: #000;
  }
  .home-hero__inner {
    width: 225px;
    aspect-ratio: 225 / 90;
  }
  /* 「包藏 / 匠心」40.9px 白字，錯位疊放 */
  .home-hero__cn {
    font-size: 40.9px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  }
  .home-hero__cn--1 {
    top: 0;
    left: 27%;
  }
  .home-hero__cn--2 {
    top: 46%;
    left: 49%;
  }
  /* WeiSong 19.6px 淺金、右對齊 */
  .home-hero__en {
    top: 19%;
    left: 61%;
    font-size: 19.6px;
    letter-spacing: 0.39px;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  }
  /* tagline 11.45px 白字、右對齊、置於左下 */
  .home-hero__tagline {
    top: 58%;
    left: -6px;
    width: 48%;
    font-size: 11.45px;
    line-height: 1.143;
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
  }

  /* ===== 服務卡：3 項直向堆疊（圓 icon 疊在白框卡上方） ===== */
  .svc-cards {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 252px;
  }
  .svc-card__icon {
    width: 80px;
    height: 80px;
  }
  .svc-card__icon img {
    width: 46px;
  }
  .svc-card__body {
    max-width: 100%;
    min-height: 164px;
    margin-top: -20px;
    border-radius: 16px;
    padding: 37px 16px 16px;
    gap: 8px;
  }
  .svc-card__title {
    font-size: 13px;
    font-weight: var(--fw-semibold);
  }
  .svc-card__text {
    font-size: 13px;
    line-height: 22px;
  }

  /* ===== 盒型卡：米底、直向單欄（254 寬），間距 28 ===== */
  .home-boxtypes .boxtype-cards {
    flex-direction: column;
    gap: 28px;
    max-width: 254px;
  }
  .home-boxtypes .boxtype-card:nth-child(n) {
    flex-basis: auto;
    width: 100%;
  }
  /* 手機版對調第 3（瓦楞紙盒）與第 4（開窗紙盒）的顯示順序 */
  .home-boxtypes .boxtype-card:nth-child(3) {
    order: 4;
  }
  .home-boxtypes .boxtype-card:nth-child(4) {
    order: 3;
  }
  .boxtype-card {
    border-radius: 20px;
  }
  .boxtype-card__photo {
    height: 150px;
  }
  .boxtype-card__look {
    width: 90px;
    height: 90px;
    font-size: 13px;
    border-radius: 90px;
  }
  /* 色條改直向：標題 pill 在上、說明在下 */
  .boxtype-card__bar {
    flex-direction: column;
    align-items: stretch;
    min-height: 0;
    gap: 4px;
    padding: 16px;
  }
  .boxtype-card__label {
    align-self: flex-start;
    border-radius: 60px;
    padding: 0 18px;
    min-width: 80px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
  }
  .boxtype-card__desc {
    font-size: 13px;
    line-height: 22px;
    text-align: left;
  }

  /* ===== 食品包裝卡：直向（268 寬），label chip 左 + 說明右 ===== */
  .home-food {
    padding-bottom: 0;
  }
  .food-cards {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 268px;
  }

  .food-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
  }
  .food-card__photo {
    height: 132px;
    width: 130px;
    flex-shrink: 0;
    border-radius: 8px;
  }
  .food-card__meta {
    gap: 14px;
    margin-top: 0;
    align-items: flex-start;
    flex-direction: column;
  }
  .food-card__label {
    min-width: 0;
    width: 74px;
    height: auto;
    padding: 0 5px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: var(--fw-semibold);
  }
  .food-card__desc {
    font-size: 12px;
    line-height: 1.6;
  }

  .food-card__lens {
    transform: translate(-2px, -1px);
    width: 21px;
    height: 21px;
  }

  .food-card__glass {
    width: 24px;
    height: 24px;
  }

  .section-rule {
    margin-top: 40px;
    border-top: 2px solid #cfb18d;
  }

  /* ===== 節慶禮盒卡：緊湊版（左漸層方塊 192×146 + 右下角箭頭鈕 28） ===== */
  .gift-cards {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 290px;
    margin-inline: auto;
  }
  .gift-card {
    flex-direction: row;
    height: 146px;
    max-width: 280px;
    background: transparent;
    overflow: visible;
  }
  /* 漸層方塊：佔左側、文字置中 */
  .gift-card__body {
    width: 192px;
    height: 146px;
    margin-bottom: 0;
    margin-right: -34px;
    padding: 13px 51px 13px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 12px;
  }
  .gift-card__title {
    font-size: 13px;
    font-weight: var(--fw-semibold);
  }
  .gift-card__divider {
    margin: 8px 0;
  }
  .gift-card__desc {
    font-size: 13px;
    line-height: 22px;
  }
  /* 照片區收窄成右側，箭頭鈕貼齊漸層方塊右下角 */
  .gift-card__photo {
    flex: 1;
    margin-top: 0;
    height: auto;
    align-self: stretch;
    background-image: var(--bg-mobile); /* 手機改用 Subtract 異形圖 */
    background-position: center right;
  }
  .gift-card__arrow {
    right: -8px;
    bottom: -1px;
    left: auto;
    width: 28px;
    height: 28px;
    max-width: none;
  }
  /* 手機版箭頭改用 gift-arrow-mobile.svg：隱藏原 img、用 ::after 背景帶入 */
  .gift-card__arrow img {
    display: none;
  }
  .gift-card__arrow::after {
    content: "";
    width: 12px;
    height: 12px;
    background: url("../../images/front-page/gift-arrow-mobile.svg") center /
      contain no-repeat;
  }

  /* ===== 工廠優勢：玻璃卡 + 優勢直向 + 雙按鈕並排 ===== */
  .home-factory__bg {
    padding: 36px 20px 0;
    margin-bottom: -170px;
  }
  /* 手機版底部裝飾帶換成設計稿指定圖，並全寬鋪滿（寬 100%、高等比） */
  .home-factory__bg::after {
    background-image: url("../../images/front-page/freepik__minimalist-hero-banner-unfolded-461-4729.webp");
    background-size: 100% auto;
    bottom: 272px;
  }
  .home-factory__glass {
    border-radius: 48px 48px 0 0;
    padding: 28px 16px;
    border: 2px solid rgba(255, 255, 255, 0.8);
  }
  .adv-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 295px;
  }
  /* 優勢列改橫向：色條 chip 左 + 勾選說明右 */
  .adv-item {
    display: flex;
    gap: 4px;
  }
  .adv-item__bar {
    align-self: center;
    height: auto;
    padding: 6px 10px;
    min-width: 103px;
    white-space: nowrap;
    font-size: 13px;
    font-weight: var(--fw-semibold);
  }
  /* 手機版對調：第3「包裝配件生產」改棕、第4「交期與起訂量」改橘 */
  .adv-grid .adv-item:nth-child(3) .adv-item__bar {
    background: var(--color-kraft);
  }
  .adv-grid .adv-item:nth-child(4) .adv-item__bar {
    background: var(--color-brand);
  }
  .adv-item__desc {
    margin-top: 0;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    line-height: 1.6;
  }
  /* 雙 CTA 並排（126 / 98 圓角膠囊，14px） */
  .section-actions--pair {
    gap: 16px;
  }

  /* 工廠優勢勾選：綠色 badge（保留原色） */
  .adv-item__check {
    width: 16px;
    height: 16px;
  }

  .site-footer {
    padding-top: 180px;
    margin-top: 0;
  }
}
