/* ═══════════════════════════════════════════════════
   BOTRY NAMESPACE — botry- 前綴完整命名空間
   色調：超淺紫 × 淡粉漸層系
═══════════════════════════════════════════════════ */
:root {
  /* 主色系 */
  --botry-lavender:    #f0ecff;
  --botry-lavender-md: #ddd6f8;
  --botry-lavender-dk: #b8a9ef;
  --botry-purple:      #7c5cbf;
  --botry-purple-dk:   #5a3e9a;
  --botry-pink-lt:     #fdf0f6;
  --botry-pink:        #f2c4de;
  --botry-pink-md:     #e896c8;
  --botry-rose:        #c75b9a;
  /* 中性 */
  --botry-white:       #ffffff;
  --botry-bg:          #f8f4ff;
  --botry-bg2:         #fef6fb;
  --botry-text:        #2a1f40;
  --botry-text-md:     #5c4a7a;
  --botry-text-lt:     #9282b4;
  --botry-border:      #e4dcf6;
  --botry-border-lt:   #f0e8fb;
  /* 成功/強調 */
  --botry-teal:        #4ab9b0;
  --botry-teal-lt:     #e0f7f5;
  --botry-gold:        #e8a840;
  --botry-gold-lt:     #fdf4e0;
  /* 漸層 */
  --botry-grad-hero:   linear-gradient(135deg, #ede5ff 0%, #fce8f5 50%, #ffe8f0 100%);
  --botry-grad-card:   linear-gradient(145deg, #faf6ff 0%, #fff0f9 100%);
  --botry-grad-accent: linear-gradient(120deg, #7c5cbf, #c75b9a);
  --botry-grad-purple: linear-gradient(135deg, #9d7de0 0%, #7c5cbf 100%);
  /* 字型 */
  --botry-font-body:   'Noto Sans TC', sans-serif;
  --botry-font-serif:  'Noto Serif TC', serif;
  /* 圓角 */
  --botry-r-sm:  8px;
  --botry-r-md:  16px;
  --botry-r-lg:  24px;
  --botry-r-xl:  36px;
  /* 陰影 */
  --botry-shadow-sm: 0 4px 16px rgba(124,92,191,0.10);
  --botry-shadow-md: 0 10px 32px rgba(124,92,191,0.14);
  --botry-shadow-lg: 0 20px 48px rgba(124,92,191,0.18);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--botry-font-body);
  background: var(--botry-bg);
  color: var(--botry-text);
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── 頁面捲動平滑 ── */
html { scroll-behavior: smooth; }

/* ════════════════════════════════
   頁首 HEADER
════════════════════════════════ */
.botry-site-header {
  background: linear-gradient(135deg, #3d2880 0%, #5a3e9a 50%, #7c3d7a 100%);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(60,30,100,0.3);
}
.botry-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.botry-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.botry-logo-mark {
  width: 40px;
  height: 40px;
  background: var(--botry-grad-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: white;
  font-family: var(--botry-font-serif);
  flex-shrink: 0;
}
.botry-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.botry-logo-name {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.05em;
}
.botry-logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}
.botry-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.botry-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  transition: all 0.2s;
}
.botry-nav a:hover, .botry-nav a.active {
  background: rgba(255,255,255,0.18);
  color: #ffffff;
}
.botry-nav-cta {
  background: linear-gradient(120deg, #e896c8, #c75b9a) !important;
  color: white !important;
  padding: 0.4rem 1.2rem !important;
  border-radius: 20px !important;
}
.botry-nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(199,91,154,0.4) !important;
}
.botry-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.botry-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all 0.3s;
}
.botry-mobile-nav {
  display: none;
  background: linear-gradient(135deg, #3d2880, #5a3e9a);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
}
.botry-mobile-nav.open { display: flex; }
.botry-mobile-nav a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ════════════════════════════════
   頁碼錨點導航
════════════════════════════════ */
.botry-page-anchor {
  background: var(--botry-white);
  border-bottom: 1px solid var(--botry-border-lt);
  position: sticky;
  top: 70px;
  z-index: 90;
}
.botry-anchor-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 0.25rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.botry-anchor-inner::-webkit-scrollbar { display: none; }
.botry-anchor-btn {
  white-space: nowrap;
  padding: 0.75rem 1.1rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--botry-text-md);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
  flex-shrink: 0;
}
.botry-anchor-btn:hover {
  color: var(--botry-purple);
  border-bottom-color: var(--botry-lavender-dk);
}
.botry-anchor-btn.active {
  color: var(--botry-purple);
  border-bottom-color: var(--botry-purple);
}

/* ════════════════════════════════
   共用容器
════════════════════════════════ */
.botry-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.botry-section {
  padding: 5rem 0;
}
.botry-section-alt {
  background: linear-gradient(180deg, var(--botry-bg2) 0%, var(--botry-bg) 100%);
}

/* 區段標題 */
.botry-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--botry-lavender);
  color: var(--botry-purple);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.botry-section-title {
  font-family: var(--botry-font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--botry-text);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.botry-section-title strong {
  background: var(--botry-grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.botry-section-desc {
  font-size: 1rem;
  color: var(--botry-text-md);
  max-width: 580px;
  line-height: 1.8;
}
.botry-section-head {
  margin-bottom: 3rem;
}
.botry-section-head.center {
  text-align: center;
}
.botry-section-head.center .botry-section-desc {
  margin: 0 auto;
}

/* ════════════════════════════════
   § HERO — 英雄區塊
════════════════════════════════ */
.botry-hero {
  background: var(--botry-grad-hero);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.botry-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,150,255,0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.botry-hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,180,220,0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.botry-hero-inner {
  position: relative;
  z-index: 1;
}
.botry-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124,92,191,0.12);
  border: 1px solid rgba(124,92,191,0.25);
  color: var(--botry-purple);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.botry-hero-title {
  font-family: var(--botry-font-serif);
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--botry-text);
  margin-bottom: 1.2rem;
}
.botry-hero-title .accent {
  background: var(--botry-grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.botry-hero-sub {
  font-size: 1.1rem;
  color: var(--botry-text-md);
  max-width: 520px;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.botry-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.botry-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--botry-grad-accent);
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  transition: all 0.25s;
  box-shadow: 0 6px 20px rgba(124,92,191,0.3);
  cursor: pointer;
  border: none;
}
.botry-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(124,92,191,0.4);
}
.botry-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--botry-white);
  color: var(--botry-purple);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  border: 1.5px solid var(--botry-lavender-dk);
  transition: all 0.25s;
}
.botry-btn-secondary:hover {
  background: var(--botry-lavender);
  transform: translateY(-2px);
}

/* 英雄統計數字 */
.botry-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.botry-stat-item {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--botry-r-md);
  padding: 1rem 1.5rem;
  text-align: center;
  min-width: 120px;
  animation: botryFadeUp 0.6s ease backwards;
}
.botry-stat-item:nth-child(1) { animation-delay: 0.1s; }
.botry-stat-item:nth-child(2) { animation-delay: 0.2s; }
.botry-stat-item:nth-child(3) { animation-delay: 0.3s; }
.botry-stat-item:nth-child(4) { animation-delay: 0.4s; }
.botry-stat-num {
  font-family: var(--botry-font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  background: var(--botry-grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.2;
}
.botry-stat-label {
  font-size: 0.75rem;
  color: var(--botry-text-md);
  font-weight: 500;
  margin-top: 0.25rem;
}

@keyframes botryFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════
   § 方案卡片 PRICING
════════════════════════════════ */
.botry-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.botry-plan-card {
  background: var(--botry-white);
  border: 1.5px solid var(--botry-border);
  border-radius: var(--botry-r-lg);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  position: relative;
}
.botry-plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--botry-shadow-lg);
  border-color: var(--botry-lavender-dk);
}
.botry-plan-card.featured {
  border-color: var(--botry-purple);
  box-shadow: var(--botry-shadow-md);
}
.botry-plan-popular {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--botry-grad-accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 1.2rem;
  border-radius: 0 0 12px 12px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.botry-plan-header {
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  background: var(--botry-grad-card);
  border-bottom: 1px solid var(--botry-border-lt);
}
.botry-plan-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  background: var(--botry-lavender);
  border-radius: var(--botry-r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.botry-plan-card.featured .botry-plan-icon {
  background: var(--botry-grad-accent);
}
.botry-plan-name {
  font-family: var(--botry-font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--botry-text);
  margin-bottom: 0.5rem;
}
.botry-plan-price {
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--botry-grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
}
.botry-plan-price sup {
  font-size: 1rem;
  font-weight: 600;
}
.botry-plan-price-note {
  font-size: 0.78rem;
  color: var(--botry-text-lt);
  margin-top: 0.25rem;
}
.botry-plan-body {
  padding: 1.5rem;
}
.botry-plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.botry-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--botry-text-md);
  line-height: 1.5;
}
.botry-feat-check {
  width: 18px;
  height: 18px;
  background: var(--botry-teal-lt);
  color: var(--botry-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.botry-plan-card.featured .botry-feat-check {
  background: linear-gradient(135deg, #e0d4ff, #f5d8ee);
  color: var(--botry-purple);
}
.botry-plan-badge {
  display: inline-block;
  background: var(--botry-gold-lt);
  color: #8a5500;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 10px;
  margin-left: 4px;
  vertical-align: middle;
}
.botry-plan-cta {
  display: block;
  text-align: center;
  margin: 1.5rem;
  padding: 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s;
  background: var(--botry-lavender);
  color: var(--botry-purple);
  border: 1.5px solid var(--botry-lavender-dk);
}
.botry-plan-cta:hover {
  background: var(--botry-lavender-md);
  transform: translateY(-2px);
}
.botry-plan-card.featured .botry-plan-cta {
  background: var(--botry-grad-accent);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(124,92,191,0.3);
}
.botry-plan-card.featured .botry-plan-cta:hover {
  box-shadow: 0 8px 20px rgba(124,92,191,0.4);
}

/* 加購卡 */
.botry-addon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.5rem;
}
.botry-addon-card {
  background: var(--botry-white);
  border: 1.5px solid var(--botry-border);
  border-radius: var(--botry-r-md);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all 0.25s;
}
.botry-addon-card:hover {
  box-shadow: var(--botry-shadow-sm);
  transform: translateY(-3px);
  border-color: var(--botry-lavender-dk);
}
.botry-addon-icon {
  width: 44px;
  height: 44px;
  background: var(--botry-lavender);
  border-radius: var(--botry-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.botry-addon-info { flex: 1; }
.botry-addon-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--botry-text);
  margin-bottom: 0.2rem;
}
.botry-addon-price {
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--botry-grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.botry-addon-desc {
  font-size: 0.8rem;
  color: var(--botry-text-lt);
  margin-top: 0.4rem;
  line-height: 1.6;
}

/* 方案比較表 */
.botry-compare-wrap {
  margin-top: 3rem;
  overflow-x: auto;
  border-radius: var(--botry-r-md);
  box-shadow: var(--botry-shadow-sm);
}
.botry-compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--botry-white);
  font-size: 0.875rem;
  min-width: 600px;
}
.botry-compare-table th {
  background: var(--botry-grad-card);
  padding: 1rem 1.2rem;
  text-align: center;
  font-weight: 700;
  color: var(--botry-text);
  border-bottom: 2px solid var(--botry-border);
}
.botry-compare-table th:first-child { text-align: left; }
.botry-compare-table td {
  padding: 0.85rem 1.2rem;
  border-bottom: 1px solid var(--botry-border-lt);
  text-align: center;
  color: var(--botry-text-md);
}
.botry-compare-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--botry-text);
}
.botry-compare-table tr:last-child td { border-bottom: none; }
.botry-compare-table tr:hover td { background: var(--botry-lavender); }
.botry-tc-yes { color: var(--botry-teal); font-weight: 700; font-size: 1rem; }
.botry-tc-no  { color: #ccc; }
.botry-tc-price {
  font-weight: 800;
  background: var(--botry-grad-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.botry-th-featured {
  background: linear-gradient(135deg, #ede5ff 0%, #f8e6f8 100%) !important;
  color: var(--botry-purple) !important;
}

/* ════════════════════════════════
   § 成果展示 PORTFOLIO
════════════════════════════════ */
.botry-portfolio-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.botry-portfolio-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.botry-trust-item {
  background: var(--botry-lavender);
  border-radius: var(--botry-r-sm);
  padding: 0.85rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--botry-purple-dk);
}

/* 過濾器 */
.botry-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.botry-filter-btn {
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  border: 1.5px solid var(--botry-border);
  background: var(--botry-white);
  color: var(--botry-text-md);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.botry-filter-btn:hover,
.botry-filter-btn.active {
  background: var(--botry-grad-accent);
  color: white;
  border-color: transparent;
  box-shadow: 0 3px 10px rgba(124,92,191,0.25);
}

/* 作品卡 */
.botry-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}
.botry-pf-card {
  background: var(--botry-white);
  border-radius: var(--botry-r-lg);
  overflow: hidden;
  border: 1.5px solid var(--botry-border);
  transition: all 0.35s cubic-bezier(0.34,1.2,0.64,1);
  display: flex;
  flex-direction: column;
}
.botry-pf-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--botry-shadow-lg);
  border-color: var(--botry-lavender-dk);
}
.botry-pf-preview {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--botry-grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.botry-pf-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.botry-pf-card:hover .botry-pf-preview img {
  transform: scale(1.05);
}
.botry-pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(90,62,154,0.85), rgba(199,91,154,0.75));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.botry-pf-card:hover .botry-pf-overlay {
  opacity: 1;
}
.botry-pf-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--botry-purple);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 700;
  padding: 0.65rem 1.5rem;
  border-radius: 20px;
  transition: all 0.2s;
  transform: translateY(10px);
  transition: transform 0.3s, box-shadow 0.2s;
}
.botry-pf-card:hover .botry-pf-view-btn {
  transform: translateY(0);
}
.botry-pf-view-btn:hover {
  box-shadow: 0 4px 14px rgba(0,0,0,0.2);
}
.botry-pf-industry-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(6px);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--botry-purple);
  padding: 0.2rem 0.7rem;
  border-radius: 12px;
}
.botry-pf-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.botry-pf-name {
  font-family: var(--botry-font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--botry-text);
  margin-bottom: 0.4rem;
}
.botry-pf-desc {
  font-size: 0.83rem;
  color: var(--botry-text-md);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1rem;
}
.botry-pf-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.botry-pf-tag {
  font-size: 0.7rem;
  padding: 0.15rem 0.65rem;
  border-radius: 12px;
  background: var(--botry-lavender);
  color: var(--botry-purple-dk);
  font-weight: 600;
}
.botry-pf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--botry-border-lt);
}
.botry-pf-url {
  font-size: 0.75rem;
  color: var(--botry-text-lt);
  font-family: monospace;
}
.botry-pf-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--botry-grad-accent);
  color: white;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 14px;
  transition: all 0.2s;
}
.botry-pf-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(124,92,191,0.35);
}

