/* 募資協助頁面專用樣式 - 基於 Nerd Technic 青綠風格設計系統 */
/* CSS 變數已在 variables.css 中定義 */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Banner - Beacon 風格 */
.hero-banner {
    padding: 120px 0 80px;
    background: var(--gradient-beacon);
    position: relative;
    overflow: hidden;
    color: white;
    margin-top: 80px; /* 為固定導覽列留出空間 */
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 245, 212, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 1;
}

.hero-banner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%);
    background-size: 60px 60px;
    animation: backgroundMove 20s linear infinite;
    z-index: 1;
}

@keyframes backgroundMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(0, 245, 212, 0.5);
    background: linear-gradient(135deg, #ffffff 0%, rgba(0, 245, 212, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: white; /* 為不支持 background-clip 的瀏覽器提供備用顏色 */
}

.hero-title.glow-text {
    text-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    from {
        text-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(0, 245, 212, 0.8);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9); /* 確保在深色背景上有足夠對比度 */
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::after {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.stat-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 245, 212, 0.5);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.3;
}

/* 免費評估工具 */
.evaluation-tools {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
    position: relative;
}

.evaluation-tools::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0, 245, 212, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 245, 212, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.evaluation-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.evaluation-description > p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.evaluation-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.evaluation-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 245, 212, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.evaluation-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.evaluation-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.evaluation-item:hover::before {
    opacity: 0.03;
}

.item-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.item-content {
    flex: 1;
    text-align: left;
}

.item-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.item-content p {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: italic;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.evaluation-item .download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, #00d4aa 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
}

.evaluation-item .download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 245, 212, 0.3);
    background: linear-gradient(135deg, #00d4aa 0%, var(--primary) 100%);
}

.evaluation-item .download-btn i {
    font-size: 1rem;
}

.evaluation-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-evaluation {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-md);
    font-size: 1.2rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
}

.btn-evaluation::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-evaluation:hover::before {
    left: 100%;
}

.btn-evaluation:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
    color: white;
    text-decoration: none;
}

.btn-evaluation i {
    font-size: 1.1rem;
}

/* 募資管道 */
.funding-channels {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.funding-channels::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0, 245, 212, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 245, 212, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
}

.section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    margin-left: auto;
    margin-right: auto;
}

.funding-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    grid-template-rows: 1fr;
    white-space: normal;
    overflow: visible;
}

.funding-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 245, 212, 0.1);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: visible;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    min-width: 300px;
    box-shadow: 0 4px 20px rgba(0, 245, 212, 0.05);
}

.funding-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.funding-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
    z-index: 10;
}

.funding-card:hover::before {
    opacity: 0.05;
}

.funding-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.funding-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: var(--shadow-glow);
    flex-shrink: 0;
    min-width: 60px;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.funding-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    line-height: 1.3;
}

.funding-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Monaco', 'Menlo', monospace;
    text-shadow: 0 0 15px rgba(0, 245, 212, 0.3);
}

.funding-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.funding-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.funding-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.funding-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.funding-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1.2rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    position: relative;
    z-index: 3;
    overflow: hidden;
}

.funding-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.funding-btn:hover::before {
    left: 100%;
}

.funding-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 245, 212, 0.3);
    color: white;
}

/* 募資文件 */
.documents-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.document-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.document-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: translateY(-5px);
}

.document-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 245, 212, 0.1);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin: 0 auto 1.5rem;
}

.document-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.document-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.download-btn {
    background: rgba(0, 245, 212, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* 服務方案 */
.service-plans {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.02) 0%, rgba(255, 255, 255, 1) 50%, rgba(0, 245, 212, 0.02) 100%);
    position: relative;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.service-plans::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to right, rgba(0, 245, 212, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 245, 212, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.service-plans .section-subtitle {
    font-size: 1rem;
    line-height: 1.7;
    max-width: 1000px;
    margin-bottom: 4rem;
}

.plans-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.plan-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 245, 212, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
    min-height: 600px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
    visibility: visible !important;
    opacity: 1 !important;
}

.plan-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.98);
}

.plan-card.featured::before {
    content: '熱門選擇';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 245, 212, 0.3);
    z-index: 3;
}

.plan-card.featured::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.plan-card:hover {
    transform: translateY(-15px);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.plan-card.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
}

.plan-card.featured .plan-title {
    color: var(--primary);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-family: 'Monaco', 'Menlo', monospace;
    text-shadow: 0 0 15px rgba(0, 245, 212, 0.3);
}

.plan-period {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.plan-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.plan-features li {
    padding: 0.8rem 0;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    position: relative;
    padding-left: 0.5rem;
}

.plan-features li i {
    color: var(--primary);
    font-size: 1rem;
    min-width: 20px;
}

.plan-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.3s ease;
}

