﻿.Full_Img {
    text-align: center;
    vertical-align: middle;
    margin-top: 0px;
    margin-bottom: 0px;
}

.Full_Img img {
    max-width: 100%;
}

/* 影片貼齊外框 */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 */
}

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

:root {
    --primary: hsl(0, 75%, 50%);
    --primary-light: hsl(0, 80%, 60%);
    --primary-dark: hsl(0, 70%, 40%);
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(220, 20%, 10%);
    --muted: hsl(220, 15%, 94%);
    --muted-foreground: hsl(220, 10%, 45%);
    --card: hsl(220, 20%, 98%);
    --border: hsl(220, 15%, 88%);
    --radius: 0.75rem;
    --shadow-card: 0 8px 32px hsla(220, 20%, 10%, 0.08);
    --shadow-elevated: 0 20px 60px hsla(220, 20%, 10%, 0.12);
    --gradient-primary: linear-gradient(145deg, #940808 0%, #ff3737 100%);
    --gradient-primary-orange: linear-gradient(135deg, hsl(0, 75%, 50%) 0%, hsl(15, 80%, 55%) 100%);

    --gradient-primary珍珍: linear-gradient(81.62deg,#ff3737 8.72%,#940808 85.01%);
    --gradient-primary原始橘色: linear-gradient(135deg, hsl(0, 75%, 50%) 0%, hsl(15, 80%, 55%) 100%);
    --gradient-primary珍珍好像可以: linear-gradient(135deg,#940808 0%,#ff3737 100%);
    --gradient-primary絲絨深紅調（高級感、商務、穩重）: linear-gradient(135deg, #740a0a 0%, #d11b1b 100%);
    --gradient-primary活力落日紅（明亮、動感、現代）: linear-gradient(135deg, #940808 0%, #ff5e3a 100%);
    --gradient-primary三色層次調: linear-gradient(135deg, #820000 0%, #c41c1c 50%, #ff4d4d 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans TC', system-ui, sans-serif;
    background: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: hsla(0, 0%, 100%, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--foreground);
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        color: var(--muted-foreground);
        text-decoration: none;
        font-weight: 500;
        transition: color 0.3s;
    }

        .nav-links a:hover {
            color: var(--primary);
        }

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    font-size: 0.95rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
}

    .btn-outline:hover {
        background: var(--muted);
    }

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px hsla(0, 75%, 50%, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px hsla(0, 75%, 50%, 0.4);
    }

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    background: linear-gradient(180deg, hsl(220, 20%, 98%) 0%, hsl(220, 25%, 94%) 100%);
    position: relative;
    overflow: hidden;
}

    .hero::before {
        z-index: 1;
        content: '';
        position: absolute;
        top: 20%;
        right: 10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, hsla(0, 75%, 50%, 0.1) 0%, transparent 70%);
        border-radius: 50%;
        pointer-events: none; /* 讓圖片層「不要攔截點擊」 */
    }
    .hero img,
    .hero .content {
        position: relative;
        z-index: 2;
    }

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: hsla(0, 75%, 50%, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

    .trust-item svg {
        color: var(--primary);
    }

.hero-visual {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.mockup {
    background: white;
    border-radius: 1rem;
    box-shadow: var(--shadow-elevated);
    overflow: hidden;
    border: 1px solid var(--border);
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

    .mockup-dot.red {
        background: #ff5f57;
    }

    .mockup-dot.yellow {
        background: #ffbd2e;
    }

    .mockup-dot.green {
        background: #28ca41;
    }

.mockup-content {
    padding: 1.5rem;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-card {
    background: var(--card);
    padding: 1rem;
    border-radius: 0.75rem;
    text-align: center;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.mockup-chart {
    height: 120px;
    background: linear-gradient(to top, hsla(0, 75%, 50%, 0.1), transparent);
    border-radius: 0.5rem;
    position: relative;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 100%;
    padding: 0.5rem;
}

.chart-bar {
    width: 20px;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    animation: barGrow 1s ease-out;
}

/* 首頁特色 Features Section */
.features {
    padding: 6rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        color: var(--muted-foreground);
        font-size: 1.125rem;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--card);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-card);
    }

.feature-icon4 {
    width: 48px;
    height: 48px;
    background: hsla(0, 75%, 50%, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--muted-foreground);
}

/* Stats Section */
.stats {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stats-item h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.stats-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--card);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
    transition: all 0.3s;
    position: relative;
}

    .pricing-card.featured {
        border: 2px solid var(--primary);
        transform: scale(1.05);
    }

        .pricing-card.featured::before {
            content: '最受歡迎';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gradient-primary);
            color: white;
            padding: 0.25rem 1rem;
            border-radius: 100px;
            font-size: 0.75rem;
            font-weight: 600;
        }

    .pricing-card h3 {
        font-size: 1.25rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .pricing-card .price {
        font-size: 2.5rem;
        font-weight: 900;
        color: var(--primary);
        margin-bottom: 0.5rem;
    }

        .pricing-card .price span {
            font-size: 1rem;
            font-weight: 400;
            color: var(--muted-foreground);
        }

    .pricing-card .description {
        color: var(--muted-foreground);
        margin-bottom: 1.5rem;
    }

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

    .pricing-features li {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.5rem 0;
        color: var(--muted-foreground);
    }

    .pricing-features svg {
        color: var(--primary);
        flex-shrink: 0;
    }

/* 解決方案 文字變化綠字灰字 */
.compare-feature svg {
    flex-shrink: 0;
}

.compare-feature.has {
    color: hsl(120, 60%, 40%);
}

.compare-feature.not {
    color: var(--muted-foreground);
    opacity: 0.5;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, hsl(219, 27%, 37%) 0%, hsl(219, 22%, 37%) 100%);
    background3: linear-gradient(135deg, hsl(220, 20%, 15%) 0%, hsl(220, 25%, 20%) 100%);
    background2: linear-gradient(135deg, hsl(220, 20%, 10%) 0%, hsl(220, 25%, 15%) 100%);
    color: white;
    text-align: center;
}

    .cta h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .cta p {
        font-size: 1.125rem;
        opacity: 0.8;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cta .btn-outline {
    border-color: hsla(0, 0%, 100%, 0.3);
    color: white;
}

    .cta .btn-outline:hover {
        background: hsla(0, 0%, 100%, 0.1);
    }

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.8;
}





/* 分頁表頭 Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: linear-gradient(180deg, hsl(220, 20%, 98%) 0%, hsl(220, 25%, 94%) 100%);
    text-align: center;
}

    .page-header h1 {
        font-size: 3rem;
        font-weight: 900;
        margin-bottom: 1rem;
    }

.page-header p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 600px;
    margin: 0 auto;
}

/* 功能特色 Feature Showcase with Images */
.feature-showcase {
    padding: 5rem 0;
    background: var(--card);
}

.showcase-item {
    margin-bottom: 5rem;
}

    .showcase-item:last-child {
        margin-bottom: 0;
    }

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.showcase-item:nth-child(even) .showcase-content {
    direction: rtl;
}

    .showcase-item:nth-child(even) .showcase-content > * {
        direction: ltr;
    }

.showcase-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.showcase-text p {
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.showcase-features {
    list-style: none;
}

    .showcase-features li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        color: var(--muted-foreground);
    }

    .showcase-features svg {
        color: var(--primary);
        flex-shrink: 0;
    }

.showcase-image {
    background: var(--background);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--border);
}

    .showcase-image img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.5s;
    }

    .showcase-image:hover img {
        transform: scale(1.03);
    }

/* 功能特色 Feature Gallery */
.feature-gallery {
    padding: 5rem 0;
}

.gallery-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .gallery-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .gallery-header p {
        color: var(--muted-foreground);
        font-size: 1.125rem;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

    .gallery-item:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-elevated);
    }

    .gallery-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
    }

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, hsla(220, 20%, 10%, 0.9));
    padding: 1.5rem;
    color: white;
}

    .gallery-item-overlay h4 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 0.25rem;
    }

    .gallery-item-overlay p {
        font-size: 0.85rem;
        opacity: 0.8;
    }