/* 案例封面顏色 (無截圖時的漸層替代) */
.botry-pf-cover-1 { background: linear-gradient(135deg, #e8f5e9, #c8e6c9); }
.botry-pf-cover-2 { background: linear-gradient(135deg, #e3f2fd, #bbdefb); }
.botry-pf-cover-3 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
.botry-pf-cover-4 { background: linear-gradient(135deg, #fff3e0, #ffe0b2); }
.botry-pf-cover-5 { background: linear-gradient(135deg, #f3e5f5, #e1bee7); }
.botry-pf-cover-6 { background: linear-gradient(135deg, #e0f7fa, #b2ebf2); }

.botry-pf-cover-emoji {
  font-size: 3.5rem;
  opacity: 0.6;
}

/* ════════════════════════════════
   § 服務特色
════════════════════════════════ */
.botry-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}
.botry-feature-card {
  background: var(--botry-white);
  border: 1.5px solid var(--botry-border-lt);
  border-radius: var(--botry-r-md);
  padding: 1.8rem 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.botry-feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--botry-grad-accent);
  transform: scaleY(0);
  transition: transform 0.3s;
  border-radius: 2px 0 0 2px;
}
.botry-feature-card:hover::before { transform: scaleY(1); }
.botry-feature-card:hover {
  box-shadow: var(--botry-shadow-md);
  transform: translateX(4px);
}
.botry-feature-icon {
  width: 48px;
  height: 48px;
  background: var(--botry-lavender);
  border-radius: var(--botry-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.botry-feature-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--botry-text);
  margin-bottom: 0.5rem;
}
.botry-feature-desc {
  font-size: 0.83rem;
  color: var(--botry-text-md);
  line-height: 1.75;
}

/* ════════════════════════════════
   § E-E-A-T 信任區塊
════════════════════════════════ */
.botry-eeat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.botry-eeat-card {
  background: var(--botry-white);
  border-radius: var(--botry-r-md);
  padding: 2rem;
  border: 1.5px solid var(--botry-border-lt);
  transition: all 0.25s;
}
.botry-eeat-card:hover {
  box-shadow: var(--botry-shadow-sm);
  border-color: var(--botry-lavender-dk);
}
.botry-eeat-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.botry-eeat-icon {
  width: 44px;
  height: 44px;
  background: var(--botry-grad-accent);
  border-radius: var(--botry-r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.botry-eeat-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--botry-text);
}
.botry-eeat-sub {
  font-size: 0.7rem;
  color: var(--botry-text-lt);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.botry-eeat-desc {
  font-size: 0.85rem;
  color: var(--botry-text-md);
  line-height: 1.8;
}

/* ════════════════════════════════
   § FAQ 常見問答
════════════════════════════════ */
.botry-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.botry-faq-item {
  background: var(--botry-white);
  border: 1.5px solid var(--botry-border-lt);
  border-radius: var(--botry-r-md);
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.botry-faq-item:hover { box-shadow: var(--botry-shadow-sm); }
.botry-faq-q {
  padding: 1.1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--botry-text);
  user-select: none;
  gap: 1rem;
}
.botry-faq-q:hover { color: var(--botry-purple); }
.botry-faq-arrow {
  width: 28px;
  height: 28px;
  background: var(--botry-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  font-size: 0.75rem;
  color: var(--botry-purple);
}
.botry-faq-item.open .botry-faq-arrow {
  transform: rotate(180deg);
  background: var(--botry-grad-accent);
  color: white;
}
.botry-faq-a {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.875rem;
  color: var(--botry-text-md);
  line-height: 1.85;
}
.botry-faq-item.open .botry-faq-a {
  max-height: 500px;
  padding: 0 1.5rem 1.2rem;
}

/* ════════════════════════════════
   § CTA 聯絡區塊
════════════════════════════════ */
.botry-cta-section {
  background: linear-gradient(135deg, #4a2e90 0%, #7c3d7a 50%, #a43060 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.botry-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255,200,230,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(200,170,255,0.15) 0%, transparent 50%);
}
.botry-cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.botry-cta-title {
  font-family: var(--botry-font-serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}
.botry-cta-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}
.botry-cta-contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}
.botry-cta-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 20px;
  padding: 0.55rem 1.2rem;
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}
.botry-cta-contact-item:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}
.botry-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.botry-btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--botry-purple-dk);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  transition: all 0.25s;
}
.botry-btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}
.botry-btn-cta-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 30px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.25s;
}
.botry-btn-cta-outline:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-2px);
}

/* ════════════════════════════════
   RWD 響應式斷點
════════════════════════════════ */
@media (max-width: 1024px) {
  .botry-portfolio-intro { grid-template-columns: 1fr; }
  .botry-footer-grid { grid-template-columns: 1fr 1fr; }
  .botry-eeat-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .botry-nav { display: none; }
  .botry-hamburger { display: flex; }
  .botry-section { padding: 3.5rem 0; }
  .botry-pricing-grid { grid-template-columns: 1fr 1fr; }
  .botry-eeat-grid { grid-template-columns: 1fr; }
  .botry-footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .botry-portfolio-trust { grid-template-columns: 1fr; }
  .botry-hero { padding: 4rem 0 3.5rem; }
}

@media (max-width: 480px) {
  .botry-container { padding: 0 1.2rem; }
  .botry-pricing-grid { grid-template-columns: 1fr; }
  .botry-portfolio-grid { grid-template-columns: 1fr; }
  .botry-features-grid { grid-template-columns: 1fr; }
  .botry-hero-stats { gap: 0.75rem; }
  .botry-stat-item { min-width: 100px; padding: 0.8rem 1rem; }
}

/* ── 入場動畫 ── */
.botry-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.botry-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 浮動聯絡按鈕 ── */
.botry-float-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--botry-grad-accent);
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 6px 20px rgba(124,92,191,0.45);
  text-decoration: none;
  z-index: 200;
  transition: all 0.25s;
  animation: botryPulse 2s ease-in-out infinite;
}
.botry-float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(124,92,191,0.55);
  animation: none;
}
@keyframes botryPulse {
  0%, 100% { box-shadow: 0 6px 20px rgba(124,92,191,0.45); }
  50% { box-shadow: 0 6px 28px rgba(124,92,191,0.65), 0 0 0 8px rgba(124,92,191,0.1); }
}

/* 備註小字條 */
.botry-note-bar {
  background: var(--botry-lavender);
  border: 1.5px solid var(--botry-lavender-md);
  border-radius: var(--botry-r-md);
  padding: 1rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  font-size: 0.82rem;
  color: var(--botry-purple-dk);
  font-weight: 500;
}
.botry-note-bar span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}