.plan-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 1.2rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.plan-btn:hover::before {
    left: 100%;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
    color: white;
}

.plan-btn.secondary {
    background: rgba(0, 245, 212, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
}

.plan-btn.secondary:hover {
    background: var(--primary);
    color: white;
}

.success-reward {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.success-reward::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.success-reward h4 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.success-reward p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.success-reward strong {
    color: var(--primary);
    font-size: 1.2rem;
}

/* CTA 區塊樣式已移至共用 cta.css */

/* 特殊效果 */
/* 移除重複的 .glow-text 定義，已在 .hero-title.glow-text 中定義 */

/* 響應式設計 */
@media (max-width: 1200px) {
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .hero-stats {
        max-width: 900px;
        gap: 1.5rem;
    }
    
    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 900px;
    }
    
    .plan-card.featured {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hero-banner {
        padding: 100px 0 60px;
        margin-top: 70px; /* 調整小螢幕的導覽列高度 */
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        background: linear-gradient(135deg, #ffffff 0%, rgba(0, 245, 212, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: white; /* 為不支持 background-clip 的瀏覽器提供備用顏色 */
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
        color: rgba(255, 255, 255, 0.9); /* 確保在深色背景上有足夠對比度 */
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-amount {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    /* CTA 區塊響應式樣式已移至共用 cta.css */
    
    .funding-grid {
        display: flex;
        grid-template-columns: unset;
        gap: 0.5rem;
        padding: 0 0.5rem;
        min-width: 100%;
        overflow-x: auto;
        justify-content: space-between;
        white-space: normal;
    }
    
    .funding-card {
        min-width: 280px;
        padding: 1.5rem 1rem;
    }
    
    .funding-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .funding-icon {
        margin: 0 auto;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .funding-title {
        text-align: center;
        font-size: 1.3rem;
    }
    
    .funding-amount {
        font-size: 1.8rem;
    }
    
    .funding-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .funding-features li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
    
    .funding-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .documents-grid {
        grid-template-columns: 1fr;
    }
    
    .evaluation-content {
        padding: 0 1rem;
    }
    
    .evaluation-description > p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .evaluation-item {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        text-align: center;
    }
    
    .item-content {
        text-align: center;
    }
    
    .item-content h4 {
        font-size: 1.2rem;
    }
    
    .item-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .evaluation-item .download-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .btn-evaluation {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }
    
    /* 服務方案文字響應式 */
    .service-plans .section-subtitle {
        font-size: 0.9rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .plan-card.featured {
        grid-column: span 1;
        max-width: 100%;
        transform: scale(1);
    }
    
    .plan-card.featured:hover {
        transform: translateY(-15px);
    }
    
    /* CTA 按鈕響應式樣式已移至共用 cta.css */

    .plan-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }

    .success-reward {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 80px 0 40px;
        margin-top: 60px; /* 調整超小螢幕的導覽列高度 */
    }
    
    .hero-title {
        font-size: 2rem;
        padding: 0 0.5rem;
        background: linear-gradient(135deg, #ffffff 0%, rgba(0, 245, 212, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: white; /* 為不支持 background-clip 的瀏覽器提供備用顏色 */
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 0.5rem;
        color: rgba(255, 255, 255, 0.9); /* 確保在深色背景上有足夠對比度 */
    }
    
    .hero-stats {
        padding: 0 0.5rem;
        gap: 0.75rem;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    .stat-amount {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* CTA 區塊響應式樣式已移至共用 cta.css */
    
    .evaluation-item {
        padding: 1.5rem 1rem;
    }
    
    .item-content h4 {
        font-size: 1.1rem;
    }
    
    .btn-evaluation {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* 特殊光效 */
.funding-card:hover .funding-icon,
.document-card:hover .document-icon {
    animation: iconGlow 1s ease infinite alternate;
    transform: scale(1.1);
}

@keyframes iconGlow {
    from {
        box-shadow: 0 10px 30px rgba(0, 245, 212, 0.4), 0 0 20px rgba(0, 245, 212, 0.2);
    }
    to {
        box-shadow: 0 15px 40px rgba(0, 245, 212, 0.6), 0 0 30px rgba(0, 245, 212, 0.4);
    }
}

/* 按鈕光流效果 */
.funding-btn,
.download-btn,
.plan-btn {
    position: relative;
    overflow: hidden;
}

.funding-btn::before,
.download-btn::before,
.plan-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.funding-btn:hover::before,
.download-btn:hover::before,
.plan-btn:hover::before {
    left: 100%;
}

/* Beacon 風格的特殊效果 */
.hero-banner::after {
    animation: beaconScan 8s linear infinite;
}

@keyframes beaconScan {
    0% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0.3;
    }
}

/* 統計卡片特殊效果 */
.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::after {
    opacity: 1;
    animation: shimmer 1s ease-in-out;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