/* 功能特色 Feature Detail */
.feature-detail {
    padding: 5rem 0;
    background: var(--card);
}

    .feature-detail:nth-child(even) {
        background: var(--background);
    }

.feature-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-detail:nth-child(even) .feature-detail-content {
    direction: rtl;
}

    .feature-detail:nth-child(even) .feature-detail-content > * {
        direction: ltr;
    }

.feature-detail-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-detail-text p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.feature-detail-list {
    list-style: none;
}

    .feature-detail-list li {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        padding: 0.5rem 0;
        color: var(--muted-foreground);
    }

    .feature-detail-list svg {
        color: var(--primary);
        flex-shrink: 0;
    }

.feature-detail-image {
    background: white;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border);
}

    .feature-detail-image img {
        width: 100%;
        border-radius: 0.5rem;
    }

.mockup-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--muted) 0%, var(--card) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    font-size: 1.25rem;
}


/* 解決方案 Comparison Table */
.comparison {
    padding: 5rem 0;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

    .comparison-table thead {
        background: linear-gradient(135deg, hsl(220, 20%, 96%) 0%, hsl(220, 25%, 92%) 100%);
    }

    .comparison-table th {
        padding: 1.25rem 1rem;
        font-weight: 600;
        text-align: center;
        border-bottom: 2px solid var(--border);
    }

        .comparison-table th:first-child {
            text-align: left;
            padding-left: 1.5rem;
        }

        .comparison-table th.highlight {
            background: var(--gradient-primary);
            color: white;
        }

    .comparison-table td {
        padding: 1rem;
        text-align: center;
        border-bottom: 1px solid var(--border);
    }

        .comparison-table td:first-child {
            text-align: left;
            padding-left: 1.5rem;
            font-weight: 500;
            color: var(--foreground);
        }

    .comparison-table tbody tr:hover {
        background: hsl(220, 20%, 98%);
    }

    .comparison-table tbody tr:last-child td {
        border-bottom: none;
    }

    .comparison-table .feature-category {
        background: hsl(220, 20%, 96%);
        font-weight: 600;
        color: var(--foreground);
    }

        .comparison-table .feature-category td {
            padding: 0.75rem 1.5rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

.check-icon {
    color: hsl(142, 70%, 45%);
    font-size: 1.25rem;
    font-weight: bold;
}

.cross-icon {
    color: hsl(0, 70%, 60%);
    font-size: 1.25rem;
    font-weight: bold;
}

.comparison-table .plan-header {
    font-size: 1.1rem;
}

.comparison-table .plan-price {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    font-weight: 400;
    margin-top: 0.25rem;
}

/* 解決方案 FAQ */
.faq {
    padding: 5rem 0;
    background: var(--card);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        color: var(--muted-foreground);
        font-size: 1.125rem;
    }

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: background 0.3s;
}

    .faq-question:hover {
        background: var(--muted);
    }

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--muted-foreground);
    line-height: 1.8;
}



