 /* ═══════════════════════════════════════════
       botry- 前綴命名空間  ·  超淺紫米白漸層系
    ═══════════════════════════════════════════ */
    :root {
      --botry-bg-a:         #f5f3ff;   /* 超淺紫 */
      --botry-bg-b:         #faf8f5;   /* 米白 */
      --botry-bg-c:         #eef0fb;   /* 薰衣草淺 */
      --botry-surface:      #ffffff;
      --botry-surface-2:    #f8f7fe;
      --botry-border:       #e2ddf8;
      --botry-border-light: #ece9fb;

      --botry-purple:       #6c50e0;
      --botry-purple-dk:    #4e36b8;
      --botry-purple-lt:    #a78bfa;
      --botry-purple-pale:  #ede8ff;
      --botry-teal:         #1da882;
      --botry-teal-lt:      #d0f4ec;
      --botry-gold:         #c07c20;
      --botry-gold-lt:      #fdf0d8;
      --botry-rose:         #d44870;
      --botry-rose-lt:      #fde8f0;
      --botry-sky:          #3b82f6;
      --botry-sky-lt:       #dbeafe;

      --botry-text:         #1e1b2e;
      --botry-text-mid:     #4b4466;
      --botry-text-lt:      #8b83b0;
      --botry-text-xs:      #b0a8cc;

      --botry-radius-sm:    0.75rem;
      --botry-radius-md:    1.25rem;
      --botry-radius-lg:    2rem;
      --botry-radius-xl:    2.5rem;

      --botry-shadow-sm:    0 2px 12px rgba(108,80,224,0.08);
      --botry-shadow-md:    0 8px 32px rgba(108,80,224,0.12);
      --botry-shadow-lg:    0 20px 48px rgba(108,80,224,0.16);
      --botry-shadow-hover: 0 28px 56px rgba(108,80,224,0.22);

      --botry-transition:   all 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
    }

    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Noto Sans TC', sans-serif;
      background: linear-gradient(155deg, var(--botry-bg-a) 0%, var(--botry-bg-b) 45%, var(--botry-bg-c) 100%);
      color: var(--botry-text);
      min-height: 100vh;
      font-size: 15px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    /* ─── Noise overlay ─── */
    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.025'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
    }

    /* ─── Page wrapper ─── */
    .botry-page { position: relative; z-index: 1; max-width: 1280px; margin: 0 auto; padding: 2rem 1.5rem 4rem; }

    /* ═══ BREADCRUMB ═══ */
    .botry-breadcrumb {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.75rem;
      color: var(--botry-text-lt);
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }
    .botry-breadcrumb a { color: var(--botry-purple); text-decoration: none; transition: opacity 0.2s; }
    .botry-breadcrumb a:hover { opacity: 0.7; }
    .botry-breadcrumb .sep { color: var(--botry-border); }

    /* ═══ HERO SECTION ═══ */
    .botry-hero {
      text-align: center;
      padding: 3rem 1rem 2.5rem;
      margin-bottom: 3.5rem;
      position: relative;
    }
    .botry-hero::before {
      content: '';
      position: absolute;
      top: -2rem; left: 50%; transform: translateX(-50%);
      width: 500px; height: 300px;
      background: radial-gradient(ellipse, rgba(108,80,224,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .botry-hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: var(--botry-purple-pale);
      border: 1px solid rgba(108,80,224,0.25);
      border-radius: 30px;
      padding: 0.35rem 1rem;
      font-size: 0.75rem;
      font-weight: 500;
      color: var(--botry-purple-dk);
      letter-spacing: 0.06em;
      margin-bottom: 1.2rem;
      animation: botry-fade-down 0.6s ease both;
    }

    .botry-hero h2 {
      font-family: 'Noto Serif TC', serif;
      font-size: clamp(1.9rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--botry-text);
      line-height: 1.3;
      letter-spacing: -0.01em;
      margin-bottom: 1rem;
      animation: botry-fade-up 0.6s 0.1s ease both;
    }
    .botry-hero h2 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--botry-purple), var(--botry-purple-lt));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .botry-hero-desc {
      max-width: 600px;
      margin: 0 auto 2rem;
      font-size: 1rem;
      color: var(--botry-text-mid);
      line-height: 1.8;
      animation: botry-fade-up 0.6s 0.2s ease both;
    }

    .botry-hero-stats {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 1rem;
      animation: botry-fade-up 0.6s 0.3s ease both;
    }
    .botry-stat-chip {
      background: var(--botry-surface);
      border: 1px solid var(--botry-border);
      border-radius: 30px;
      padding: 0.4rem 1.1rem;
      font-size: 0.8rem;
      color: var(--botry-text-mid);
      box-shadow: var(--botry-shadow-sm);
      display: flex;
      align-items: center;
      gap: 0.4rem;
      transition: var(--botry-transition);
    }
    .botry-stat-chip:hover {
      transform: translateY(-3px);
      box-shadow: var(--botry-shadow-md);
      border-color: var(--botry-purple-lt);
    }
    .botry-stat-chip strong { color: var(--botry-purple); }

    /* ═══ SECTION TITLE ═══ */
    .botry-section-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 2rem;
    }
    .botry-section-num {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--botry-purple), var(--botry-purple-dk));
      color: #fff;
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      flex-shrink: 0;
      box-shadow: 0 4px 14px rgba(108,80,224,0.35);
    }
    .botry-section-title {
      font-family: 'Noto Serif TC', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--botry-text);
    }
    .botry-section-subtitle {
      font-size: 0.85rem;
      color: var(--botry-text-lt);
      margin-top: 0.15rem;
    }
    .botry-divider {
      height: 2px;
      background: linear-gradient(to right, var(--botry-purple), var(--botry-purple-lt), transparent);
      margin-bottom: 2.5rem;
      border: none;
      border-radius: 2px;
    }

    /* ═══ PRICE GRID ═══ */
    .botry-price-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .botry-plan-card {
      background: var(--botry-surface);
      border: 1px solid var(--botry-border-light);
      border-radius: var(--botry-radius-lg);
      overflow: hidden;
      box-shadow: var(--botry-shadow-sm);
      transition: var(--botry-transition);
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .botry-plan-card:hover {
      transform: translateY(-8px) scale(1.01);
      box-shadow: var(--botry-shadow-hover);
      border-color: var(--botry-purple-lt);
    }

    /* Featured card accent */
    .botry-plan-card.botry-featured {
      border: 2px solid var(--botry-purple);
      box-shadow: var(--botry-shadow-lg);
    }
    .botry-plan-card.botry-featured::before {
      content: '⭐ 最受歡迎';
      position: absolute;
      top: -1px; right: 1.2rem;
      background: linear-gradient(135deg, var(--botry-purple), var(--botry-purple-dk));
      color: #fff;
      font-size: 0.65rem;
      font-weight: 600;
      padding: 0.25rem 0.75rem;
      border-radius: 0 0 10px 10px;
      letter-spacing: 0.05em;
      box-shadow: 0 4px 12px rgba(108,80,224,0.4);
    }

    .botry-card-header {
      padding: 1.8rem 1.4rem 1.4rem;
      text-align: center;
      border-bottom: 1px solid var(--botry-border-light);
      background: linear-gradient(160deg, var(--botry-surface-2) 0%, var(--botry-surface) 100%);
    }

    .botry-plan-icon {
      width: 48px; height: 48px;
      border-radius: 16px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      margin: 0 auto 0.9rem;
    }
    .botry-plan-icon.ico-basic   { background: var(--botry-sky-lt); }
    .botry-plan-icon.ico-advanced { background: var(--botry-teal-lt); }
    .botry-plan-icon.ico-seo     { background: var(--botry-gold-lt); }
    .botry-plan-icon.ico-geo     { background: var(--botry-purple-pale); }

    .botry-plan-name {
      font-family: 'Noto Serif TC', serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--botry-text);
      margin-bottom: 0.5rem;
    }

    .botry-price-tag {
      display: flex;
      align-items: baseline;
      justify-content: center;
      gap: 0.2rem;
    }
    .botry-price-tag .currency { font-size: 1rem; color: var(--botry-text-lt); font-weight: 500; }
    .botry-price-tag .amount {
      font-size: 2.2rem;
      font-weight: 800;
      font-family: 'DM Serif Display', serif;
      background: linear-gradient(135deg, var(--botry-purple), var(--botry-purple-lt));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      letter-spacing: -0.02em;
    }
    .botry-price-tag .unit { font-size: 0.8rem; color: var(--botry-text-lt); }

    .botry-card-body {
      padding: 1.4rem;
      flex: 1;
    }

    .botry-feature-list { list-style: none; }
    .botry-feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 0.6rem;
      font-size: 0.85rem;
      color: var(--botry-text-mid);
      padding: 0.5rem 0;
      border-bottom: 1px dashed var(--botry-border-light);
      font-weight: 400;
      line-height: 1.5;
    }
    .botry-feature-list li:last-child { border-bottom: none; }
    .botry-feature-list .chk {
      color: var(--botry-teal);
      font-weight: 700;
      font-size: 0.9rem;
      flex-shrink: 0;
      margin-top: 0.05rem;
    }

    .botry-tag-pill {
      display: inline-block;
      background: var(--botry-purple-pale);
      color: var(--botry-purple-dk);
      font-size: 0.65rem;
      font-weight: 600;
      padding: 0.1rem 0.5rem;
      border-radius: 20px;
      margin-left: 0.3rem;
      vertical-align: middle;
    }
    .botry-tag-pill.geo { background: var(--botry-teal-lt); color: #0f6b50; }
    .botry-tag-pill.seo { background: var(--botry-gold-lt); color: #7a4c10; }
    .botry-tag-pill.new { background: var(--botry-rose-lt); color: #7a2040; }

    .botry-card-footer {
      padding: 1rem 1.4rem 1.4rem;
      border-top: 1px solid var(--botry-border-light);
    }
    .botry-btn-quote {
      display: block;
      width: 100%;
      text-align: center;
      padding: 0.75rem;
      border-radius: var(--botry-radius-sm);
      font-size: 0.85rem;
      font-weight: 600;
      text-decoration: none;
      border: 1.5px solid var(--botry-purple);
      color: var(--botry-purple);
      background: transparent;
      cursor: pointer;
      transition: var(--botry-transition);
      letter-spacing: 0.02em;
    }
    .botry-btn-quote:hover {
      background: var(--botry-purple);
      color: #fff;
      box-shadow: 0 6px 20px rgba(108,80,224,0.3);
      transform: translateY(-2px);
    }
    .botry-btn-quote.botry-btn-primary {
      background: linear-gradient(135deg, var(--botry-purple), var(--botry-purple-dk));
      color: #fff;
      border-color: transparent;
      box-shadow: 0 6px 20px rgba(108,80,224,0.3);
    }
    .botry-btn-quote.botry-btn-primary:hover {
      box-shadow: 0 10px 28px rgba(108,80,224,0.45);
      transform: translateY(-3px);
    }

    /* ═══ SUMMARY TABLE (補充說明表) ═══ */
    .botry-summary-block {
      background: var(--botry-surface);
      border: 1px solid var(--botry-border-light);
      border-radius: var(--botry-radius-md);
      box-shadow: var(--botry-shadow-sm);
      overflow: hidden;
      margin-bottom: 1.5rem;
    }
    .botry-summary-title {
      padding: 1.1rem 1.5rem;
      font-weight: 600;
      font-size: 0.9rem;
      color: var(--botry-text-mid);
      background: var(--botry-surface-2);
      border-bottom: 1px solid var(--botry-border-light);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .botry-summary-table {
      width: 100%;
      border-collapse: collapse;
      font-size: 0.85rem;
    }
    .botry-summary-table th {
      background: var(--botry-surface-2);
      color: var(--botry-text-lt);
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      padding: 0.6rem 1rem;
      text-align: left;
      border-bottom: 1px solid var(--botry-border-light);
    }
    .botry-summary-table td {
      padding: 0.75rem 1rem;
      border-bottom: 1px solid var(--botry-border-light);
      color: var(--botry-text-mid);
      vertical-align: middle;
    }
    .botry-summary-table tr:last-child td { border-bottom: none; }
    .botry-summary-table tr:hover td { background: var(--botry-surface-2); }
    .botry-summary-table .plan-col { font-weight: 600; color: var(--botry-text); }
    .botry-price-hi {
      font-weight: 800;
      font-size: 1.05rem;
      color: var(--botry-purple);
      font-family: 'DM Serif Display', serif;
    }
    .botry-check-yes { color: var(--botry-teal); font-weight: 700; }
    .botry-check-no  { color: var(--botry-text-xs); }

    /* ═══ ADDONS SECTION ═══ */
    .botry-addons-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 1.2rem;
      margin-bottom: 1.5rem;
    }
    .botry-addon-card {
      background: var(--botry-surface);
      border: 1px solid var(--botry-border-light);
      border-radius: var(--botry-radius-md);
      padding: 1.5rem;
      box-shadow: var(--botry-shadow-sm);
      transition: var(--botry-transition);
      position: relative;
      overflow: hidden;
    }
    .botry-addon-card::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(108,80,224,0.03), transparent);
      pointer-events: none;
    }
    .botry-addon-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--botry-shadow-md);
      border-color: var(--botry-purple-lt);
    }
    .botry-addon-icon { font-size: 2rem; margin-bottom: 0.8rem; }
    .botry-addon-name {
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--botry-text);
      margin-bottom: 0.4rem;
    }
    .botry-addon-price {
      font-size: 1.6rem;
      font-weight: 800;
      font-family: 'DM Serif Display', serif;
      color: var(--botry-purple);
      margin-bottom: 0.8rem;
    }
    .botry-addon-price .plus { font-size: 1rem; font-weight: 400; color: var(--botry-text-lt); }
    .botry-addon-features { list-style: none; font-size: 0.82rem; color: var(--botry-text-mid); }
    .botry-addon-features li { padding: 0.3rem 0; display: flex; align-items: center; gap: 0.4rem; }
    .botry-addon-features li::before { content: '◆'; color: var(--botry-purple-lt); font-size: 0.5rem; }

    .botry-addon-combo {
      background: linear-gradient(135deg, var(--botry-gold-lt) 0%, #fff8f0 100%);
      border: 1px solid #f0d0a0;
    }
    .botry-addon-combo:hover { border-color: var(--botry-gold); }
    .botry-addon-combo .botry-addon-price { color: var(--botry-gold); }

    /* ═══ FOOTNOTE ═══ */
    .botry-footnote {
      background: var(--botry-purple-pale);
      border: 1px solid rgba(108,80,224,0.2);
      border-left: 4px solid var(--botry-purple);
      border-radius: var(--botry-radius-sm);
      padding: 1rem 1.5rem;
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 2rem;
      font-size: 0.82rem;
      color: var(--botry-text-mid);
      margin-bottom: 3.5rem;
      font-weight: 500;
    }
    .botry-footnote span { display: flex; align-items: center; gap: 0.4rem; }

    /* ═══ SERVICE AREA SECTION ═══ */
    .botry-area-section { margin-bottom: 3.5rem; }

    /* ─── Dropdown (下拉選單) ─── */
    .botry-area-nav {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      margin-bottom: 2rem;
    }
    .botry-area-tab {
      padding: 0.55rem 1.2rem;
      border-radius: 30px;
      border: 1.5px solid var(--botry-border);
      background: var(--botry-surface);
      color: var(--botry-text-mid);
      font-size: 0.85rem;
      font-weight: 500;
      cursor: pointer;
      transition: var(--botry-transition);
      user-select: none;
    }
    .botry-area-tab:hover {
      border-color: var(--botry-purple-lt);
      color: var(--botry-purple);
      background: var(--botry-purple-pale);
      transform: translateY(-2px);
      box-shadow: var(--botry-shadow-sm);
    }
    .botry-area-tab.active {
      background: linear-gradient(135deg, var(--botry-purple), var(--botry-purple-dk));
      color: #fff;
      border-color: transparent;
      box-shadow: 0 6px 20px rgba(108,80,224,0.35);
    }

    /* ─── Area panel (台中潭子主頁) ─── */
    .botry-area-panel {
      display: none;
      animation: botry-panel-in 0.4s ease both;
    }
    .botry-area-panel.active { display: block; }

    @keyframes botry-panel-in {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* Hero for area page */
    .botry-area-hero {
      background: linear-gradient(145deg, var(--botry-surface) 0%, var(--botry-surface-2) 100%);
      border: 1px solid var(--botry-border-light);
      border-radius: var(--botry-radius-xl);
      overflow: hidden;
      box-shadow: var(--botry-shadow-md);
      margin-bottom: 2rem;
      position: relative;
    }
    .botry-area-hero::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 280px; height: 280px;
      background: radial-gradient(circle, rgba(108,80,224,0.1) 0%, transparent 70%);
      border-radius: 50%;
    }
    .botry-area-hero-inner {
      padding: 2.5rem;
      position: relative;
    }
    .botry-area-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--botry-purple-pale);
      border: 1px solid rgba(108,80,224,0.2);
      border-radius: 20px;
      padding: 0.3rem 0.9rem;
      font-size: 0.72rem;
      font-weight: 600;
      color: var(--botry-purple-dk);
      letter-spacing: 0.06em;
      margin-bottom: 1rem;
    }
    .botry-area-hero h2 {
      font-family: 'Noto Serif TC', serif;
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 700;
      color: var(--botry-text);
      margin-bottom: 0.8rem;
      line-height: 1.4;
    }
    .botry-area-hero h2 .highlight {
      color: var(--botry-purple);
    }
    .botry-area-hero-desc {
      font-size: 0.95rem;
      color: var(--botry-text-mid);
      max-width: 620px;
      line-height: 1.9;
      margin-bottom: 1.5rem;
    }
    .botry-area-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }
    .botry-meta-item {
      display: flex;
      align-items: center;
      gap: 0.4rem;
      background: var(--botry-surface);
      border: 1px solid var(--botry-border);
      border-radius: var(--botry-radius-sm);
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
      color: var(--botry-text-mid);
      box-shadow: var(--botry-shadow-sm);
    }
    .botry-meta-item .icon { font-size: 1rem; }
    .botry-meta-item strong { color: var(--botry-purple); font-weight: 600; }

    /* ─── Content blocks ─── */
    .botry-content-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 1.5rem;
      margin-bottom: 2rem;
    }
    @media (max-width: 768px) {
      .botry-content-grid { grid-template-columns: 1fr; }
    }

    .botry-content-card {
      background: var(--botry-surface);
      border: 1px solid var(--botry-border-light);
      border-radius: var(--botry-radius-md);
      padding: 1.8rem;
      box-shadow: var(--botry-shadow-sm);
    }
    .botry-content-card h3 {
      font-family: 'Noto Serif TC', serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--botry-text);
      margin-bottom: 1rem;
      padding-bottom: 0.7rem;
      border-bottom: 2px solid var(--botry-border-light);
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .botry-content-card p {
      font-size: 0.88rem;
      color: var(--botry-text-mid);
      line-height: 1.9;
      margin-bottom: 0.8rem;
    }
    .botry-content-card p:last-child { margin-bottom: 0; }

    /* Keyword pills in content */
    .botry-kw { color: var(--botry-purple); font-weight: 500; }
    .botry-kw-geo {
      background: var(--botry-teal-lt);
      color: #0f6b50;
      font-weight: 600;
      padding: 0.05rem 0.45rem;
      border-radius: 6px;
      font-size: 0.88em;
    }

    /* Feature list in area */
    .botry-area-features {
      list-style: none;
      font-size: 0.88rem;
      color: var(--botry-text-mid);
    }
    .botry-area-features li {
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      padding: 0.6rem 0;
      border-bottom: 1px solid var(--botry-border-light);
      line-height: 1.6;
    }
    .botry-area-features li:last-child { border-bottom: none; }
    .botry-area-features .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--botry-purple), var(--botry-purple-lt));
      flex-shrink: 0;
      margin-top: 0.4rem;
    }

    /* NAP card */
    .botry-nap-card {
      background: linear-gradient(145deg, var(--botry-purple-pale), var(--botry-surface-2));
      border: 1px solid rgba(108,80,224,0.2);
      border-radius: var(--botry-radius-md);
      padding: 1.5rem;
      font-size: 0.85rem;
    }
    .botry-nap-card h4 {
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--botry-text);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .botry-nap-row {
      display: flex;
      gap: 0.7rem;
      align-items: flex-start;
      padding: 0.6rem 0;
      border-bottom: 1px solid rgba(108,80,224,0.1);
      color: var(--botry-text-mid);
      line-height: 1.6;
    }
    .botry-nap-row:last-child { border-bottom: none; }
    .botry-nap-row .nap-icon { font-size: 0.9rem; flex-shrink: 0; margin-top: 0.1rem; }
    .botry-nap-row a { color: var(--botry-purple); text-decoration: none; font-weight: 500; }
    .botry-nap-row a:hover { text-decoration: underline; }

    /* ─── Sub-district panels ─── */
    .botry-sub-panel {
      background: var(--botry-surface);
      border: 1px solid var(--botry-border-light);
      border-radius: var(--botry-radius-md);
      padding: 2rem;
      box-shadow: var(--botry-shadow-sm);
    }
    .botry-sub-panel h2 {
      font-family: 'Noto Serif TC', serif;
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--botry-text);
      margin-bottom: 0.5rem;
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }
    .botry-sub-panel .sub-desc {
      font-size: 0.88rem;
      color: var(--botry-text-mid);
      line-height: 1.85;
      margin-bottom: 1.5rem;
    }
    .botry-sub-panel h3 {
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--botry-text);
      margin-bottom: 0.7rem;
      margin-top: 1.2rem;
    }
    .botry-kw-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1rem;
    }
    .botry-kw-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      padding: 0.3rem 0.9rem;
      border-radius: 20px;
      font-size: 0.78rem;
      font-weight: 500;
      border: 1px solid transparent;
      transition: var(--botry-transition);
      cursor: default;
    }
    .botry-kw-tag:hover { transform: translateY(-2px); }
    .botry-kw-tag.core  { background: #fff4e8; color: #7a3808; border-color: #f0c890; }
    .botry-kw-tag.local { background: var(--botry-sky-lt); color: #1a3868; border-color: #90bce0; }
    .botry-kw-tag.geo   { background: var(--botry-teal-lt); color: #0f6b50; border-color: #70c8a8; }
    .botry-kw-tag.long  { background: var(--botry-purple-pale); color: #402878; border-color: #b8a8e0; }

    /* ─── FAQ Section ─── */
    .botry-faq-list { list-style: none; }
    .botry-faq-item {
      border-bottom: 1px solid var(--botry-border-light);
    }
    .botry-faq-item:last-child { border-bottom: none; }
    .botry-faq-q {
      padding: 1rem 0;
      font-weight: 600;
      color: var(--botry-text);
      font-size: 0.92rem;
      cursor: pointer;
      display: flex;
      align-items: flex-start;
      gap: 0.7rem;
      user-select: none;
      transition: color 0.2s;
    }
    .botry-faq-q:hover { color: var(--botry-purple); }
    .botry-faq-q .q-icon {
      width: 22px; height: 22px;
      background: var(--botry-purple-pale);
      border-radius: 6px;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--botry-purple);
      flex-shrink: 0;
    }
    .botry-faq-q .arrow {
      margin-left: auto;
      font-size: 0.7rem;
      color: var(--botry-text-lt);
      transition: transform 0.3s ease;
      flex-shrink: 0;
    }
    .botry-faq-item.open .arrow { transform: rotate(90deg); }
    .botry-faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
    }
    .botry-faq-item.open .botry-faq-a { max-height: 300px; }
    .botry-faq-a-inner {
      padding: 0 0 1rem 2rem;
      font-size: 0.87rem;
      color: var(--botry-text-mid);
      line-height: 1.9;
    }

    /* ═══ CTA SECTION ═══ */
    .botry-cta-bar {
      background: linear-gradient(135deg, var(--botry-purple) 0%, var(--botry-purple-dk) 100%);
      border-radius: var(--botry-radius-lg);
      padding: 2.5rem 2rem;
      text-align: center;
      color: #fff;
      box-shadow: var(--botry-shadow-lg);
      position: relative;
      overflow: hidden;
      margin-bottom: 2rem;
    }
    .botry-cta-bar::before {
      content: '';
      position: absolute;
      top: -40px; left: -40px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    }
    .botry-cta-bar::after {
      content: '';
      position: absolute;
      bottom: -40px; right: -40px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(167,139,250,0.2) 0%, transparent 70%);
    }
    .botry-cta-bar h3 {
      font-family: 'Noto Serif TC', serif;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      position: relative; z-index: 1;
    }
    .botry-cta-bar p {
      font-size: 0.9rem;
      opacity: 0.85;
      margin-bottom: 1.5rem;
      position: relative; z-index: 1;
    }
    .botry-cta-btns {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.8rem;
      position: relative; z-index: 1;
    }
    .botry-cta-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.8rem 2rem;
      border-radius: var(--botry-radius-sm);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      transition: var(--botry-transition);
      cursor: pointer;
      border: none;
    }
    .botry-cta-btn.primary {
      background: #fff;
      color: var(--botry-purple-dk);
      box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    }
    .botry-cta-btn.primary:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }
    .botry-cta-btn.secondary {
      background: rgba(255,255,255,0.15);
      color: #fff;
      border: 1.5px solid rgba(255,255,255,0.4);
      backdrop-filter: blur(6px);
    }
    .botry-cta-btn.secondary:hover { background: rgba(255,255,255,0.25); transform: translateY(-2px); }

    /* ═══ ANIMATIONS ═══ */
    @keyframes botry-fade-down {
      from { opacity: 0; transform: translateY(-12px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes botry-fade-up {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── Scroll reveal ─── */
    .botry-reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .botry-reveal.visible {
      opacity: 1;
      transform: none;
    }

    /* ═══ RESPONSIVE ═══ */
    @media (max-width: 900px) {
      .botry-price-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .botry-price-grid { grid-template-columns: 1fr; }
      .botry-addons-grid { grid-template-columns: 1fr; }
      .botry-hero h2 { font-size: 1.7rem; }
      .botry-area-hero-inner { padding: 1.5rem; }
      .botry-cta-bar { padding: 1.8rem 1rem; }
      .botry-summary-table { font-size: 0.78rem; }
      .botry-summary-table td, .botry-summary-table th { padding: 0.5rem 0.6rem; }
    }

    /* ─── Smooth scroll target offset ─── */
    .botry-anchor { scroll-margin-top: 1.5rem; }