/* ═══════════════════════════════════════════
       CSS 變數 (使用 botry- 前綴命名空間)
    ═══════════════════════════════════════════ */
    :root {
      --rwd-bg:         #f7f5fb;
      --rwd-bg2:        #edeaf6;
      --rwd-purple:     #6c5fc7;
      --rwd-purple-dk:  #4b3fa0;
      --rwd-purple-lt:  #ede9f8;
      --rwd-violet:     #9b8de8;
      --rwd-sage:       #7aad9a;
      --rwd-cream:      #faf8f2;
      --rwd-text:       #2a2240;
      --rwd-text-md:    #5a5272;
      --rwd-text-lt:    #8e87a8;
      --rwd-border:     rgba(108,95,199,0.15);
      --rwd-white:      #ffffff;
      --rwd-shadow:     0 8px 32px rgba(108,95,199,0.10);
      --rwd-radius:     18px;
      --rwd-transition: 0.28s cubic-bezier(0.4,0,0.2,1);
    }

    /* ── RESET / BASE ── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      background: var(--rwd-bg);
      color: var(--rwd-text);
      font-family: 'Noto Sans TC', sans-serif;
      font-size: 15px;
      line-height: 1.75;
      padding-top: 0px; /* 補 fixed nav 高度 */
    }

    /* ── UTILITY ── */
    .botry-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
    }
    @media (max-width: 640px) {
      .botry-container { padding: 0 1.2rem; }
    }

    /* ══════════════════════════════════════════
       HERO 區塊
    ══════════════════════════════════════════ */
    .botry-hero {
      background: linear-gradient(145deg, #e8e3f5 0%, #d8d0f0 40%, #c8d8ee 100%);
      padding: 4.5rem 0 3.5rem;
      position: relative;
      overflow: hidden;
    }
    .botry-hero::before {
      content: '';
      position: absolute;
      top: -80px; right: -60px;
      width: 420px; height: 420px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(108,95,199,0.12) 0%, transparent 70%);
      pointer-events: none;
    }
    .botry-hero::after {
      content: '';
      position: absolute;
      bottom: -60px; left: -40px;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(122,173,154,0.10) 0%, transparent 70%);
      pointer-events: none;
    }
    .botry-hero__inner {
      position: relative;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 2rem;
      display: flex;
      align-items: center;
      gap: 3rem;
    }
    .botry-hero__text { flex: 1; }
    .botry-hero__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(108,95,199,0.12);
      color: var(--rwd-purple);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      padding: 4px 14px;
      border-radius: 30px;
      border: 1px solid rgba(108,95,199,0.2);
      margin-bottom: 1rem;
    }
    .botry-hero__h2 {
      font-family: 'Noto Serif TC', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 700;
      color: var(--rwd-text);
      line-height: 1.35;
      margin-bottom: 1rem;
      letter-spacing: 0.01em;
    }
    .botry-hero__h2 em {
      font-style: normal;
      color: var(--rwd-purple);
    }
    .botry-hero__desc {
      font-size: 1rem;
      color: var(--rwd-text-md);
      max-width: 520px;
      margin-bottom: 1.8rem;
      line-height: 1.85;
    }
    .botry-hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
    .botry-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: linear-gradient(135deg, var(--rwd-purple), var(--rwd-purple-dk));
      color: white;
      padding: 0.75rem 1.6rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 4px 18px rgba(108,95,199,0.38);
      transition: transform var(--rwd-transition), box-shadow var(--rwd-transition);
    }
    .botry-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(108,95,199,0.45);
    }
    .botry-btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: white;
      color: var(--rwd-purple);
      padding: 0.72rem 1.4rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      border: 1.5px solid rgba(108,95,199,0.3);
      transition: border-color var(--rwd-transition), background var(--rwd-transition), color var(--rwd-transition);
    }
    .botry-btn-outline:hover {
      border-color: var(--rwd-purple);
      background: var(--rwd-purple-lt);
    }

    /* HERO 裝飾圖形 */
    .botry-hero__visual {
      flex: 0 0 320px;
      position: relative;
    }
    .botry-device-stack {
      position: relative;
      width: 300px;
      height: 220px;
    }
    .botry-device-stack__desktop {
      position: absolute;
      bottom: 0; left: 0;
      width: 220px; height: 155px;
      background: white;
      border-radius: 10px 10px 6px 6px;
      box-shadow: 0 12px 40px rgba(108,95,199,0.18);
      border: 2px solid rgba(108,95,199,0.15);
      overflow: hidden;
    }
    .botry-device-stack__desktop::before {
      content: '';
      display: block;
      height: 22px;
      background: linear-gradient(90deg, var(--rwd-purple-lt), #e8e3f5);
      border-bottom: 1px solid var(--rwd-border);
    }
    .botry-device-stack__desktop::after {
      content: '';
      display: block;
      margin: 10px 12px;
      height: 8px;
      background: linear-gradient(90deg, var(--rwd-purple), var(--rwd-violet) 60%, transparent);
      border-radius: 4px;
      opacity: 0.4;
    }
    .botry-device-stack__tablet {
      position: absolute;
      bottom: 10px; right: 0;
      width: 105px; height: 145px;
      background: white;
      border-radius: 10px;
      box-shadow: 0 8px 28px rgba(108,95,199,0.15);
      border: 2px solid rgba(108,95,199,0.12);
      overflow: hidden;
    }
    .botry-device-stack__tablet::before {
      content: '';
      display: block;
      height: 16px;
      background: linear-gradient(90deg, #e8e3f5, var(--rwd-purple-lt));
      border-bottom: 1px solid var(--rwd-border);
    }
    .botry-device-stack__phone {
      position: absolute;
      top: 0; right: 20px;
      width: 60px; height: 105px;
      background: white;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(108,95,199,0.15);
      border: 2px solid rgba(108,95,199,0.12);
      overflow: hidden;
    }
    .botry-device-stack__phone::before {
      content: '';
      display: block;
      height: 10px;
      background: var(--rwd-purple-lt);
      border-bottom: 1px solid var(--rwd-border);
    }
    .botry-device-lines {
      position: absolute;
      top: 35px; left: 14px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }
    .botry-device-line {
      height: 6px;
      border-radius: 3px;
      background: linear-gradient(90deg, rgba(108,95,199,0.25), transparent);
    }
    /* 小裝飾點動畫 */
    .botry-dot-pulse {
      position: absolute;
      top: 12px; right: 12px;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--rwd-sage);
      animation: botry-pulse 2s ease-in-out infinite;
    }
    @keyframes botry-pulse {
      0%,100% { box-shadow: 0 0 0 0 rgba(122,173,154,0.4); }
      50%      { box-shadow: 0 0 0 8px rgba(122,173,154,0); }
    }

    @media (max-width: 820px) {
      .botry-hero__visual { display: none; }
      .botry-hero__inner { flex-direction: column; align-items: flex-start; }
    }

    /* ══════════════════════════════════════════
       BREADCRUMB
    ══════════════════════════════════════════ */
    .botry-breadcrumb {
      padding: 0.85rem 0;
      font-size: 12px;
      color: var(--rwd-text-lt);
      border-bottom: 1px solid var(--rwd-border);
    }
    .botry-breadcrumb a {
      color: var(--rwd-text-lt);
      text-decoration: none;
      transition: color var(--rwd-transition);
    }
    .botry-breadcrumb a:hover { color: var(--rwd-purple); }
    .botry-breadcrumb span { margin: 0 0.4rem; }

    /* ══════════════════════════════════════════
       SECTION WRAPPER
    ══════════════════════════════════════════ */
    .botry-section {
      padding: 4rem 0;
    }
    .botry-section--alt {
      background: var(--rwd-cream);
    }
    .botry-section--soft {
      background: linear-gradient(180deg, var(--rwd-bg) 0%, var(--rwd-bg2) 100%);
    }
    .botry-section__head {
      text-align: center;
      margin-bottom: 2.8rem;
    }
    .botry-section__eyebrow {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--rwd-purple);
      margin-bottom: 0.6rem;
    }
    .botry-section__h2 {
      font-family: 'Noto Serif TC', serif;
      font-size: clamp(1.4rem, 3vw, 2rem);
      font-weight: 700;
      color: var(--rwd-text);
      margin-bottom: 0.6rem;
    }
    .botry-section__sub {
      font-size: 0.9rem;
      color: var(--rwd-text-md);
    }

    /* ══════════════════════════════════════════
       WHAT IS RWD — 說明區
    ══════════════════════════════════════════ */
    .botry-rwd-intro {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2.5rem;
      align-items: center;
    }
    .botry-rwd-intro__text h3 {
      font-family: 'Noto Serif TC', serif;
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--rwd-text);
      margin-bottom: 1rem;
    }
    .botry-rwd-intro__text p {
      font-size: 0.9rem;
      color: var(--rwd-text-md);
      line-height: 1.9;
      margin-bottom: 0.8rem;
    }
    .botry-tag-list {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 1.2rem;
    }
    .botry-tag {
      background: var(--rwd-purple-lt);
      color: var(--rwd-purple);
      font-size: 12px;
      font-weight: 600;
      padding: 4px 12px;
      border-radius: 20px;
      border: 1px solid rgba(108,95,199,0.2);
    }
    .botry-tag--geo {
      background: rgba(122,173,154,0.12);
      color: #2a6850;
      border-color: rgba(122,173,154,0.3);
    }

    /* 裝置比較圖示 */
    .botry-devices-row {
      display: flex;
      align-items: flex-end;
      justify-content: center;
      gap: 1.2rem;
    }
    .botry-dv {
      background: white;
      border-radius: 10px;
      box-shadow: var(--rwd-shadow);
      border: 1.5px solid var(--rwd-border);
      overflow: hidden;
      transition: transform var(--rwd-transition);
    }
    .botry-dv:hover { transform: translateY(-4px); }
    .botry-dv__bar {
      height: 14px;
      background: linear-gradient(90deg, var(--rwd-purple-lt), #e0daf8);
      display: flex;
      align-items: center;
      padding: 0 6px;
      gap: 3px;
    }
    .botry-dv__dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: rgba(108,95,199,0.3);
    }
    .botry-dv__screen {
      padding: 8px;
    }
    .botry-dv__line {
      height: 5px;
      border-radius: 3px;
      background: linear-gradient(90deg, rgba(108,95,199,0.2), transparent);
      margin-bottom: 4px;
    }
    .botry-dv--desktop { width: 160px; }
    .botry-dv--tablet  { width: 100px; }
    .botry-dv--phone   { width: 60px; border-radius: 12px; }
    .botry-dv__label {
      text-align: center;
      font-size: 10px;
      color: var(--rwd-text-lt);
      padding: 4px 0;
      font-weight: 500;
    }

    @media (max-width: 720px) {
      .botry-rwd-intro { grid-template-columns: 1fr; }
    }

    /* ══════════════════════════════════════════
       FEATURES 特色卡片
    ══════════════════════════════════════════ */
    .botry-features {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 1.2rem;
    }
    .botry-feature-card {
      background: white;
      border-radius: var(--rwd-radius);
      padding: 1.6rem 1.4rem;
      box-shadow: 0 4px 20px rgba(108,95,199,0.07);
      border: 1px solid var(--rwd-border);
      transition: transform var(--rwd-transition), box-shadow var(--rwd-transition);
      position: relative;
      overflow: hidden;
    }
    .botry-feature-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--rwd-purple), var(--rwd-violet));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform var(--rwd-transition);
    }
    .botry-feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(108,95,199,0.13); }
    .botry-feature-card:hover::before { transform: scaleX(1); }
    .botry-feature-icon {
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--rwd-purple-lt);
      display: flex; align-items: center; justify-content: center;
      font-size: 20px;
      margin-bottom: 1rem;
    }
    .botry-feature-card h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--rwd-text);
      margin-bottom: 0.4rem;
    }
    .botry-feature-card p {
      font-size: 0.82rem;
      color: var(--rwd-text-md);
      line-height: 1.8;
    }

    /* ══════════════════════════════════════════
       PROCESS 流程
    ══════════════════════════════════════════ */
    .botry-process {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
      gap: 0;
      counter-reset: botry-step;
      position: relative;
    }
    .botry-process__item {
      text-align: center;
      padding: 1.6rem 1rem;
      position: relative;
    }
    .botry-process__item:not(:last-child)::after {
      content: '→';
      position: absolute;
      top: 1.9rem;
      right: -0.5rem;
      color: rgba(108,95,199,0.3);
      font-size: 1.2rem;
      z-index: 1;
    }
    .botry-process__num {
      width: 48px; height: 48px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--rwd-purple), var(--rwd-violet));
      color: white;
      font-family: 'Noto Serif TC', serif;
      font-size: 16px;
      font-weight: 700;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 0.8rem;
      box-shadow: 0 4px 14px rgba(108,95,199,0.3);
    }
    .botry-process__label {
      font-size: 0.82rem;
      font-weight: 700;
      color: var(--rwd-text);
      margin-bottom: 0.25rem;
    }
    .botry-process__desc {
      font-size: 0.75rem;
      color: var(--rwd-text-lt);
    }
    @media (max-width: 640px) {
      .botry-process { grid-template-columns: repeat(2, 1fr); }
      .botry-process__item::after { display: none; }
    }

    /* ══════════════════════════════════════════
       PRICE 方案區 (整合+擴充 價格.html)
    ══════════════════════════════════════════ */
    .botry-price-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 1.4rem;
      justify-content: center;
      margin-bottom: 2rem;
    }
    .botry-plan {
      background: white;
      border-radius: 22px;
      flex: 1 1 200px;
      min-width: 190px;
      max-width: 280px;
      box-shadow: 0 16px 36px -10px rgba(108,95,199,0.12);
      border: 1px solid var(--rwd-border);
      overflow: hidden;
      transition: transform var(--rwd-transition), box-shadow var(--rwd-transition);
      position: relative;
    }
    .botry-plan:hover {
      transform: translateY(-6px);
      box-shadow: 0 24px 48px -12px rgba(108,95,199,0.2);
    }
    .botry-plan--featured {
      border: 2px solid rgba(108,95,199,0.4);
      box-shadow: 0 20px 48px -12px rgba(108,95,199,0.2);
    }
    .botry-plan__badge {
      position: absolute;
      top: 12px; right: 12px;
      background: linear-gradient(135deg, var(--rwd-purple), var(--rwd-violet));
      color: white;
      font-size: 10px;
      font-weight: 700;
      padding: 3px 10px;
      border-radius: 20px;
      letter-spacing: 0.05em;
    }
    .botry-plan__head {
      padding: 1.4rem 1.2rem 1rem;
      border-bottom: 1px solid #f0eef8;
      background: linear-gradient(160deg, #faf9ff 0%, white 100%);
    }
    .botry-plan__name {
      font-family: 'Noto Serif TC', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--rwd-text);
      margin-bottom: 0.4rem;
    }
    .botry-plan__price {
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--rwd-purple-dk);
      letter-spacing: -0.02em;
    }
    .botry-plan__price small {
      font-size: 0.8rem;
      font-weight: 500;
      color: var(--rwd-text-lt);
    }
    .botry-plan__body { padding: 1rem 1.2rem 1.4rem; }
    .botry-plan__list { list-style: none; }
    .botry-plan__list li {
      font-size: 0.82rem;
      padding: 0.4rem 0;
      display: flex;
      align-items: flex-start;
      gap: 7px;
      color: var(--rwd-text-md);
      border-bottom: 1px dashed rgba(108,95,199,0.1);
    }
    .botry-plan__list li:last-child { border-bottom: none; }
    .botry-plan__check { color: var(--rwd-sage); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

    /* Addons */
    .botry-addons {
      background: white;
      border-radius: 20px;
      padding: 1.6rem 1.8rem;
      box-shadow: 0 8px 24px rgba(108,95,199,0.07);
      border: 1px solid var(--rwd-border);
      margin-bottom: 1.5rem;
    }
    .botry-addons__title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--rwd-text);
      margin-bottom: 1.2rem;
      display: flex;
      align-items: center;
      gap: 8px;
      padding-left: 0.8rem;
      border-left: 4px solid var(--rwd-purple);
    }
    .botry-addons__row {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .botry-addon-item {
      flex: 1;
      min-width: 190px;
      background: var(--rwd-bg);
      border-radius: 14px;
      padding: 1rem 1.2rem;
      border: 1px solid var(--rwd-border);
      transition: border-color var(--rwd-transition), background var(--rwd-transition);
    }
    .botry-addon-item:hover {
      border-color: rgba(108,95,199,0.3);
      background: var(--rwd-purple-lt);
    }
    .botry-addon-item__name { font-size: 0.95rem; font-weight: 700; color: var(--rwd-text); margin-bottom: 0.2rem; }
    .botry-addon-item__price { font-size: 1.3rem; font-weight: 800; color: var(--rwd-purple); margin-bottom: 0.3rem; }
    .botry-addon-item__desc { font-size: 0.78rem; color: var(--rwd-text-md); line-height: 1.7; }

    /* Price footnote */
    .botry-price-note {
      background: rgba(108,95,199,0.06);
      border-radius: 14px;
      padding: 0.8rem 1.4rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      font-size: 0.8rem;
      color: var(--rwd-text-md);
    }
    .botry-price-note span {
      background: white;
      padding: 0.2rem 0.7rem;
      border-radius: 20px;
      border: 1px solid var(--rwd-border);
    }

    /* ══════════════════════════════════════════
       FAQ 區塊
    ══════════════════════════════════════════ */
    .botry-faq { max-width: 740px; margin: 0 auto; }
    .botry-faq__item {
      background: white;
      border-radius: 14px;
      border: 1px solid var(--rwd-border);
      margin-bottom: 0.8rem;
      overflow: hidden;
      transition: box-shadow var(--rwd-transition);
    }
    .botry-faq__item:hover { box-shadow: 0 4px 18px rgba(108,95,199,0.08); }
    .botry-faq__q {
      width: 100%;
      background: none;
      border: none;
      padding: 1.1rem 1.4rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      cursor: pointer;
      font-family: 'Noto Sans TC', sans-serif;
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--rwd-text);
      text-align: left;
    }
    .botry-faq__arrow {
      flex-shrink: 0;
      width: 22px; height: 22px;
      border-radius: 50%;
      background: var(--rwd-purple-lt);
      color: var(--rwd-purple);
      font-size: 14px;
      display: flex; align-items: center; justify-content: center;
      transition: transform var(--rwd-transition), background var(--rwd-transition);
    }
    .botry-faq__item.botry-open .botry-faq__arrow {
      transform: rotate(180deg);
      background: var(--rwd-purple);
      color: white;
    }
    .botry-faq__a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding var(--rwd-transition);
      font-size: 0.85rem;
      color: var(--rwd-text-md);
      line-height: 1.85;
      padding: 0 1.4rem;
    }
    .botry-faq__item.botry-open .botry-faq__a {
      max-height: 300px;
      padding-bottom: 1.2rem;
    }

    /* ══════════════════════════════════════════
       WHY US 為什麼選博才
    ══════════════════════════════════════════ */
    .botry-why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1rem;
    }
    .botry-why-card {
      background: white;
      border-radius: 16px;
      padding: 1.4rem;
      text-align: center;
      box-shadow: 0 4px 18px rgba(108,95,199,0.06);
      border: 1px solid var(--rwd-border);
      transition: transform var(--rwd-transition);
    }
    .botry-why-card:hover { transform: translateY(-3px); }
    .botry-why-card__num {
      font-family: 'Noto Serif TC', serif;
      font-size: 2rem;
      font-weight: 700;
      background: linear-gradient(135deg, var(--rwd-purple), var(--rwd-violet));
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 0.2rem;
    }
    .botry-why-card__label {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--rwd-text);
      margin-bottom: 0.3rem;
    }
    .botry-why-card__desc {
      font-size: 0.76rem;
      color: var(--rwd-text-lt);
      line-height: 1.7;
    }

    /* ══════════════════════════════════════════
       CTA Banner
    ══════════════════════════════════════════ */
    .botry-cta-banner {
      background: linear-gradient(135deg, var(--rwd-purple-dk) 0%, var(--rwd-purple) 50%, #7060c8 100%);
      border-radius: 24px;
      padding: 3rem 2.5rem;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
    }
    .botry-cta-banner::before {
      content: '';
      position: absolute;
      top: -50px; right: -50px;
      width: 250px; height: 250px;
      border-radius: 50%;
      background: rgba(255,255,255,0.05);
    }
    .botry-cta-banner h2 {
      font-family: 'Noto Serif TC', serif;
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 0.6rem;
      position: relative;
    }
    .botry-cta-banner p {
      font-size: 0.9rem;
      opacity: 0.85;
      margin-bottom: 1.8rem;
      position: relative;
    }
    .botry-cta-banner__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
      justify-content: center;
      position: relative;
    }
    .botry-btn-white {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: white;
      color: var(--rwd-purple-dk);
      padding: 0.75rem 1.6rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      transition: transform var(--rwd-transition), box-shadow var(--rwd-transition);
      box-shadow: 0 4px 18px rgba(0,0,0,0.15);
    }
    .botry-btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    .botry-btn-line {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: #06c755;
      color: white;
      padding: 0.75rem 1.4rem;
      border-radius: 50px;
      font-size: 0.9rem;
      font-weight: 700;
      text-decoration: none;
      transition: transform var(--rwd-transition);
    }
    .botry-btn-line:hover { transform: translateY(-2px); }

    /* ══════════════════════════════════════════
       AREA 服務地區
    ══════════════════════════════════════════ */
    .botry-area-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
    }
    .botry-area-tag {
      background: white;
      border: 1px solid var(--rwd-border);
      color: var(--rwd-text-md);
      font-size: 0.82rem;
      font-weight: 500;
      padding: 5px 14px;
      border-radius: 30px;
      transition: background var(--rwd-transition), color var(--rwd-transition), border-color var(--rwd-transition);
    }
    .botry-area-tag:hover {
      background: var(--rwd-purple-lt);
      color: var(--rwd-purple);
      border-color: rgba(108,95,199,0.3);
    }

    /* ══════════════════════════════════════════
       NAP 資訊帶
    ══════════════════════════════════════════ */
    .botry-nap-bar {
      background: linear-gradient(90deg, var(--rwd-purple-lt) 0%, white 100%);
      border-radius: 16px;
      padding: 1.2rem 1.8rem;
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      align-items: center;
      border: 1px solid var(--rwd-border);
      margin-top: 2rem;
    }
    .botry-nap-item {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.85rem;
      color: var(--rwd-text-md);
    }
    .botry-nap-item a {
      color: var(--rwd-purple);
      text-decoration: none;
      font-weight: 600;
    }
    .botry-nap-icon {
      width: 30px; height: 30px;
      background: var(--rwd-purple-lt);
      border-radius: 8px;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    /* ══════════════════════════════════════════
       SCROLL REVEAL 動畫
    ══════════════════════════════════════════ */
    .botry-reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .botry-reveal.botry-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ══════════════════════════════════════════
       頁尾補充空白
    ══════════════════════════════════════════ */
    .botry-footer-spacer { height: 0.1px; }