/* 關於我們 About Content */
.about-story {
    padding: 5rem 0;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-story-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-story-text p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.about-story-image {
    background: var(--card);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
}

.story-placeholder {
    height: 300px;
    background: linear-gradient(135deg, var(--muted) 0%, var(--card) 100%);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
    font-size: 1.25rem;
}
    .story-placeholder img {
        width: 100%;
        border-radius: 0.5rem;
    }

/* 關於我們 Values */
.values {
    padding: 5rem 0;
    background: var(--card);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        color: var(--muted-foreground);
        font-size: 1.125rem;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-card);
    }

.value-icon {
    width: 80px;
    height: 80px;
    background: hsla(0, 75%, 50%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--muted-foreground);
    line-height: 1.8;
}

/* 關於我們 成功案例 Success Cases */
.success-cases {
    padding: 5rem 0;
    background: var(--card);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.case-card {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

    .case-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-card);
        border-color: var(--primary);
    }

.case-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

    .case-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.5rem;
    }

    .case-logo .placeholder-icon {
        color: var(--muted-foreground);
        font-size: 2rem;
    }

.case-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
}

/* 關於我們 合作夥伴 Partners */
.partners {
    padding: 5rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

.partner-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

    .partner-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-card);
        border-color: var(--primary);
    }

.partner-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 0.5rem;
    overflow: hidden;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .partner-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0.5rem;
    }

    .partner-logo .placeholder-icon {
        color: var(--muted-foreground);
        font-size: 2rem;
    }

