:root {
  --米白: #f7f3eb;
  --白色: #fffdf9;
  --深棕: #312c27;
  --灰棕: #6e655d;
  --暖橘: #df7959;
  --暖橘淺色: #f6ded4;
  --藍綠: #5d918c;
  --藍綠淺色: #dceae7;
  --線條: #e8ded2;
  --陰影: 0 18px 50px rgba(90, 71, 57, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--深棕);
  background: var(--白色);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  line-height: 1.8;
}

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

button {
  font: inherit;
}

.頁首 {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 6vw;
  background: rgba(255, 253, 249, 0.92);
  border-bottom: 1px solid rgba(232, 222, 210, 0.7);
  backdrop-filter: blur(14px);
}

.品牌 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.品牌圖示 {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: white;
  background: var(--暖橘);
  border-radius: 13px;
  box-shadow: 0 8px 20px rgba(223, 121, 89, 0.25);
}

.導覽列 {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.導覽列 a:not(.小型按鈕):hover {
  color: var(--暖橘);
}

.小型按鈕,
.主要按鈕,
.次要按鈕 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.小型按鈕,
.主要按鈕 {
  color: white;
  background: var(--暖橘);
  box-shadow: 0 10px 25px rgba(223, 121, 89, 0.24);
}

.次要按鈕 {
  color: var(--深棕);
  background: white;
  border: 1px solid var(--線條);
}

.小型按鈕:hover,
.主要按鈕:hover,
.次要按鈕:hover {
  transform: translateY(-3px);
  box-shadow: var(--陰影);
}

.選單按鈕 {
  display: none;
}

.主視覺 {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 7vw;
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 90px 8vw;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, var(--暖橘淺色) 0, transparent 28%),
    radial-gradient(circle at 88% 75%, var(--藍綠淺色) 0, transparent 32%),
    var(--米白);
}

.標籤 {
  margin: 0 0 14px;
  color: var(--暖橘);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 1.18;
  letter-spacing: -0.05em;
}

h1 span {
  color: var(--藍綠);
  font-size: 0.7em;
}

.主說明 {
  max-width: 650px;
  color: var(--灰棕);
  font-size: 18px;
}

.按鈕群 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0;
}

.信任清單 {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding: 0;
  color: var(--灰棕);
  font-size: 13px;
  list-style: none;
}

.信任清單 li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--藍綠);
  font-weight: 900;
}

.主視覺卡片 {
  padding: 26px;
  background: rgba(255, 253, 249, 0.86);
  border: 1px solid white;
  border-radius: 28px;
  box-shadow: var(--陰影);
  transform: rotate(2deg);
}

.卡片標題,
.代理卡片,
.成果列 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.卡片標題 {
  margin-bottom: 18px;
  font-weight: 900;
}

.運作標記 {
  padding: 5px 10px;
  color: var(--藍綠);
  background: var(--藍綠淺色);
  border-radius: 999px;
  font-size: 11px;
}

.代理卡片 {
  gap: 12px;
  margin: 12px 0;
  padding: 16px;
  background: white;
  border: 1px solid var(--線條);
  border-radius: 18px;
}

.代理卡片 div {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.代理卡片 small {
  color: var(--灰棕);
}

.代理圖示 {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
}

.圖示一 {
  color: #9a573f;
  background: var(--暖橘淺色);
}

.圖示二 {
  color: #40756f;
  background: var(--藍綠淺色);
}

.圖示三 {
  color: #826c35;
  background: #f2e9c9;
}

.狀態 {
  color: var(--灰棕);
  font-size: 11px;
}

.成果列 {
  gap: 12px;
  margin-top: 18px;
}

.成果列 div {
  flex: 1;
  padding: 14px;
  background: var(--米白);
  border-radius: 16px;
}

.成果列 strong,
.成果列 span {
  display: block;
}

.成果列 strong {
  font-size: 12px;
}

.成果列 span {
  color: var(--暖橘);
  font-weight: 900;
}

.區塊 {
  padding: 110px 8vw;
}

.淺色區塊 {
  background: #fffaf4;
}

.區塊標題 {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.3;
  letter-spacing: -0.04em;
}

.區塊標題 > p:last-child,
.服務卡片 p,
.流程項目 p,
.關於文字 p,
.聯繫內容 p {
  color: var(--灰棕);
}

.三欄卡片 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: auto;
}

