/* ============================================================
   全域設定 & 字型
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-primary: #00c35e;
    --green-dark: #009e4c;
    --green-deeper: #007a3d;
    --green-light: #7cd45e;
    --green-bg: #83d666;
    --green-muted: #4b6a50;
    --black: #111111;
    --white: #ffffff;
    --gray-bg: #f7faf8;
    --gray-card: #ffffff;
    --gray-text: #4a5568;
    --gray-light: #edf2f7;
    --gray-border: #e2e8f0;
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 16px 36px rgba(0, 0, 0, 0.10);
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
    height: 100vh;
    overflow-y: scroll;
}

body {
    background-color: var(--white);
    color: var(--black);
    font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.5;
    height: 100vh;
}

/* ============================================================
   滾動吸附與全螢幕區塊容器
   ============================================================ */
.snap-section {
    height: 100vh;
    max-height: 100vh;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 64px 36px 20px;
    overflow: hidden;
}

.section-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    max-height: calc(100vh - 84px);
}

.section-header {
    text-align: center;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.section-subtitle {
    font-size: 13.5px;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ============================================================
   導覽列 (桌機置中 / 手機與平板漢堡選單)
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    padding: 0 24px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 22px;
    white-space: nowrap;
}

.navbar-links a {
    text-decoration: none;
    color: var(--gray-text);
    font-size: 13.5px;
    font-weight: 600;
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-primary);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-links a:hover {
    color: var(--green-primary);
}

.navbar-links a:hover::after {
    width: 100%;
}

.btn-nav-website {
    color: var(--gray-text) !important;
    border: 1px solid var(--gray-border);
    padding: 5px 14px !important;
    border-radius: 16px;
    font-size: 12.5px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav-website:hover {
    border-color: var(--green-primary);
    color: var(--green-primary) !important;
}

.btn-nav-website::after {
    display: none !important;
}

.btn-nav-apply {
    background: var(--green-primary);
    color: var(--white) !important;
    padding: 6px 18px !important;
    border-radius: 18px;
    font-weight: 700;
    font-size: 13px;
    transition: var(--transition);
}

.btn-nav-apply:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
}

.btn-nav-apply::after {
    display: none !important;
}

/* 漢堡按鈕 (桌機隱藏) */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-btn span {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   右下角回到頂部浮動按鈕 (TOP)
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 990;
    background: var(--white);
    color: var(--black);
    border: 1.5px solid var(--gray-border);
    border-radius: 30px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.5px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    font-family: inherit;
}

.back-to-top::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 6px solid var(--green-primary);
    margin-right: 6px;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 195, 94, 0.35);
}

.back-to-top:hover::before {
    border-bottom-color: var(--white);
}

/* ============================================================
   1. Hero 區塊
   ============================================================ */
.hero-section {
    background: linear-gradient(135deg, #44b673 0%, #7cd45e 55%, #9ae272 100%);
    color: var(--white);
}

.hero-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    height: 100%;
    width: 100%;
}