.partner-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--foreground);
}

/* 關於我們 Team */
.team {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: var(--muted);
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--muted-foreground);
}

.team-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.team-card p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* 關於我們 Timeline */
.timeline {
    padding: 5rem 0;
    background: var(--card);
}

.timeline-list {
    max-width: 1200px; /*原本800*/
    margin: 0 auto;
    position: relative;
}

    .timeline-list::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2px;
        background: var(--border);
        transform: translateX(-50%);
    }

.timeline-item {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

    .timeline-item:nth-child(odd) {
        flex-direction: row-reverse;
    }

        .timeline-item:nth-child(odd) .timeline-content {
            text-align: right;
            padding-right: 3rem;
            padding-left: 0;
        }

.timeline-content {
    width: 50%;
    padding-left: 3rem;
}

.timeline-year {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 100px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--muted-foreground);
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 0;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    border: 3px solid white;
}

/* 操作手冊 Action Buttons */
.action-buttons {
    padding: 4rem 0 2rem;
}

.buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2.5rem 2rem;
    background: var(--background);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.3s;
    cursor: pointer;
}

    .action-btn:hover {
        border-color: var(--primary);
        transform: translateY(-5px);
        box-shadow: var(--shadow-card);
    }

    .action-btn.active {
        border-color: var(--primary);
        background: hsla(0, 75%, 50%, 0.05);
    }

.action-btn-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .action-btn-icon svg {
        width: 48px;
        height: 48px;
        stroke: var(--foreground);
        stroke-width: 1.5;
        fill: none;
    }

.action-btn span {
    font-size: 1.1rem;
    font-weight: 600;
}

/* 操作手冊 Search Section */
.search-section {
    padding: 2rem 0 3rem;
}

.search-box {
    display: flex;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    outline: none;
    font-family: inherit;
    transition: border-color 0.3s;
}

    .search-input:focus {
        border-color: var(--primary);
    }

.search-btn {
    padding: 1rem 2rem;
    background: var(--muted);
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    color: var(--foreground);
    cursor: pointer;
    transition: all 0.3s;
}

    .search-btn:hover {
        background: var(--border);
    }

/* 操作手冊 FAQ Section */
.faq-section {
    padding: 3rem 0 5rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

    .section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    display: block;
    padding: 1.25rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.3s;
    cursor: pointer;
}

    .faq-item:hover {
        border-color: var(--primary);
        background: hsla(0, 75%, 50%, 0.03);
        transform: translateX(5px);
    }

    .faq-item h3 {
        font-size: 1rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }

        .faq-item h3::before {
            content: "📖";
            font-size: 1.25rem;
        }

