@charset "UTF-8";
/* ==========================================================================
   FitBook Landing / SEO 內容頁樣式
   依附於 style.css（.header / .nav / .footer / .btn / .inner 等共用元件）
   斷點：手機 <768px、平板 768~1024px、桌機 >=1025px
   ========================================================================== */

:root {
    --lp-brand: #0C6;
    --lp-brand-dark: #00a352;
    --lp-brand-light: #e6faf0;
    --lp-brand-tint: rgba(0, 204, 102, 0.08);
    --lp-ink: #263238;
    --lp-body: #455A64;
    --lp-muted: #78909C;
    --lp-line: #E3E9EC;
    --lp-surface: #fff;
    --lp-surface-alt: #F6F8F9;
    --lp-radius: 14px;
    --lp-radius-lg: 22px;
    --lp-shadow: 0 2px 14px rgba(38, 50, 56, 0.06);
    --lp-shadow-hover: 0 8px 26px rgba(38, 50, 56, 0.12);
    --lp-gap: 20px;
    --lp-section-y: 44px;
    --lp-row-y: 40px;
    --lp-inner: 1120px;
}

/* ---------- 基礎 ---------- */
/* 僅供螢幕閱讀器與搜尋引擎讀取的文字（取代行內樣式） */
.lp-srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lp-main {
    padding-top: 1rem;
    color: var(--lp-body);
    line-height: 1.9;
    background: var(--lp-surface);
}

