/* =============================================
   曜選電商 | 電商商品整理專員招募頁
   CSS 樣式表
   ============================================= */

/* CSS 變數 */
:root {
  --beige: #F7F3EE;
  --beige-dark: #EDE8E1;
  --beige-mid: #F0EBE3;
  --cream: #FAF8F5;
  --orange-red: #E85D3A;
  --orange-light: #F07A5A;
  --orange-pale: #FDEEE9;
  --sage: #8FAF8E;
  --sage-light: #B8CFBB;
  --sage-pale: #EBF2EA;
  --gray-dark: #2C2C2C;
  --gray-mid: #5A5A5A;
  --gray-light: #9A9A9A;
  --white: #FFFFFF;
  --shadow-soft: 0 8px 40px rgba(44, 44, 44, 0.08);
  --shadow-card: 0 4px 24px rgba(44, 44, 44, 0.06);
  --shadow-hover: 0 16px 48px rgba(44, 44, 44, 0.14);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* 重設 */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  background-color: var(--beige);
  color: var(--gray-dark);
  line-height: 1.7;
  overflow-x: hidden;
}

/* =============================================
   導覽列
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(247, 243, 238, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(44, 44, 44, 0.06);
  padding: 12px 40px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-logo {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--orange-red), var(--orange-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -1px;
  box-shadow: 0 4px 12px rgba(232, 93, 58, 0.3);
}

.navbar-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-dark);
  letter-spacing: 1px;
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-nav-line {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #06C755;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(6, 199, 85, 0.3);
}

.btn-nav-line:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 199, 85, 0.4);
  background: #05b84d;
}

.btn-nav-apply {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-red);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(232, 93, 58, 0.3);
}

.btn-nav-apply:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 93, 58, 0.45);
  background: var(--orange-light);
}

/* =============================================
   英雄區塊 (Hero)
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #F7F3EE 0%, #EDE8E1 40%, #E8E2D8 100%);
}

/* 動畫背景 canvas */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* 漂浮商品卡片動畫 */
.floating-cards {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard linear infinite;
  opacity: 0.9;
  white-space: nowrap;
}

.float-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.float-card-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.float-card-title {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-dark);
  line-height: 1.3;
}

.float-card-sub {
  font-size: 10px;
  color: var(--gray-light);
  line-height: 1.3;
}

.float-card-badge {
  background: var(--orange-pale);
  color: var(--orange-red);
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  flex-shrink: 0;
}

.float-card.card-1 {
  top: 12%;
  left: 6%;
  animation-duration: 18s;
  animation-delay: 0s;
}

.float-card.card-2 {
  top: 22%;
  right: 8%;
  animation-duration: 22s;
  animation-delay: -5s;
}

.float-card.card-3 {
  bottom: 28%;
  left: 4%;
  animation-duration: 20s;
  animation-delay: -10s;
}

.float-card.card-4 {
  bottom: 20%;
  right: 6%;
  animation-duration: 25s;
  animation-delay: -3s;
}

.float-card.card-5 {
  top: 50%;
  right: 3%;
  animation-duration: 19s;
  animation-delay: -8s;
}

.float-card.card-6 {
  top: 40%;
  left: 3%;
  animation-duration: 23s;
  animation-delay: -12s;
}

@keyframes floatCard {
  0% { transform: translateY(0px) rotate(-1deg); }
  25% { transform: translateY(-12px) rotate(1deg); }
  50% { transform: translateY(-20px) rotate(-0.5deg); }
  75% { transform: translateY(-10px) rotate(1.5deg); }
  100% { transform: translateY(0px) rotate(-1deg); }
}

/* 英雄內容 */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 780px;
  padding: 40px 30px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  border: 1px solid rgba(232, 93, 58, 0.2);
  color: var(--orange-red);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 28px;
  letter-spacing: 1px;
  animation: fadeInDown 0.8s ease forwards;
}