/* 操作手冊 Manual Content Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: hsla(220, 20%, 10%, 0.6);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

    .modal-overlay.active {
        display: flex;
    }

.modal-content {
    background: var(--background);
    border-radius: var(--radius);
    max-width: 900px;
    width: 100%;
    max-height: 85vh;
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    background: var(--card);
}

    .modal-header h2 {
        font-size: 1.25rem;
        font-weight: 600;
    }

.modal-close {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--muted);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

    .modal-close:hover {
        background: var(--primary);
        color: white;
    }

    .modal-close svg {
        width: 20px;
        height: 20px;
    }

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(85vh - 80px);
}

    .modal-body h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 1.5rem 0 0.75rem;
        color: var(--primary);
    }

        .modal-body h3:first-child {
            margin-top: 0;
        }

    .modal-body p {
        color: var(--muted-foreground);
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    .modal-body ul, .modal-body ol {
        margin: 1rem 0;
        padding-left: 1.5rem;
        color: var(--muted-foreground);
    }

    .modal-body li {
        margin-bottom: 0.5rem;
        line-height: 1.8;
    }

    .modal-body .step {
        background: var(--card);
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
        border-left: 4px solid var(--primary);
    }

    .modal-body .step-number-help {
        font-weight: 700;
        color: var(--primary);
        margin-right: 0.5rem;
    }

/* 操作手冊 Manual List (shown when clicking 操作手冊) */
.manual-list {
    display: none;
    padding: 3rem 0;
}

    .manual-list.active {
        display: block;
    }

.manual-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.manual-item {
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--foreground);
    transition: all 0.3s;
}

    .manual-item:hover {
        border-color: var(--primary);
        background: hsla(0, 75%, 50%, 0.03);
    }

    .manual-item h4 {
        font-size: 0.95rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .manual-item h4::before {
            content: "📄";
        }

/* 操作手冊細節 Main Content */
.manual-detail-page {
    padding-top: 120px;
    padding-bottom: 80px;
    min-height: 100vh;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

    .breadcrumb a {
        color: var(--muted-foreground);
        text-decoration: none;
        transition: color 0.3s;
    }

        .breadcrumb a:hover {
            color: var(--primary);
        }

    .breadcrumb span {
        color: var(--muted-foreground);
    }

    .breadcrumb .current {
        color: var(--foreground);
        font-weight: 500;
    }

.manual-header {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--border);
}

    .manual-header h1 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        color: var(--foreground);
    }

.manual-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

.manual-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.manual-content {
    /* max-width: 900px; */
    max-width: 100%;
}

.content-section {
    margin-bottom: 3rem;
}

    .content-section h2 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        background: var(--card);
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
        border-left: 4px solid var(--primary);
    }

    .content-section h3 {
        /*font-size: 1.25rem;
        font-weight: 600;
        margin: 1.5rem 0 1rem;
        color: var(--foreground);*/
        font-size: 1.25rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
        color: var(--foreground);
        padding-left: 1rem;
        border-left: 4px solid var(--primary);
    }

    .content-section p {
        color: var(--muted-foreground);
        margin-bottom: 1rem;
        line-height: 1.8;
    }

    .content-section ul,
    .content-section ol {
        color: var(--muted-foreground);
        margin-bottom: 1rem;
        padding-left: 1.5rem;
    }

    .content-section li {
        margin-bottom: 0.5rem;
        line-height: 1.8;
    }
    
    /*去除所有超連結的底線*/
    .content-section a {
        text-decoration: none;
        color: #3366FF;
    }
        /*變色*/
        .content-section a:hover {
            color: #0066CC;
            text-decoration: none;
        }

    /*進度變化???*/
    .content-section .step {
        background: var(--card);
        padding: 1rem 1.5rem;
        border-radius: 0.5rem;
        margin-bottom: 1rem;
        border-left: 4px solid var(--primary);
    }

    .content-section .step-number {
        font-weight: 700;
        color: var(--primary);
        margin-right: 0.5rem;
    }


.content-image {
    /*width: 100%;
      max-width: 800px;
      margin: 1.5rem 0;
    */
    max-width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-card);
}

.image-caption {
    text-align: center;
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 2.5rem 0;
}