.hero-content {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(8px);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 36px;
    color: var(--white);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 14px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.hero-title .title-highlight {
    color: var(--black);
    display: block;
    font-size: 42px;
    margin-top: 4px;
}

.hero-desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 26px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    background: var(--black);
    color: var(--white);
    padding: 11px 24px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero-primary:hover {
    background: #252525;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    padding: 11px 20px;
    border-radius: 8px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 28px;
}

.hero-stat-num {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.hero-stat-label {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-container {
    width: 100%;
    max-width: 460px;
    height: 330px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 3px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: none;
}

.hero-image.is-loaded {
    display: block;
}

.hero-image-placeholder {
    position: absolute;
    inset: 8px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f0f7f3;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 14px;
    border: 2px dashed #bce2cf;
    border-radius: calc(var(--radius-lg) - 4px);
    text-align: center;
    padding: 16px;
}

.hero-image.is-loaded + .hero-image-placeholder {
    display: none;
}

.media-sample-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    z-index: 2;
    background: rgba(17, 17, 17, 0.55);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 999px;
    pointer-events: none;
}

.zoomable-image.is-loaded {
    cursor: zoom-in;
}

.image-zoom-hint {
    display: none;
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 2;
    background: rgba(17, 17, 17, 0.62);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 8px;
    border-radius: 999px;
    pointer-events: none;
}

.hero-image-container:has(.hero-image.is-loaded) .image-zoom-hint,
.scenario-slide-image-box:has(.scenario-image.is-loaded) .image-zoom-hint {
    display: inline-flex;
    align-items: center;
}

.hero-image-placeholder span {
    font-size: 12px;
    color: var(--gray-text);
    font-weight: 400;
    margin-top: 6px;
}

/* ============================================================
   2. 常見痛點區塊
   ============================================================ */
.pain-section {
    background: var(--gray-bg);
}

.pain-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    max-height: calc(100vh - 180px);
}

.pain-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px 20px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pain-card:hover {
    border-color: var(--green-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.pain-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.pain-tag {
    font-size: 11px;
    color: #d93838;
    background: #fde8e8;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.pain-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--black);
}

.pain-desc {
    font-size: 12.5px;
    color: var(--gray-text);
    line-height: 1.5;
    margin-bottom: 8px;
}

.pain-solution {
    font-size: 12px;
    color: var(--green-dark);
    font-weight: 600;
    padding: 7px 10px;
    background: rgba(0, 195, 94, 0.08);
    border-radius: 6px;
    border-left: 3px solid var(--green-primary);
    line-height: 1.45;
}

/* ============================================================
   3. 核心優勢區塊
   ============================================================ */
.feature-section-1 {
    background: var(--green-primary);
    color: var(--white);
}

.feature-layout {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.feature-left {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 14px;
}

.feature-left-header .section-title {
    color: var(--white);
    margin-bottom: 4px;
}

.feature-left-header .section-subtitle {
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
}

.architecture-screen {
    background: #0d1f15;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.architecture-screen::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 140px;
    height: 140px;
    background: radial-gradient(circle, rgba(0, 195, 94, 0.18) 0%, transparent 70%);
    pointer-events: none;
}

.arch-screen-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.arch-screen-dots {
    display: flex;
    gap: 6px;
}

.arch-screen-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}

.arch-screen-dots span:first-child { background: #ff5f56; }
.arch-screen-dots span:nth-child(2) { background: #ffbd2e; }
.arch-screen-dots span:last-child { background: #27c93f; }

.arch-status-badge {
    font-size: 10.5px;
    color: var(--green-light);
    font-weight: 700;
    letter-spacing: 0.5px;
    background: rgba(0, 195, 94, 0.16);
    padding: 2px 8px;
    border-radius: 12px;
    border: 1px solid rgba(0, 195, 94, 0.3);
}

.arch-tag {
    font-size: 10.5px;
    color: var(--green-light);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.arch-title {
    font-size: 16px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 4px;
}

.arch-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin-bottom: 10px;
}

.arch-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.arch-metric-item {
    display: flex;
    flex-direction: column;
}

.metric-label {
    font-size: 9.5px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2px;
}

.metric-value {
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
}

.feature-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-nav-list {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.feature-item-num {
    font-size: 14px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.6);
    font-family: monospace;
    flex-shrink: 0;
    transition: var(--transition);
}

.feature-item-content h4 {
    font-size: 13.5px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 2px;
    transition: var(--transition);
}

.feature-item-content p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.feature-item.active {
    background: var(--white);
    border-color: var(--white);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
    transform: translateX(6px);
}

.feature-item.active .feature-item-num {
    color: var(--green-primary);
}

.feature-item.active .feature-item-content h4 {
    color: var(--black);
}

.feature-item.active .feature-item-content p {
    color: var(--gray-text);
}

/* ============================================================
   4. 使用情境區塊 (全新圖文輪播展示 Carousel)
   ============================================================ */
.feature-section-2 {
    background: var(--white);
}

.scenario-carousel-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

/* 頂部 8 個情境切換膠囊按鈕 */
.scenario-nav-pills {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 980px;
    margin-bottom: 4px;
}

.scenario-pill {
    background: var(--gray-bg);
    border: 1.5px solid var(--gray-border);
    color: var(--gray-text);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: inherit;
}

.scenario-pill-num {
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 900;
}

.scenario-pill:hover {
    border-color: var(--green-primary);
    color: var(--green-dark);
    background: rgba(0, 195, 94, 0.06);
}

.scenario-pill.active {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 195, 94, 0.3);
}

.scenario-pill.active .scenario-pill-num {
    color: var(--white);
}

/* 輪播主卡片展示盒 (左側說明 + 右側圖片) */
.scenario-carousel-card {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    width: 100%;
    max-width: 1020px;
    padding: 24px 30px;
    display: flex;
    align-items: center;
    gap: 36px;
    position: relative;
    min-height: 310px;
}

.scenario-slide-info {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scenario-slide-tag {
    display: inline-block;
    align-self: flex-start;
    background: rgba(0, 195, 94, 0.1);
    color: var(--green-dark);
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    margin-bottom: 8px;
}

.scenario-slide-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}

.scenario-slide-desc {
    font-size: 13.5px;
    color: var(--gray-text);
    line-height: 1.65;
    margin-bottom: 16px;
}

.scenario-slide-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.scenario-slide-features li {
    font-size: 12.5px;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.scenario-slide-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green-primary);
    flex-shrink: 0;
}

/* 輪播右側圖片展示盒 */
.scenario-slide-image-box {
    flex: 1.2;
    height: 250px;
    background: var(--gray-bg);
    border-radius: var(--radius-md);
    border: 2px solid var(--gray-border);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.scenario-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: none;
}

.scenario-image.is-loaded {
    display: block;
}

.scenario-image-placeholder {
    position: absolute;
    inset: 8px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #f4faf6;
    color: var(--green-dark);
    font-weight: 700;
    font-size: 13.5px;
    text-align: center;
    padding: 16px;
    border: 2px dashed #bce2cf;
    border-radius: calc(var(--radius-md) - 4px);
}

.scenario-image.is-loaded + .scenario-image-placeholder {
    display: none;
}

.scenario-image-placeholder span {
    font-size: 11.5px;
    color: var(--gray-text);
    font-weight: 400;
    margin-top: 4px;
}

/* 輪播底部控制列 (上一頁、進度條、下一頁) */
.scenario-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    margin-top: 2px;
}

.scenario-arrow-btn {
    background: var(--white);
    border: 1.5px solid var(--gray-border);
    color: var(--black);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 11.5px;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.scenario-arrow-btn:hover {
    border-color: var(--green-primary);
    background: var(--green-primary);
    color: var(--white);
}

.scenario-dots {
    display: flex;
    align-items: center;
    gap: 6px;
}

.scenario-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gray-border);
    cursor: pointer;
    transition: var(--transition);
}

.scenario-dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--green-primary);
}