.lp-inner {
    width: var(--lp-inner);
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.lp-section {
    padding-top: var(--lp-section-y);
    padding-bottom: var(--lp-section-y);
}

.lp-section--alt { background: var(--lp-surface-alt); }
.lp-section--tint { background: var(--lp-brand-light); }

/* 同一區塊內連續的左右對照列：彼此要有明顯間距，否則會黏成一整片 */
.lp-section .row + .row { margin-top: var(--lp-row-y); }

/* 手機直向堆疊時，文字欄與截圖欄之間也需要留白 */
.lp-section .row > [class*="col-"] + [class*="col-"] { margin-top: 28px; }

.lp-h2 {
    margin: 0 0 0.6em;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.45;
    color: var(--lp-ink);
    letter-spacing: 0.02em;
}

.lp-h3 {
    margin: 1.6em 0 0.5em;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.6;
    color: var(--lp-ink);
}

.lp-h2 + .lp-h3 { margin-top: 0.6em; }

.lp-lead {
    margin: 0 0 1.2em;
    font-size: 1rem;
    color: var(--lp-body);
}

.lp-p { margin: 0 0 1.1em; }
.lp-p:last-child { margin-bottom: 0; }

.lp-strong { color: var(--lp-ink); font-weight: 700; }

.lp-link {
    color: var(--lp-brand-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.lp-link:hover { color: var(--lp-brand); }

.lp-eyebrow {
    display: inline-block;
    margin-bottom: 0.8em;
    padding: 0.25em 1em;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--lp-brand-dark);
    background: var(--lp-brand-light);
    border-radius: 2em;
}

/* ---------- 麵包屑（置於 .lp-hero 的 .lp-inner 內，第一個子元素） ---------- */
.lp-crumb {
    margin-bottom: 18px;
    font-size: 0.8125rem;
    color: var(--lp-muted);
}

.lp-crumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-crumb li::after {
    content: "/";
    margin-left: 6px;
    color: var(--lp-line);
}

.lp-crumb li:last-child::after { content: none; }
.lp-crumb a { color: var(--lp-muted); }
.lp-crumb a:hover { color: var(--lp-brand-dark); }

/* ---------- Hero ---------- */
.lp-hero {
    padding-top: 24px;
    padding-bottom: 32px;
    background: linear-gradient(180deg, var(--lp-brand-light) 0%, #fff 100%);
}

.lp-hero_title {
    margin: 0 0 0.4em;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.01em;
    color: var(--lp-ink);
}

.lp-hero_sub {
    margin: 0 0 1.2em;
    font-size: 1rem;
    font-weight: 400;
    color: var(--lp-body);
}

.lp-hero_img {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    height: auto;
    object-fit: cover;
}

.lp-hero_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-hero_actions .btn { font-size: 16px; }

.lp-hero_note {
    margin: 12px 0 0;
    font-size: 0.8125rem;
    color: var(--lp-muted);
}

/* ---------- 痛點 / 對照卡 ---------- */
.lp-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lp-gap);
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-card {
    padding: 22px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

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

.lp-card_title {
    margin: 0 0 0.5em;
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-card_text { margin: 0; font-size: 0.9375rem; }

.lp-card_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    font-size: 1.125rem;
    color: var(--lp-brand-dark);
    background: var(--lp-brand-light);
    border-radius: 12px;
}

/* 痛點卡只換圖示配色；解法卡（.lp-card--fix）沿用預設樣式，
   class 保留作為語意標記，需要時再加樣式即可 */
.lp-card--pain .lp-card_icon { color: #E2004B; background: #ffeef2; }

/* ---------- 條列 ---------- */
.lp-list {
    margin: 0 0 1.2em;
    padding: 0;
    list-style: none;
}

.lp-list li {
    position: relative;
    padding-left: 1.6em;
    margin-bottom: 0.5em;
}

.lp-list li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 0.3em;
    width: 7px;
    height: 7px;
    background: var(--lp-brand);
    border-radius: 50%;
}

.lp-list--check li::before {
    content: "\f00c";
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.8125em;
    color: var(--lp-brand-dark);
    background: none;
}

/* ---------- 流程步驟 ---------- */
.lp-steps {
    counter-reset: lp-step;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-step {
    counter-increment: lp-step;
    position: relative;
    padding: 18px 18px 18px 62px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
}

.lp-step::before {
    content: counter(lp-step);
    position: absolute;
    top: 18px;
    left: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #fff;
    background: var(--lp-brand);
    border-radius: 50%;
}

.lp-step_title {
    margin: 0 0 0.35em;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-step_text { margin: 0; font-size: 0.9375rem; }

/* ---------- 後台截圖 ---------- */
.lp-shot {
    margin: 0 0 var(--lp-gap);
    padding: 0;
}

.lp-shot_frame {
    overflow: hidden;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
}

.lp-shot_bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    background: var(--lp-surface-alt);
    border-bottom: 1px solid var(--lp-line);
}

.lp-shot_dot {
    width: 9px;
    height: 9px;
    background: var(--lp-line);
    border-radius: 50%;
}

.lp-shot_label {
    margin-left: 8px;
    font-size: 0.75rem;
    color: var(--lp-muted);
}

.lp-shot_body { background: #fff; }

/* 尚未換上真實後台截圖時，示意圖置中不放大 */
.lp-shot_body--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    padding: 26px;
    background: repeating-linear-gradient(45deg, #fafcfb, #fafcfb 12px, #f2f6f4 12px, #f2f6f4 24px);
}

.lp-shot_body--placeholder .lp-shot_img {
    width: auto;
    max-width: 260px;
}

.lp-shot_img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: cover;
}

.lp-shot_caption {
    margin: 10px 2px 0;
    font-size: 0.8125rem;
    color: var(--lp-muted);
}

/* ---------- 表格 ---------- */
.lp-tableWrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
}

.lp-table {
    width: 100%;
    min-width: 620px;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.lp-table th,
.lp-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid var(--lp-line);
    vertical-align: top;
}

.lp-table thead th {
    font-weight: 700;
    color: var(--lp-ink);
    background: var(--lp-surface-alt);
    white-space: nowrap;
}

.lp-table tbody tr:last-child th,
.lp-table tbody tr:last-child td { border-bottom: 0; }

.lp-table_yes { color: var(--lp-brand-dark); font-weight: 700; }
.lp-table_no { color: var(--lp-muted); }

/* ---------- 月繳／年繳切換（純 CSS，radio + :checked，不依賴 JS） ---------- */
.lp-payToggle_radio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.lp-payToggle_nav {
    display: flex;
    width: 240px;
    max-width: 100%;
    margin: 0 auto var(--lp-gap);
    padding: 4px;
    background: var(--lp-surface-alt);
    border: 1px solid var(--lp-line);
    border-radius: 2em;
}

.lp-payToggle_label {
    flex: 1 1 50%;
    padding: 8px 0;
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: center;
    color: var(--lp-body);
    border-radius: 2em;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease;
}

#lp-pay-month:checked ~ .lp-payToggle_nav [for="lp-pay-month"],
#lp-pay-year:checked ~ .lp-payToggle_nav [for="lp-pay-year"] {
    color: #fff;
    background: var(--lp-brand);
}

.lp-payToggle_radio:focus-visible ~ .lp-payToggle_nav [for="lp-pay-month"],
.lp-payToggle_radio:focus-visible ~ .lp-payToggle_nav [for="lp-pay-year"] {
    outline: 2px solid var(--lp-brand-dark);
    outline-offset: 2px;
}

/* 兩組價格都在 DOM 內，只切換顯示 */
.lp-payMonth,
.lp-payYear { display: none; }

#lp-pay-month:checked ~ .lp-plans .lp-payMonth,
#lp-pay-year:checked ~ .lp-plans .lp-payYear { display: block; }

/* ---------- 價格卡 ---------- */
.lp-plans {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lp-gap);
}

.lp-plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 26px 22px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow);
}