.tip-box {
    background: hsla(0, 75%, 50%, 0.05);
    border: 1px solid hsla(0, 75%, 50%, 0.2);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.tip-box-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tip-box p {
    color: var(--muted-foreground);
    margin: 0;
}

.warning-box {
    background: hsla(45, 100%, 50%, 0.1);
    border: 1px solid hsla(45, 100%, 50%, 0.3);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.warning-box-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: hsl(45, 80%, 40%);
    margin-bottom: 0.5rem;
}

.step-list {
    counter-reset: step-counter;
    list-style: none;
    padding-left: 0;
}

    .step-list li {
        counter-increment: step-counter;
        position: relative;
        padding-left: 3rem;
        margin-bottom: 1.5rem;
    }

        .step-list li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 2rem;
            height: 2rem;
            background: var(--gradient-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.875rem;
        }

.nav-buttons-bottom {
    display: flex;
    justify-content: space-between;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

    .nav-btn:hover {
        background: var(--muted);
        border-color: var(--primary);
    }

    .nav-btn.prev svg {
        margin-right: 0.25rem;
    }

    .nav-btn.next svg {
        margin-left: 0.25rem;
    }

/* 試用 Trial Hero */
.trial-hero {
    padding: 8rem 0 5rem;
    background: linear-gradient(180deg, hsl(220, 20%, 98%) 0%, hsl(220, 25%, 94%) 100%);
}

.trial-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.trial-hero-text h1 {
    font-size: 2.75rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trial-hero-text p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.trial-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trial-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--muted-foreground);
}

    .trial-benefit svg {
        color: var(--primary);
        flex-shrink: 0;
    }

/* 試用 Form */
.trial-form-wrapper {
    background: white;
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-elevated);
    border: 1px solid var(--border);
}

.trial-form h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.trial-form .subtitle {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--foreground);
}

.form-group {
    margin-bottom: 1.25rem;
}

    .form-group label {
        display: block;
        font-weight: 500;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 0.875rem 1rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        font-size: 1rem;
        font-family: inherit;
        transition: border-color 0.3s;
        background: white;
    }

    .form-group a {
        color: #0066CC;
    }

        .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
        }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin-top: 1rem;
}

    .form-note a {
        color: var(--primary);
    }

/* 試用 Radio & Checkbox */
.radio-group, .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.radio-item, .checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all 0.3s;
}

    .radio-item:hover, .checkbox-item:hover {
        border-color: var(--primary-light);
        background: hsla(0, 75%, 50%, 0.03);
    }

    .radio-item input, .checkbox-item input {
        width: 18px;
        height: 18px;
        margin-top: 2px;
        accent-color: var(--primary);
        cursor: pointer;
        flex-shrink: 0;
    }

    .radio-item label, .checkbox-item label {
        cursor: pointer;
        font-size: 0.95rem;
        line-height: 1.4;
    }

    .radio-item.selected, .checkbox-item.selected {
        border-color: var(--primary);
        background: hsla(0, 75%, 50%, 0.05);
    }

.checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.success-message {
    display: none;
    padding: 1.5rem;
    background: hsla(120, 50%, 50%, 0.1);
    border: 1px solid hsla(120, 50%, 50%, 0.3);
    border-radius: var(--radius);
    text-align: center;
}

    .success-message.show {
        display: block;
    }

    .success-message h3 {
        color: hsl(120, 50%, 35%);
        margin-bottom: 0.5rem;
    }

    .success-message p {
        color: hsl(120, 40%, 30%);
    }

.required {
    color: var(--primary);
}

/* 試用 Features */
.trial-features {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

    .section-header h2 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .section-header p {
        color: var(--muted-foreground);
        font-size: 1.125rem;
    }

.feature-item {
    text-align: center;
    padding: 1.5rem;
}

.feature-item-icon {
    width: 64px;
    height: 64px;
    background: hsla(0, 75%, 50%, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.feature-item h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* 試用流程 Steps */
.steps {
    padding: 5rem 0;
    background: var(--card);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-item {
    text-align: center;
    position: relative;
}

    .step-item::after {
        content: '';
        position: absolute;
        top: 30px;
        left: 60%;
        width: 80%;
        height: 2px;
        background: var(--border);
    }

    .step-item:last-child::after {
        display: none;
    }

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.step-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-item p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}

/* 試用回饋 Testimonial */
.testimonial {
    padding: 5rem 0;
}

.testimonial-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

    .testimonial-card blockquote {
        font-size: 1.25rem;
        line-height: 1.8;
        color: var(--foreground);
        margin-bottom: 1.5rem;
        font-style: italic;
    }

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted-foreground);
}

.testimonial-info h4 {
    font-weight: 600;
}

.testimonial-info p {
    color: var(--muted-foreground);
    font-size: 0.9rem;
}





/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: hsl(220, 20%, 8%);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: hsla(0, 0%, 100%, 0.6);
    margin: 1rem 0;
    max-width: 300px;
}