/* ============================================================
   5. 功能對照表區塊
   ============================================================ */
.feature-table-section {
    background: var(--gray-bg);
}

.feature-table-wrapper {
    overflow-y: auto;
    max-height: calc(100vh - 190px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
}

.feature-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.feature-table Cindy th,
.feature-table thead th {
    background: var(--green-primary);
    color: var(--white);
    font-size: 12.5px;
    font-weight: 700;
    padding: 10px 18px;
    text-align: left;
    position: sticky;
    top: 0;
    z-index: 10;
}

.feature-table thead th:first-child {
    width: 32%;
}

.feature-table tbody tr {
    border-bottom: 1px solid var(--gray-border);
    transition: var(--transition);
}

.feature-table tbody tr:last-child {
    border-bottom: none;
}

.feature-table tbody tr:hover {
    background: #f3faf6;
}

.feature-table td {
    padding: 10px 18px;
    font-size: 12.5px;
    line-height: 1.45;
    vertical-align: middle;
}

.feature-table td:first-child {
    font-weight: 700;
    color: var(--black);
}

.feature-table td:last-child {
    color: var(--gray-text);
}

/* ============================================================
   6. 展示影片區塊
   ============================================================ */
.video-section {
    background: var(--green-primary);
    text-align: center;
    color: var(--white);
}

.video-section .section-title {
    color: var(--white);
}

.video-wrapper {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.video-box {
    background: rgba(0, 0, 0, 0.28);
    border-radius: var(--radius-lg);
    height: 330px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.video-poster,
.demo-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.video-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.4));
    z-index: 1;
    pointer-events: none;
}