.lp-plan--featured {
    border-color: var(--lp-brand);
    box-shadow: 0 8px 26px rgba(0, 204, 102, 0.18);
}

.lp-plan_flag {
    position: absolute;
    top: -12px;
    left: 22px;
    padding: 2px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background: var(--lp-brand);
    border-radius: 2em;
}

.lp-plan_name {
    margin: 0 0 0.2em;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-plan_desc { margin: 0 0 1em; font-size: 0.9375rem; color: var(--lp-muted); }

.lp-plan_price {
    margin: 0 0 0.2em;
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--lp-brand-dark);
}

.lp-plan_price small {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--lp-muted);
}

.lp-plan_note {
    margin: 0 0 1.2em;
    font-size: 0.8125rem;
    color: var(--lp-muted);
    min-height: 1.6em;
}

.lp-plan_features { flex-grow: 1; margin-bottom: 1.4em; }

.lp-plan .btn { display: block; text-align: center; }

/* ---------- 角色分頁（純 CSS，不依賴 JS；三個面板都在 DOM 內，SEO 讀得到） ---------- */
.lp-tabs_radio {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.lp-tabs_nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: var(--lp-gap);
}

.lp-tabs_label {
    flex: 1 1 auto;
    padding: 10px 14px;
    font-size: 0.9375rem;
    font-weight: 700;
    text-align: center;
    color: var(--lp-body);
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: 2em;
    cursor: pointer;
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.lp-tabs_label:hover { border-color: var(--lp-brand); }

.lp-tabs_panel { display: none; }

/* 選中狀態：label 上色、對應面板顯示 */
#lp-role-1:checked ~ .lp-tabs_nav [for="lp-role-1"],
#lp-role-2:checked ~ .lp-tabs_nav [for="lp-role-2"],
#lp-role-3:checked ~ .lp-tabs_nav [for="lp-role-3"] {
    color: #fff;
    background: var(--lp-brand);
    border-color: var(--lp-brand);
}

#lp-role-1:checked ~ .lp-tabs_panels .lp-tabs_panel:nth-child(1),
#lp-role-2:checked ~ .lp-tabs_panels .lp-tabs_panel:nth-child(2),
#lp-role-3:checked ~ .lp-tabs_panels .lp-tabs_panel:nth-child(3) {
    display: block;
}

/* 鍵盤 focus 可見 */
.lp-tabs_radio:focus-visible ~ .lp-tabs_nav [for="lp-role-1"],
.lp-tabs_radio:focus-visible ~ .lp-tabs_nav [for="lp-role-2"],
.lp-tabs_radio:focus-visible ~ .lp-tabs_nav [for="lp-role-3"] {
    outline: 2px solid var(--lp-brand-dark);
    outline-offset: 2px;
}

.lp-role_lead {
    margin: 0 0 1.1em;
    font-size: 1.0625rem;
    color: var(--lp-ink);
    font-weight: 700;
}

/* ---------- 客戶案例 ---------- */
.lp-cases {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--lp-gap);
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-case {
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
}

.lp-case_quote {
    flex-grow: 1;
    margin: 0 0 1.2em;
    font-size: 0.9375rem;
    color: var(--lp-body);
}

.lp-case_quote::before {
    content: "\201C";
    display: block;
    margin-bottom: 0.1em;
    font-size: 2.4rem;
    line-height: 0.6;
    color: var(--lp-brand);
}