.服務卡片 {
  min-height: 250px;
  padding: 30px;
  background: white;
  border: 1px solid var(--線條);
  border-radius: 24px;
  box-shadow: 0 12px 35px rgba(90, 71, 57, 0.06);
}

.編號 {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--暖橘);
  font-weight: 900;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.流程列表 {
  display: grid;
  gap: 18px;
  max-width: 850px;
  margin: auto;
}

.流程項目 {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 26px;
  border-bottom: 1px solid var(--線條);
}

.流程項目 > span {
  display: grid;
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  place-items: center;
  color: white;
  background: var(--藍綠);
  border-radius: 18px;
  font-weight: 900;
}

.流程項目 p {
  margin-bottom: 0;
}

.關於區塊 {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  align-items: center;
  padding: 110px 12vw;
  background: var(--米白);
}

.關於圖形 {
  position: relative;
  display: grid;
  min-height: 380px;
  place-items: center;
}

.人物圓形 {
  display: grid;
  width: 280px;
  height: 280px;
  place-items: center;
  color: white;
  background: linear-gradient(145deg, var(--暖橘), #e99c7f);
  border: 18px solid white;
  border-radius: 50%;
  box-shadow: var(--陰影);
  font-size: 40px;
  font-weight: 900;
}

.漂浮標籤 {
  position: absolute;
  padding: 10px 18px;
  background: white;
  border-radius: 999px;
  box-shadow: var(--陰影);
  font-size: 13px;
  font-weight: 800;
}

.標籤一 {
  top: 55px;
  right: 0;
}

.標籤二 {
  bottom: 55px;
  left: 0;
}

.聯繫區塊 {
  padding: 100px 8vw;
  background: white;
}

.聯繫內容 {
  max-width: 950px;
  margin: auto;
  padding: 70px 8vw;
  text-align: center;
  background:
    radial-gradient(circle at 10% 20%, var(--暖橘淺色), transparent 32%),
    radial-gradient(circle at 90% 80%, var(--藍綠淺色), transparent 34%),
    var(--米白);
  border-radius: 36px;
}

.聯繫內容 p {
  max-width: 650px;
  margin-right: auto;
  margin-left: auto;
}

.加入按鈕 {
  margin: 16px 0;
}

.聯繫內容 small {
  display: block;
  color: var(--灰棕);
}

footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 30px 6vw;
  color: var(--灰棕);
  border-top: 1px solid var(--線條);
  font-size: 13px;
}

footer p {
  margin: 0;
}

.淡入 {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.淡入.已顯示 {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .主視覺,
  .關於區塊 {
    grid-template-columns: 1fr;
  }

  .三欄卡片 {
    grid-template-columns: 1fr;
  }

  .選單按鈕 {
    display: block;
    padding: 8px 14px;
    color: var(--深棕);
    background: white;
    border: 1px solid var(--線條);
    border-radius: 999px;
    font-weight: 800;
  }

  .導覽列 {
    position: absolute;
    top: 72px;
    right: 5vw;
    display: none;
    min-width: 180px;
    padding: 18px;
    background: white;
    border: 1px solid var(--線條);
    border-radius: 18px;
    box-shadow: var(--陰影);
  }

  .導覽列.已開啟 {
    display: grid;
  }

  .主視覺 {
    padding-top: 70px;
  }

  .主視覺卡片 {
    transform: none;
  }
}

@media (max-width: 600px) {
  .頁首,
  .主視覺,
  .區塊,
  .關於區塊,
  .聯繫區塊 {
    padding-right: 22px;
    padding-left: 22px;
  }

  h1 {
    font-size: 42px;
  }

  .主視覺 {
    min-height: auto;
  }

  .主視覺卡片 {
    padding: 16px;
  }

  .成果列,
  footer {
    align-items: stretch;
    flex-direction: column;
  }

  .人物圓形 {
    width: 230px;
    height: 230px;
  }

  .聯繫內容 {
    padding: 50px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .淡入 {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