.video-box:has(.demo-video.is-playing)::after,
.video-box:has(.video-fallback.visible)::after {
    display: none;
}

.demo-video {
    display: none;
    background: #111;
    z-index: 2;
}

.demo-video.is-playing {
    display: block;
}

.video-box:hover {
    border-color: rgba(255, 255, 255, 0.6);
}

.play-button-ui {
    position: relative;
    z-index: 3;
    padding: 11px 24px;
    background: var(--white);
    color: var(--green-dark);
    font-size: 14px;
    font-weight: 800;
    border: none;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.play-button-ui:hover {
    transform: scale(1.04);
}

.video-fallback {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 4;
    background: rgba(17, 17, 17, 0.88);
    color: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    text-align: center;
}

.video-fallback.visible {
    display: flex;
}

.video-fallback h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.video-fallback p {
    font-size: 13px;
    opacity: 0.88;
    max-width: 480px;
    line-height: 1.6;
}

.video-fallback-hint {
    margin-top: 10px;
    font-size: 12px !important;
    opacity: 0.7 !important;
}

.video-fallback button {
    margin-top: 16px;
    padding: 6px 18px;
    border-radius: 20px;
    border: none;
    background: var(--green-primary);
    color: white;
    font-weight: bold;
    cursor: pointer;
    font-family: inherit;
}

.video-caption {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12px;
    margin-top: 12px;
}

/* ============================================================
   7. 先鋒計劃方案區塊
   ============================================================ */
.pricing-section {
    background: var(--white);
}

.pioneer-single-card {
    background: linear-gradient(145deg, #ffffff 0%, #f4faf6 100%);
    border: 2px solid var(--green-primary);
    border-radius: var(--radius-lg);
    padding: 30px 36px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: var(--shadow-card);
    display: flex;
    gap: 32px;
    align-items: center;
}

.pioneer-left {
    flex: 1;
    border-right: 1px solid var(--gray-border);
    padding-right: 28px;
}

.pioneer-tag {
    display: inline-block;
    background: var(--green-primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.pioneer-title {
    font-size: 22px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 4px;
}

.pioneer-price {
    font-size: 30px;
    font-weight: 900;
    color: var(--green-dark);
    line-height: 1.1;
    margin: 8px 0 6px;
}

.pioneer-price span {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-text);
}

.pioneer-desc {
    font-size: 12.5px;
    color: var(--gray-text);
    line-height: 1.55;
}

.pioneer-right {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pioneer-feature-list {
    list-style: none;
    margin-bottom: 18px;
}

.pioneer-feature-list li {
    font-size: 12.5px;
    color: var(--gray-text);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pioneer-feature-list li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--green-primary);
    border-radius: 50%;
    flex-shrink: 0;
}

.btn-pioneer-apply {
    display: block;
    width: 100%;
    padding: 11px;
    background: var(--green-primary);
    color: var(--white);
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(0, 195, 94, 0.3);
}

.btn-pioneer-apply:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 195, 94, 0.4);
}

/* ============================================================
   8. 報名表單區塊與 Footer
   ============================================================ */
.form-section {
    background: var(--gray-bg);
    padding: 56px 0 0;
    justify-content: flex-start;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    scroll-snap-align: start;
    -webkit-overflow-scrolling: touch;
}

.form-section::-webkit-scrollbar {
    width: 6px;
}

.form-section::-webkit-scrollbar-track {
    background: transparent;
}

.form-section::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.form-section::-webkit-scrollbar-thumb:hover {
    background: var(--green-primary);
}

.form-section-inner {
    width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.form-wrapper {
    width: 100%;
    max-width: 720px;
    margin: 20px auto;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full {
    margin-bottom: 12px;
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 5px;
    line-height: 1.4;
}

.form-label .required {
    color: var(--green-primary);
    margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
    padding: 8px 12px;
    border: 1.5px solid var(--gray-border);
    border-radius: 6px;
    font-size: 13px;
    font-family: inherit;
    color: var(--black);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--green-primary);
    box-shadow: 0 0 0 3px rgba(0, 195, 94, 0.12);
}

.form-select {
    cursor: pointer;
}

.form-textarea {
    resize: vertical;
    min-height: 60px;
    line-height: 1.5;
}

/* 選項與核取方塊排版元件 */
.option-grid {
    display: grid;
    gap: 8px;
    margin-top: 2px;
}

.option-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.option-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.option-chip {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    border: 1.5px solid var(--gray-border);
    border-radius: 6px;
    background: var(--white);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-text);
    user-select: none;
    text-align: center;
}

.option-chip input[type="radio"] {
    margin-right: 6px;
    accent-color: var(--green-primary);
    cursor: pointer;
}

.option-chip:hover {
    border-color: var(--green-light);
    background: #fbfdfb;
}

.option-chip:has(input:checked) {
    border-color: var(--green-primary);
    background: rgba(0, 195, 94, 0.08);
    color: var(--green-deeper);
    font-weight: 700;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 2px;
}

.checkbox-chip {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border: 1.5px solid var(--gray-border);
    border-radius: 6px;
    background: var(--white);
    font-size: 12px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gray-text);
    user-select: none;
}