.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--orange-red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(38px, 6vw, 68px);
  font-weight: 800;
  color: var(--gray-dark);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeInUp 0.9s ease 0.1s both;
}

.hero-title-accent {
  color: var(--orange-red);
  position: relative;
}

.hero-title-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-red), var(--orange-light));
  border-radius: 2px;
  transform: scaleX(0);
  animation: lineExpand 0.8s ease 0.8s forwards;
}

@keyframes lineExpand {
  to { transform: scaleX(1); }
}

.hero-subtitle {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--gray-mid);
  margin-bottom: 36px;
  line-height: 1.7;
  animation: fadeInUp 0.9s ease 0.2s both;
}

.hero-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 44px;
  animation: fadeInUp 0.9s ease 0.3s both;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-badge.salary {
  background: var(--orange-red);
  color: white;
  box-shadow: 0 6px 24px rgba(232, 93, 58, 0.35);
  font-size: 15px;
}

.hero-badge.remote {
  color: var(--sage);
  border-color: var(--sage-light);
}

.hero-badge.mobile {
  color: var(--gray-mid);
}

.hero-badge i {
  font-size: 15px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  animation: fadeInUp 0.9s ease 0.4s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-red);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(232, 93, 58, 0.4);
  letter-spacing: 0.5px;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 93, 58, 0.5);
  background: var(--orange-light);
}

.btn-line-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #06C755;
  color: white;
  border: none;
  border-radius: 50px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 28px rgba(6, 199, 85, 0.35);
  letter-spacing: 0.5px;
}

.btn-line-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(6, 199, 85, 0.45);
  background: #05b84d;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--gray-mid);
  border: 2px solid rgba(90, 90, 90, 0.2);
  border-radius: 50px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary:hover {
  border-color: var(--orange-red);
  color: var(--orange-red);
  transform: translateY(-2px);
}

/* 向下滾動指示 */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1s both;
}

.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange-red), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

/* =============================================
   通用版面
   ============================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}

.section {
  padding: 100px 0;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange-pale);
  color: var(--orange-red);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--gray-dark);
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.8;
  max-width: 560px;
}

/* =============================================
   數字亮點區塊
   ============================================= */
.stats-section {
  background: var(--gray-dark);
  padding: 72px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 32px 20px;
  position: relative;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 48px;
  font-weight: 900;
  color: var(--orange-red);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -2px;
}

.stat-unit {
  font-size: 24px;
  font-weight: 700;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.5px;
}

/* =============================================
   工作亮點 (Highlights)
   ============================================= */
.highlights-section {
  background: var(--cream);
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 60px;
}

.highlight-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange-red), var(--orange-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.highlight-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.highlight-card:hover::before {
  transform: scaleX(1);
}

.highlight-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.highlight-icon.orange { background: var(--orange-pale); }
.highlight-icon.sage { background: var(--sage-pale); }
.highlight-icon.beige { background: var(--beige-dark); }

.highlight-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-dark);
}

.highlight-desc {
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.75;
}

/* =============================================
   工作內容
   ============================================= */
.job-content-section {
  background: var(--beige);
}

.job-content-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.job-tasks-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.job-task-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: white;
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.job-task-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-soft);
}

.task-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--orange-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.task-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 4px;
}

.task-content p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* 右側 UI 示意圖 */
.job-ui-demo {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 100px;
}

.ui-demo-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--beige-dark);
}

.ui-demo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.ui-demo-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-mid);
  margin-left: auto;
}

.ui-product-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ui-product-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--beige);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  cursor: grab;
  transition: var(--transition);
  border: 2px solid transparent;
}

.ui-product-row:hover,
.ui-product-row.active {
  background: var(--orange-pale);
  border-color: rgba(232, 93, 58, 0.25);
  transform: scale(1.02);
}

.ui-drag-handle {
  color: var(--gray-light);
  font-size: 14px;
  cursor: grab;
}

.ui-product-thumb {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.ui-product-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
}