.lp-case_who {
    padding-top: 14px;
    border-top: 1px solid var(--lp-line);
}

.lp-case_name {
    display: block;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-case_meta {
    display: block;
    font-size: 0.8125rem;
    color: var(--lp-muted);
}

/* ---------- 優惠說明框 ---------- */
.lp-callout {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: var(--lp-gap);
    padding: 18px 20px;
    background: var(--lp-brand-light);
    border: 1px solid rgba(0, 204, 102, 0.35);
    border-radius: var(--lp-radius);
}

.lp-callout_icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    font-size: 1.0625rem;
    color: #fff;
    background: var(--lp-brand);
    border-radius: 50%;
}

.lp-callout_body { flex-grow: 1; }

.lp-callout_title {
    margin: 0 0 0.3em;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-callout_text {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--lp-body);
}

/* ---------- FAQ ---------- */
.lp-faq { margin: 0; }

.lp-faq_item {
    padding: 18px 0;
    border-bottom: 1px solid var(--lp-line);
}

.lp-faq_item:first-child { padding-top: 0; }

.lp-faq_q {
    position: relative;
    margin: 0 0 0.5em;
    padding-left: 1.8em;
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-faq_q::before {
    content: "Q";
    position: absolute;
    left: 0;
    color: var(--lp-brand);
    font-weight: 700;
}

.lp-faq_a {
    margin: 0;
    padding-left: 1.8em;
    font-size: 0.9375rem;
}

/* ---------- CTA ---------- */
.lp-cta {
    padding: 34px 22px;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, var(--lp-brand) 0%, var(--lp-brand-dark) 100%);
    border-radius: var(--lp-radius-lg);
}

.lp-cta_title {
    margin: 0 0 0.5em;
    font-size: 1.375rem;
    font-weight: 700;
    color: #fff;
}