.checkbox-chip input[type="checkbox"] {
    margin-right: 8px;
    accent-color: var(--green-primary);
    cursor: pointer;
}

.checkbox-chip:hover {
    border-color: var(--green-light);
    background: #fbfdfb;
}

.checkbox-chip:has(input:checked) {
    border-color: var(--green-primary);
    background: rgba(0, 195, 94, 0.08);
    color: var(--green-deeper);
    font-weight: 600;
}

.checkbox-other-chip {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

.checkbox-inline-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    white-space: nowrap;
}

.form-input-inline {
    flex: 1;
    padding: 5px 10px;
    border: 1px solid var(--gray-border);
    border-radius: 4px;
    font-size: 12px;
    font-family: inherit;
    outline: none;
    background: #fafafa;
    transition: var(--transition);
}

.form-input-inline:focus {
    border-color: var(--green-primary);
    background: #ffffff;
}

/* 條款閱讀與同意勾選元件 */
.terms-consent-group {
    margin-top: 6px;
    margin-bottom: 8px;
    padding: 10px 14px;
    background: #f8faf9;
    border: 1px dashed var(--gray-border);
    border-radius: 6px;
}

.checkbox-consent-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: var(--black);
    cursor: pointer;
    font-weight: 500;
}

.checkbox-consent-label input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--green-primary);
    cursor: pointer;
}

.terms-link-btn {
    color: var(--green-deeper);
    font-weight: 700;
    text-decoration: underline;
    cursor: pointer;
    transition: var(--transition);
}

.terms-link-btn:hover {
    color: var(--green-primary);
}

.terms-read-hint {
    font-size: 11.5px;
    color: #d97706;
    margin-top: 4px;
    margin-left: 24px;
    transition: var(--transition);
}

.terms-read-hint.agreed {
    color: var(--green-dark);
    font-weight: 600;
}