.ui-product-rank {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange-red);
  background: var(--orange-pale);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.ui-tag-section {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ui-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  border: 1.5px solid;
}

.ui-tag.sorting { border-color: var(--orange-red); color: var(--orange-red); background: var(--orange-pale); }
.ui-tag.category { border-color: var(--sage); color: var(--sage); background: var(--sage-pale); }
.ui-tag.listing { border-color: #7B9FC4; color: #5A85A8; background: #EEF4F9; }
.ui-tag.manage { border-color: var(--gray-light); color: var(--gray-mid); background: var(--beige-dark); }

/* =============================================
   薪資待遇
   ============================================= */
.salary-section {
  background: linear-gradient(160deg, var(--gray-dark) 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.salary-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(232, 93, 58, 0.15), transparent 60%);
  pointer-events: none;
}

.salary-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(143, 175, 142, 0.12), transparent 60%);
  pointer-events: none;
}

.salary-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.salary-left .section-tag {
  background: rgba(232, 93, 58, 0.15);
  border: 1px solid rgba(232, 93, 58, 0.3);
}

.salary-left .section-title {
  color: white;
}

.salary-left .section-desc {
  color: rgba(255, 255, 255, 0.65);
}

.salary-main-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: linear-gradient(135deg, var(--orange-red), var(--orange-light));
  color: white;
  border-radius: var(--radius-md);
  padding: 18px 32px;
  margin: 28px 0 20px;
  box-shadow: 0 12px 40px rgba(232, 93, 58, 0.45);
}

.salary-main-label {
  font-size: 14px;
  font-weight: 600;
  opacity: 0.85;
}

.salary-main-number {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1;
}

.salary-main-unit {
  font-size: 18px;
  font-weight: 700;
}

.salary-perks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.salary-perk-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.salary-perk-item i {
  color: var(--sage-light);
  width: 20px;
}

.salary-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.perk-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition);
}

.perk-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(232, 93, 58, 0.3);
  transform: translateY(-3px);
}

.perk-card-icon {
  font-size: 24px;
  margin-bottom: 12px;
}

.perk-card-title {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}

.perk-card-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

/* =============================================
   應徵條件
   ============================================= */
.requirements-section {
  background: var(--cream);
}

.req-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 60px;
}

.req-column h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--gray-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.req-column h3 i {
  color: var(--orange-red);
}

.req-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.req-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  color: var(--gray-mid);
  line-height: 1.6;
}

.req-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
}

.req-dot.must {
  background: var(--orange-pale);
  color: var(--orange-red);
}

.req-dot.nice {
  background: var(--sage-pale);
  color: var(--sage);
}

/* =============================================
   品牌介紹
   ============================================= */
.about-section {
  background: var(--beige);
  overflow: hidden;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
  height: 420px;
}

.about-card-main {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 60px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.about-card-float {
  position: absolute;
  background: white;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard linear infinite;
}

.about-card-float.card-a {
  bottom: 30px;
  right: 10px;
  animation-duration: 6s;
}

.about-card-float.card-b {
  top: 50%;
  right: 5px;
  animation-duration: 8s;
  animation-delay: -3s;
}

.about-brand-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--gray-dark);
  margin-bottom: 8px;
}

.about-brand-tag {
  display: inline-block;
  background: var(--orange-pale);
  color: var(--orange-red);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.about-brand-desc {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.75;
}

.about-mini-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.about-mini-text h5 {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-dark);
}

.about-mini-text p {
  font-size: 11px;
  color: var(--gray-light);
}

/* 右側文字 */
.about-text .section-desc {
  max-width: 100%;
  margin-bottom: 24px;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about-value-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.about-value-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.about-value-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-dark);
}

.about-value-text p {
  font-size: 14px;
  color: var(--gray-mid);
}

/* =============================================
   流程說明
   ============================================= */
.process-section {
  background: var(--cream);
}