.footer-column h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column a {
    color: hsla(0, 0%, 100%, 0.6);
    text-decoration: none;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.3s;
}

    .footer-column a:hover {
        color: white;
    }

.footer-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

    .footer-info a {
        text-decoration: none;
        text-decoration: none;
        color: inherit;
    }
/* 去除所有超連結的底線 inherit 會繼承父層文字顏色，或是你也可以寫死成固定色值如 #333 */

.footer-bottom {
    border-top: 1px solid hsla(0, 0%, 100%, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: hsla(0, 0%, 100%, 0.5);
    font-size: 0.875rem;
}

/* 手機端漢堡按鈕 Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1rem;
}

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu a {
        display: block;
        padding: 0.75rem 0;
        color: var(--foreground);
        text-decoration: none;
    }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes barGrow {
    from {
        height: 0;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .trust-indicators {
        justify-content: center;
    }

    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }

    /* 首頁橫幅數字列 1024 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 首頁功能特色 1024 */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 功能特色 1024 */
    .feature-detail-content {
        grid-template-columns: 1fr;
    }
    .feature-detail:nth-child(even) .feature-detail-content {
        direction: ltr;
    }
    .showcase-content {
        grid-template-columns: 1fr;
    }
    .showcase-item:nth-child(even) .showcase-content {
        direction: ltr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* 關於我們 1024 */
    .about-story-content {
        grid-template-columns: 1fr;
    }
    .values-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cases-grid, .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* 操作手冊 1024 */
    .buttons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    .action-btn {
        padding: 1.5rem 1rem;
    }
    .action-btn-icon {
        width: 48px;
        height: 48px;
    }
        .action-btn-icon svg {
            width: 36px;
            height: 36px;
        }
    .action-btn span {
        font-size: 0.9rem;
    }

    /* 試用 1024 */
    .trial-hero-content {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .step-item::after {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    /* 手機端漢堡按鈕 Mobile Menu */
    .mobile-menu-btn {
        display: block;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    /* 首頁橫幅數字列 768 */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* 首頁功能特色 768 */
    .features-grid {
        grid-template-columns: 1fr;
    }
    /* 功能特色 768 */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    /* 解決方案 768 */
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: none;
    }
    
    /* 關於我們 768 */
    .values-grid, .team-grid {
        grid-template-columns: 1fr;
    }
    .cases-grid, .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .timeline-list::before {
        left: 20px;
    }
    .timeline-item, .timeline-item:nth-child(odd) {
        flex-direction: column;
    }
        .timeline-content, .timeline-item:nth-child(odd) .timeline-content {
            width: 100%;
            padding-left: 50px;
            padding-right: 0;
            text-align: left;
        }
    .timeline-dot {
        left: 20px;
    }

    /* 操作手冊 768 */
    .buttons-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    .search-box {
        flex-direction: column;
    }
    .manual-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }

    /* 操作手冊細節 768 */
    .manual-header h1 {
        font-size: 1.75rem;
    }
    .manual-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    .nav-buttons-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    .nav-btn {
        justify-content: center;
    }

    /* 試用 768 */
    .trial-hero-text h1 {
        font-size: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* 首頁橫幅數字列 480 */
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* 關於我們 */
    .cases-grid, .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 底下沒有了 */