/* 條款滑動確認彈跳視窗底部 */
.consent-modal-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 24px;
    background: #f8fafc;
    border-top: 1px solid var(--gray-border);
    gap: 12px;
}

.scroll-progress-status {
    font-size: 12px;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.scroll-progress-status.completed {
    color: var(--green-deeper);
    font-weight: 700;
}

.btn-agree-terms {
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    border: none;
    font-family: inherit;
    cursor: not-allowed;
    background: #cbd5e1;
    color: #64748b;
    transition: var(--transition);
}

.btn-agree-terms.active {
    background: var(--green-primary);
    color: #ffffff;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 195, 94, 0.3);
}

.btn-agree-terms.active:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.btn-submit {
    width: 100%;
    margin-top: 6px;
    padding: 12px;
    background: var(--green-primary);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(0, 195, 94, 0.35);
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px 10px;
}

.form-success.visible {
    display: block;
}

.form-success h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 4px;
}

.form-success p {
    font-size: 12px;
    color: var(--gray-text);
}

/* 頁尾 */
.footer-compact {
    width: 100%;
    padding: 14px 30px;
    background: #0f1f14;
    color: rgba(255, 255, 255, 0.65);
    font-size: 11.5px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    flex-shrink: 0;
    gap: 16px;
}

.footer-text-left {
    font-weight: 500;
    justify-self: start;
    text-align: left;
}

.footer-nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-self: center;
    text-align: center;
}

.footer-nav-links a,
.footer-nav-links .footer-link-btn {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
}

.footer-nav-links a:hover,
.footer-nav-links .footer-link-btn:hover {
    color: var(--green-primary);
    text-decoration: underline;
}

.footer-text-right {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-self: end;
    text-align: right;
}

.footer-text-right a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.footer-text-right a:hover {
    color: var(--green-primary);
}

/* ============================================================
   彈跳視窗 (Modal Dialogs)
   ============================================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
    overscroll-behavior: contain;
    touch-action: none;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-overlay {
    padding: 28px 16px;
    background: rgba(8, 12, 10, 0.88);
    cursor: zoom-out;
    touch-action: auto;
}

.lightbox-overlay .lightbox-figure {
    margin: 0;
    max-width: min(96vw, 1480px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.lightbox-overlay #lightboxImage {
    display: block;
    max-width: 96vw;
    max-height: calc(92vh - 36px);
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
    background: #0b0b0b;
}

.lightbox-overlay #lightboxCaption {
    color: rgba(255, 255, 255, 0.88);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    max-width: 90vw;
    line-height: 1.45;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 2;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
    background: rgba(255, 255, 255, 0.28);
    outline: none;
}

.modal-container {
    background: var(--white);
    border-radius: var(--radius-md);
    max-width: 680px;
    width: 100%;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--gray-border);
    animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    overscroll-behavior: contain;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 22px;
    border-bottom: 1px solid var(--gray-border);
    background: #fafcfb;
}

.modal-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-title-badge {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green-primary);
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 22px;
    line-height: 1;
    color: var(--gray-text);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
}

.modal-close-btn:hover {
    color: var(--black);
    background: var(--gray-light);
}

.modal-body {
    padding: 20px 24px;
    overflow-y: auto;
    font-size: 13px;
    line-height: 1.65;
    color: var(--gray-text);
    overscroll-behavior: contain;
    touch-action: pan-y;
}

.modal-body::-webkit-scrollbar {
    width: 6px;
}

.modal-body::-webkit-scrollbar-track {
    background: transparent;
}

.modal-body::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 3px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--green-primary);
}

.modal-body h4 {
    font-size: 13.5px;
    color: var(--black);
    margin: 14px 0 6px;
    font-weight: 700;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    margin-bottom: 10px;
}

.modal-body ul {
    margin-left: 18px;
    margin-bottom: 12px;
}

.modal-body li {
    margin-bottom: 4px;
}

.modal-footer {
    padding: 12px 22px;
    border-top: 1px solid var(--gray-border);
    background: #fafcfb;
    display: flex;
    justify-content: flex-end;
}

.modal-btn-close {
    padding: 7px 18px;
    background: var(--gray-light);
    color: var(--black);
    border: 1px solid var(--gray-border);
    border-radius: 6px;
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn-close:hover {
    background: #e2e8f0;
}

/* ============================================================
   滾動微動畫
   ============================================================ */