.process-steps {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--beige-dark), var(--orange-red), var(--beige-dark));
  z-index: 0;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.process-step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: white;
  border: 3px solid var(--beige-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 20px;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(44, 44, 44, 0.08);
}

.process-step:hover .process-step-num,
.process-step.active .process-step-num {
  background: var(--orange-red);
  border-color: var(--orange-red);
  box-shadow: 0 8px 24px rgba(232, 93, 58, 0.35);
}

.process-step h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--gray-dark);
}

.process-step p {
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
}

/* =============================================
   FAQ
   ============================================= */
.faq-section {
  background: var(--beige);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-soft);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 15px;
  font-weight: 700;
  color: var(--gray-dark);
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question i {
  color: var(--orange-red);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 200px;
  padding-bottom: 20px;
}

.faq-answer-inner {
  padding: 0 24px;
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.75;
}

/* =============================================
   聯絡 / 應徵
   ============================================= */
.contact-section {
  background: var(--beige-dark);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(143, 175, 142, 0.15), transparent 65%);
  pointer-events: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-left .section-desc {
  max-width: 100%;
  margin-bottom: 36px;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.btn-contact-line {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #06C755;
  color: white;
  border: none;
  border-radius: var(--radius-md);
  padding: 18px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(6, 199, 85, 0.3);
  justify-content: center;
}

.btn-contact-line:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(6, 199, 85, 0.4);
  background: #05b84d;
}

.btn-contact-email {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: var(--gray-dark);
  border: 2px solid rgba(44, 44, 44, 0.12);
  border-radius: var(--radius-md);
  padding: 18px 28px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  justify-content: center;
}

.btn-contact-email:hover {
  border-color: var(--orange-red);
  color: var(--orange-red);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.contact-info-note {
  font-size: 13px;
  color: var(--gray-light);
  text-align: center;
  margin-top: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* 右側聯絡資訊卡 */
.contact-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
}

.contact-card-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--beige-dark);
  color: var(--gray-dark);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.contact-detail-icon.line { background: rgba(6, 199, 85, 0.1); color: #06C755; }
.contact-detail-icon.email { background: var(--orange-pale); color: var(--orange-red); }
.contact-detail-icon.time { background: var(--beige-dark); color: var(--gray-mid); }
.contact-detail-icon.remote { background: var(--sage-pale); color: var(--sage); }

.contact-detail-text label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 3px;
}

.contact-detail-text span {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-dark);
}

/* =============================================
   頁尾
   ============================================= */
.footer {
  background: var(--gray-dark);
  padding: 48px 0 32px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--orange-red), var(--orange-light));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
}

.footer-name {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* =============================================
   浮動應徵按鈕
   ============================================= */
.fab-apply {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-red);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 8px 32px rgba(232, 93, 58, 0.5);
  transform: translateY(100px);
  opacity: 0;
}

.fab-apply.visible {
  transform: translateY(0);
  opacity: 1;
}

.fab-apply:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(232, 93, 58, 0.6);
}

/* =============================================
   動畫 Helpers
   ============================================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 延遲動畫 */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* =============================================
   RWD 響應式
   ============================================= */
@media (max-width: 900px) {
  .navbar {
    padding: 14px 20px;
  }

  .navbar.scrolled {
    padding: 10px 20px;
  }

  .btn-nav-apply span,
  .btn-nav-line span {
    display: none;
  }

  .job-content-layout,
  .salary-layout,
  .req-layout,
  .about-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .job-ui-demo {
    position: static;
  }

  .about-visual {
    height: 280px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .process-steps::before {
    display: none;
  }

  .salary-right {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .float-card {
    display: none;
  }

  .float-card.card-2,
  .float-card.card-4 {
    display: flex;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 72px 0;
  }

  .hero-badges {
    gap: 8px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .salary-right {
    grid-template-columns: 1fr;
  }

  .fab-apply {
    bottom: 20px;
    right: 20px;
    padding: 12px 20px;
    font-size: 14px;
  }
}