.lp-cta_text {
    margin: 0 auto 1.4em;
    max-width: 34em;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.lp-cta_actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.lp-cta .btn-white { color: var(--lp-brand-dark); font-weight: 700; }

.lp-cta_ghost {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    background: transparent;
}

/* ---------- 站內相關連結 ---------- */
.lp-related {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lp-related_item {
    display: block;
    padding: 16px 18px;
    color: var(--lp-body);
    background: var(--lp-surface);
    border: 1px solid var(--lp-line);
    border-radius: var(--lp-radius);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lp-related_item:hover {
    color: var(--lp-body);
    border-color: var(--lp-brand);
    box-shadow: var(--lp-shadow);
}

.lp-related_name {
    display: block;
    margin-bottom: 0.2em;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-related_desc {
    display: block;
    font-size: 0.8125rem;
    color: var(--lp-muted);
}

/* ---------- 頁尾連結地圖 ---------- */
.lp-footer {
    padding: 34px 0 24px;
    text-align: left;
    background: var(--lp-surface-alt);
    border-top: 1px solid var(--lp-line);
}

.lp-footer_map { margin-bottom: 8px; }

.lp-footer_head {
    margin: 0 0 0.6em;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--lp-ink);
}

.lp-footer_list { margin: 0 0 24px; }

.lp-footer_list li { margin-bottom: 0.45em; }

.lp-footer_list a {
    font-size: 0.875rem;
    color: var(--lp-body);
}

.lp-footer_list a:hover { color: var(--lp-brand-dark); }

.lp-footer_bottom {
    padding-top: 18px;
    font-size: 0.8125rem;
    color: var(--lp-muted);
    border-top: 1px solid var(--lp-line);
}

/* ---------- Header 導覽與下拉選單 ---------- */
/* Logo 垂直居中：
   .header 桌機版設了 line-height: 5.875rem，而 .logo 內的 <img> 是 inline 元素，
   會依「基線」對齊——基線下方要保留降部空間，於是圖片視覺上偏上。
   把 .logo 改成 flex 容器、line-height 歸 1，並讓 img 變 block 消除基線落差，
   之後由 .header 既有的 align-items: center 負責垂直置中。 */
.header .logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.header .logo img { display: block; }

.lp-nav_current { color: var(--lp-brand-dark); }

/* 手機：父層當作區段標題，子項直接攤平縮排（不做展開收合） */
.lp-hasSub_label {
    display: block;
    color: var(--lp-muted);
    font-size: 0.85em;
    letter-spacing: 0.06em;
}

.lp-hasSub_arrow { display: none; }

.lp-sub {
    margin: 0 0 0.6em;
    padding: 0;
    list-style: none;
}

.lp-sub a {
    font-size: 0.9em;
    line-height: 2.6;
}

/* ==========================================================================
   平板 768px ~ 1024px
   ========================================================================== */
@media (min-width: 768px) {
    :root {
        --lp-gap: 24px;
        --lp-section-y: 60px;
        --lp-row-y: 56px;
    }

    .lp-main { padding-top: 5.875rem; }

    /* 左右並排後就不需要欄間的上下留白，否則會破壞 align-items-center 的垂直置中 */
    .lp-section .row > [class*="col-"] + [class*="col-"] { margin-top: 0; }

    .lp-crumb { margin-bottom: 26px; font-size: 0.875rem; }

    .lp-hero {
        padding-top: 20px;
        padding-bottom: 56px;
    }

    .lp-hero_title { font-size: 2.25rem; }
    .lp-hero_sub { font-size: 1.125rem; }
    .lp-hero_img { max-width: 100%; }

    .lp-h2 { font-size: 1.875rem; }
    .lp-h3 { font-size: 1.25rem; }
    .lp-lead { font-size: 1.0625rem; }

    .lp-cards { grid-template-columns: repeat(2, 1fr); }
    .lp-steps { grid-template-columns: repeat(2, 1fr); }
    .lp-plans { grid-template-columns: repeat(2, 1fr); }
    .lp-related { grid-template-columns: repeat(2, 1fr); }
    .lp-cases { grid-template-columns: repeat(2, 1fr); }

    .lp-tabs_nav { gap: 12px; }
    .lp-tabs_label { flex: 0 1 auto; min-width: 10em; padding: 12px 26px; font-size: 1rem; }

    .lp-cta { padding: 48px 40px; }
    .lp-cta_title { font-size: 1.75rem; }

    /* 桌機／平板：滑鼠移入或鍵盤 focus 時展開下拉 */
    .lp-hasSub { position: relative; }

    .lp-hasSub_label {
        display: inline-block;
        padding: 0 0.833em;
        font-size: inherit;
        letter-spacing: normal;
        color: inherit;
        cursor: default;
    }

    .lp-hasSub_arrow {
        display: inline-block;
        margin-left: 0.3em;
        font-size: 0.55em;
        vertical-align: middle;
        transition: transform 0.2s ease;
    }

    .lp-hasSub:hover .lp-hasSub_arrow,
    .lp-hasSub:focus-within .lp-hasSub_arrow { transform: rotate(180deg); }

    .lp-sub {
        position: absolute;
        z-index: 100;
        top: 80%;
        left: 0;
        min-width: 15em;
        margin: 0;
        padding: 0.5em 0;
        text-align: left;
        background: var(--lp-surface);
        border: 1px solid var(--lp-line);
        border-radius: var(--lp-radius);
        box-shadow: var(--lp-shadow-hover);
        opacity: 0;
        visibility: hidden;
        transform: translateY(6px);
        transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .lp-hasSub:hover .lp-sub,
    .lp-hasSub:focus-within .lp-sub {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .lp-sub li { display: block; }

    .lp-sub a {
        display: block;
        padding: 0.55em 1.3em;
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1.7;
        white-space: nowrap;
        color: var(--lp-body);
    }

    .lp-sub a:hover {
        color: var(--lp-brand-dark);
        background: var(--lp-brand-light);
    }
}

/* ==========================================================================
   桌機 >= 1025px
   ========================================================================== */
@media (min-width: 1025px) {
    :root { --lp-section-y: 76px; --lp-row-y: 72px; }

    .lp-hero_title { font-size: 2.625rem; }

    .lp-cards--3 { grid-template-columns: repeat(3, 1fr); }
    .lp-cards--4 { grid-template-columns: repeat(4, 1fr); }
    .lp-cases--3 { grid-template-columns: repeat(3, 1fr); }
    .lp-steps { grid-template-columns: repeat(4, 1fr); }
    .lp-plans--3 { grid-template-columns: repeat(3, 1fr); }
    .lp-related { grid-template-columns: repeat(3, 1fr); }

    .lp-prose { font-size: 1.0625rem; }
}