.fade-up {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   平板與 iPad 專屬響應式斷點 (769px ~ 1024px)
   ============================================================ */
@media (min-width: 769px) and (max-width: 1024px) {
    html {
        scroll-behavior: smooth;
        scroll-snap-type: none !important;
        height: auto !important;
        overflow-y: auto !important;
    }

    body {
        height: auto !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
    }

    .navbar {
        height: 60px;
        padding: 0 24px;
        justify-content: flex-end;
    }

    .hamburger-btn {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 40px 24px;
        gap: 20px;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navbar-links.active {
        transform: translateY(0);
    }

    .navbar-links a {
        font-size: 16px;
        padding: 8px 0;
    }

    .btn-nav-website {
        padding: 10px 28px !important;
        font-size: 14.5px;
    }

    .btn-nav-apply {
        padding: 12px 32px !important;
        font-size: 15px;
    }

    /* iPad 區塊取消強制吸附與固定高度，讓內容自然流暢延展 */
    .snap-section {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        scroll-snap-align: none !important;
        padding: 84px 32px 56px !important;
        overflow: visible !important;
        display: block !important;
    }

    .section-container {
        width: 100% !important;
        max-width: 900px !important;
        margin: 0 auto !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        display: block !important;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 14px;
        max-width: 680px;
    }

    .hero-layout {
        flex-direction: column;
        gap: 32px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title .title-highlight {
        font-size: 36px;
    }

    .hero-image-container {
        height: 320px;
        max-width: 720px;
        margin: 0 auto;
    }

    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pain-card {
        padding: 20px 22px;
    }

    .feature-layout {
        flex-direction: column;
        gap: 28px;
    }

    .scenario-carousel-card {
        padding: 24px;
        gap: 24px;
        min-height: auto;
    }

    .scenario-slide-image-box {
        height: 240px;
    }

    .pioneer-single-card {
        max-width: 820px;
        width: 100%;
        margin: 0 auto;
        padding: 32px 36px;
        gap: 32px;
    }

    .pioneer-price {
        font-size: 28px;
    }

    /* iPad 填寫表單 */
    .form-section {
        padding: 84px 32px 0 !important;
        height: auto !important;
        min-height: auto !important;
    }

    .form-wrapper {
        max-width: 720px;
        width: 100%;
        margin: 0 auto 36px;
        padding: 32px 36px;
    }

    .option-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .option-grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .checkbox-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-compact {
        width: 100%;
        margin-top: 36px !important;
        padding: 20px 32px calc(24px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

/* ============================================================
   手機版與小型行動裝置響應式 (<= 768px)
   ============================================================ */
@media (max-width: 768px) {
    html {
        scroll-behavior: smooth;
        scroll-snap-type: none !important;
        height: auto !important;
        overflow-y: auto !important;
    }

    body {
        height: auto !important;
        overflow-x: hidden !important;
        overflow-y: visible !important;
        -webkit-overflow-scrolling: touch;
    }

    .navbar {
        height: 56px;
        padding: 0 18px;
        justify-content: flex-end;
    }

    .hamburger-btn {
        display: flex;
    }

    .navbar-links {
        position: fixed;
        top: 56px;
        left: 0;
        width: 100%;
        height: calc(100vh - 56px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 32px 20px;
        gap: 18px;
        transform: translateY(-120%);
        transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .navbar-links.active {
        transform: translateY(0);
    }

    .navbar-links a {
        font-size: 15px;
        padding: 6px 0;
    }

    .btn-nav-website {
        padding: 8px 24px !important;
        font-size: 14px;
    }

    .btn-nav-apply {
        padding: 10px 28px !important;
        font-size: 14.5px;
    }

    /* 各區塊改為自然流暢排版，取消高度限制與強迫吸附 */
    .snap-section {
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
        scroll-snap-align: none !important;
        padding: 76px 18px 48px !important;
        overflow: visible !important;
        display: block !important;
    }

    .section-container {
        max-height: none !important;
        height: auto !important;
        overflow: visible !important;
        display: block !important;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .section-subtitle {
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-layout,
    .feature-layout,
    .pioneer-single-card {
        flex-direction: column;
        gap: 24px;
    }

    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-title .title-highlight {
        font-size: 30px;
    }

    .hero-image-container {
        height: 220px;
    }

    .scenario-carousel-card {
        flex-direction: column;
        padding: 18px 16px;
        min-height: auto;
        gap: 16px;
    }

    .scenario-slide-image-box {
        width: 100%;
        height: 180px;
    }

    .scenario-nav-pills {
        gap: 6px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .scenario-pill {
        padding: 6px 12px;
        font-size: 12px;
    }

    .pain-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .pain-card {
        padding: 18px 20px;
    }

    .feature-table-wrapper {
        margin: 0 -6px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }

    .pioneer-left {
        border-right: none;
        border-bottom: 1px solid var(--gray-border);
        padding-right: 0;
        padding-bottom: 20px;
    }

    .feature-item.active {
        transform: none;
    }

    .arch-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    /* 表單區塊 */
    .form-section {
        padding: 76px 16px 0 !important;
        height: auto !important;
        min-height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .form-wrapper {
        margin: 0 0 24px;
        padding: 22px 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .option-grid-4,
    .option-grid-3 {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .option-chip {
        min-height: 42px;
        padding: 10px 14px;
    }

    .checkbox-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .checkbox-chip {
        min-height: 42px;
        padding: 10px 14px;
    }

    .checkbox-other-chip {
        grid-column: span 1;
        flex-wrap: wrap;
    }

    .form-input-inline {
        width: 100%;
        margin-top: 4px;
    }

    .terms-consent-group {
        padding: 12px 14px;
    }

    .checkbox-consent-label {
        font-size: 13px;
        line-height: 1.5;
    }

    .btn-submit {
        padding: 14px;
        font-size: 15px;
    }

    /* 手機版精緻置中 Footer */
    .footer-compact {
        width: 100%;
        margin-top: 36px !important;
        padding: 24px 16px calc(28px + env(safe-area-inset-bottom, 0px)) !important;
        background: #fafcfb;
        border-top: 1px solid var(--gray-border);
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        text-align: center !important;
    }

    .footer-text-left {
        text-align: center !important;
    }

    .footer-nav-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px 14px !important;
    }

    .footer-link-btn,
    .footer-nav-links a {
        font-size: 13px !important;
        padding: 6px 8px !important;
        color: var(--gray-text) !important;
    }

    .footer-text-right {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 6px !important;
        font-size: 12px !important;
        color: #94a3b8 !important;
    }

    .back-to-top {
        bottom: 24px;
        right: 20px;
        padding: 8px 14px;
        font-size: 12px;
    }

    /* 彈跳視窗響應式優化 */
    .modal-container {
        width: 94% !important;
        max-height: 86vh !important;
    }

    .modal-body {
        max-height: calc(86vh - 130px) !important;
        padding: 16px 18px !important;
    }

    .consent-modal-footer {
        flex-direction: column !important;
        gap: 10px !important;
        padding: 12px 18px !important;
    }

    .lightbox-overlay {
        padding: 56px 10px 16px;
    }

    .lightbox-overlay #lightboxImage {
        max-height: calc(92vh - 52px);
        border-radius: 8px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .btn-agree-terms {
        width: 100% !important;
        padding: 12px !important;
        text-align: center !important;
    }
}
