/* Nerd Technic 青綠風格設計系統 - 基於 01_deal_launch_homepage_nerd.html */
:root {
    --primary: #00F5D4;
    --secondary: #00D4AA;
    --accent: #00E5C0;
    --dark: #0f172a;
    --darker: #020617;
    --light: #ffffff;
    --text-primary: #1e293b;
    --text-secondary: rgba(30, 41, 59, 0.8);
    --text-muted: rgba(30, 41, 59, 0.6);
    --success: #00F5D4;
    --warning: #FFA500;
    --danger: #FF6B6B;
    --info: #00D4F5;
    
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-hero: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #99f6e4 100%);
    --gradient-beacon: linear-gradient(135deg, #0891b2 0%, #0e7490 50%, #155e75 100%);
    
    --shadow-glow: 0 10px 30px rgba(0, 245, 212, 0.4), 0 0 20px rgba(0, 245, 212, 0.2);
    --neon-glow: 0 0 10px rgba(0, 245, 212, 0.8), 0 0 20px rgba(0, 245, 212, 0.4), 0 0 30px rgba(0, 245, 212, 0.2);
    --primary-rgb: 0, 245, 212;
    --secondary-rgb: 0, 212, 170;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
}

* {
    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;
    transition: all 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

/* Hero Section - Beacon 風格 */
.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--gradient-beacon);
    color: white;
}

.hero::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::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;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 80px);
    margin-top: 80px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 400;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: #ffffff;
    text-align: center;
    letter-spacing: 0.05em;
    position: relative;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00f5d4, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 245, 212, 0.6);
}

.hero-description {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* 單按鈕時的特殊樣式 */
.hero-buttons:has(.btn-primary-large) {
    margin-bottom: 4rem;
}

/* 主要按鈕樣式 - 確保優先級 */
.btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: white !important;
    font-weight: 600 !important;
    padding: 1.2rem 2.5rem !important;
    border-radius: var(--radius-md) !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    cursor: pointer !important;
}

.btn-primary::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-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 245, 212, 0.4) !important;
    color: white !important;
}

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

/* 放大版主要按鈕 */
.btn-primary-large {
    padding: 1.5rem 3.5rem !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    border-radius: var(--radius-lg) !important;
    box-shadow: 0 8px 30px rgba(0, 245, 212, 0.4) !important;
}

.btn-primary-large:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 40px rgba(0, 245, 212, 0.5) !important;
}

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

/* 次要按鈕 */
.btn-secondary {
    background: rgba(0, 245, 212, 0.1) !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    font-weight: 600 !important;
    padding: 1.2rem 2.5rem !important;
    border-radius: var(--radius-md) !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    transition: all 0.3s ease !important;
}

.btn-secondary:hover {
    background: var(--primary) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 245, 212, 0.4) !important;
}

/* 增強按鈕效果 */
.btn-primary i,
.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i,
.btn-secondary:hover i {
    transform: translateX(5px);
}

/* 按鈕點擊效果 */
.btn-primary:active,
.btn-secondary:active {
    transform: translateY(-1px) scale(0.98);
    box-shadow: 0 2px 10px rgba(0, 245, 212, 0.3);
}

/* 浮動 CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-cta .btn-primary {
    background: var(--gradient-primary) !important;
    border: none !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3) !important;
}

.floating-cta .btn-primary:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(0, 245, 212, 0.4) !important;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* 服務流程 */
.service-process {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.service-process .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.service-process::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: 3rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.process-flow {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 0.75rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: nowrap;
}

.process-step {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    flex: 1;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.process-step::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;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(0, 245, 212, 0.2);
}

.process-step:hover::before {
    opacity: 0.05;
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 3rem;
    animation: arrowPulse 2s ease-in-out infinite;
    flex-shrink: 0;
    width: 30px;
}

@keyframes arrowPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.2); opacity: 1; }
}

.step-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;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

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

.step-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.step-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
}

.step-header {
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.step-features {
    flex: 1;
    margin: 0.5rem 0 1.5rem 0;
    text-align: left;
    display: flex;
    align-items: flex-start;
}

.step-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.step-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-features li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.step-btn {
    background: var(--gradient-primary);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
    align-self: center;
    flex-shrink: 0;
}

.step-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 245, 212, 0.4);
}

/* 銷售服務介紹 */
.sales-intro {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ccfbf1 50%, #99f6e4 100%);
    position: relative;
}

.sales-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sales-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sales-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sales-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.sales-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

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

.stat-item:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 245, 212, 0.2);
    border-color: var(--primary);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(0, 245, 212, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* 服務內容 */
.service-content {
    padding: 5rem 0;
    background: white;
    position: relative;
}

.service-content::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;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 245, 212, 0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.service-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;
}

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

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

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto 1.2rem;
    box-shadow: var(--shadow-glow);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 0.5rem;
}

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

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

.pricing-note {
    text-align: center; 
    margin-top: 2rem; 
    color: var(--text-secondary);
}

.pricing-note i {
    color: var(--primary); 
    margin-right: 0.5rem;
}

/* 成功案例 */
.success-case {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.05) 0%, rgba(41, 128, 185, 0.05) 100%);
}

.case-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.case-detail-card {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(0, 245, 212, 0.1);
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.case-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
    border-color: rgba(0, 245, 212, 0.3);
}

.case-info {
    margin-bottom: 2.5rem;
}

.case-info h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.case-info h3 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.case-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.case-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.case-meta span i {
    color: var(--primary);
    font-size: 1rem;
}

.case-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.case-section {
    padding: 1.5rem;
    background: rgba(0, 245, 212, 0.03);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 245, 212, 0.1);
}

.case-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.case-section h4 i {
    color: var(--primary);
    font-size: 1rem;
}

.case-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-section li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    padding-left: 1.2rem;
}

.case-section li::before {
    content: "•";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* 費用方案 */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 100%);
}

.pricing-container {
    margin: 0 auto;
    padding: 0 2rem;
}

/* 時薪方案說明 */
.hourly-pricing-section {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 245, 212, 0.05);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 245, 212, 0.2);
}

.hourly-pricing-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.hourly-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hourly-plan {
    padding: 0.75rem;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: white;
    text-align: center;
}

.plan-duration {
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.plan-rate {
    font-size: 1.1rem;
    font-weight: 700;
}

.hourly-note {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-style: italic;
    text-align: center;
    margin: 0;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '推薦方案';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

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

.plan-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

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

.pricing-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* 抽成費用資訊 */
.commission-info {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(0, 245, 212, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 245, 212, 0.3);
}

.commission-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.commission-rates {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.commission-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-sm);
}

.rate-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.rate-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

/* 固定價格 */
.fixed-pricing {
    margin-bottom: 1.5rem;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 245, 212, 0.2);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-align: left;
    flex: 1;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-left: 1rem;
}

/* 功能特色 */
.pricing-features {
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-secondary);
    text-align: left;
}

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

.feature-item span {
    font-size: 0.95rem;
}

/* 額外說明 */
.additional-note {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.additional-note p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.4;
    margin: 0;
}

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

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

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

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

/* 更新合作方案樣式 */
.plan-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-glow);
}

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

/* 模態框樣式 */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(0, 245, 212, 0.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
}

.modal-header h3 {
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 245, 212, 0.1);
    color: var(--primary);
}

/* 表單樣式 */
.plan-form {
    padding: 2rem;
}

.form-section {
    margin-bottom: 2rem;
}

.form-section h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
}

.form-section h4 i {
    color: var(--primary);
}

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

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 245, 212, 0.1);
}

.form-actions .btn-primary,
.form-actions .btn-secondary {
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-actions .btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
}

.form-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 245, 212, 0.4);
}

.form-actions .btn-secondary {
    background: rgba(0, 245, 212, 0.1);
    border: 2px solid var(--primary);
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 245, 212, 0.2);
}

.form-actions .btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3);
}

/* 表單響應式設計 */
@media (max-width: 768px) {
    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }
    
    .modal-header,
    .plan-form {
        padding: 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn-primary,
    .form-actions .btn-secondary {
        width: 100%;
    }
}

/* FAQ 專屬樣式 */
.faq {
    padding: 5rem 0 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 15px rgba(0, 245, 212, 0.1);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-primary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.show {
    display: block;
}

.faq-icon {
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* FAQ 分類標籤 */
.faq-categories {
    padding: 2rem 0;
    background: white;
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.category-tab {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
    color: var(--primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

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

.category-tab:hover,
.category-tab.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.category-tab:hover::before,
.category-tab.active::before {
    left: 0;
}

.category-tab i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.category-tab:hover i,
.category-tab.active i {
    transform: scale(1.1);
}

/* FAQ 內容區域 */
.faq-content {
    padding: 4rem 0;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.faq-section {
    margin-bottom: 3rem;
}

/* FAQ Section Title 樣式 */
.faq-section .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.section-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

/* 搜尋結果 */
.search-results {
    padding: 2rem 0;
    background: rgba(0, 245, 212, 0.02);
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    display: none;
}

.search-results.show {
    display: block;
}

.search-results h3 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.search-result-item {
    background: white;
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.search-result-title {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.search-result-preview {
    font-size: 0.9rem;
    color: var(--text-secondary);
}



/* 響應式設計 */
@media (max-width: 1024px) {
    .process-flow {
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .process-step {
        padding: 1.25rem 0.75rem;
        max-width: 250px;
    }
    
    .flow-arrow {
        width: 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-large {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        box-shadow: 0 4px 15px rgba(0, 245, 212, 0.3) !important;
    }
    
    .btn-primary-large:hover {
        box-shadow: 0 6px 20px rgba(0, 245, 212, 0.4) !important;
    }
    
    .sales-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .sales-stats {
        grid-template-columns: 1fr;
    }
    
    .service-grid,
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .case-content {
        grid-template-columns: 1fr;
    }
    
    .case-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .case-detail-card {
        padding: 2rem 1.5rem;
    }
    
    /* 服務流程響應式設計 */
    .service-process .container {
        padding: 0 1rem;
    }
    
    .service-process .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .process-flow {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .flow-arrow i {
        transform: rotate(90deg);
    }
    
    .process-step {
        max-width: 100%;
        min-width: auto;
        text-align: center;
    }
    
    .process-step h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .process-step p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .timeline-items {
        grid-template-columns: 1fr;
    }
    
    .floating-cta {
        bottom: 1rem;
        right: 1rem;
        display: none;
    }
    
    .floating-cta .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-primary-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .floating-cta .btn-primary {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* 桌面版大螢幕優化 - 導航列樣式已移至 header.css */

/* 遺漏的樣式類別 */
.highlight {
    background: rgba(0, 245, 212, 0.1);
    border: 1px solid rgba(0, 245, 212, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 1rem 0;
    color: var(--text-primary);
}

.pricing-table {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 245, 212, 0.2);
    border-radius: var(--radius-md);
    padding: 1rem;
    margin: 1rem 0;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 245, 212, 0.1);
}

.pricing-row:last-child {
    border-bottom: none;
}

.price-label {
    font-weight: 600;
    color: var(--text-primary);
}

.price-value {
    color: var(--primary);
    font-weight: 600;
}

.faq-list {
    margin-top: 2rem;
}

/* 搜尋結果動畫 */
.search-result-item {
    animation: slideInFromLeft 0.3s ease forwards;
    opacity: 0;
    transform: translateX(-20px);
}

@keyframes slideInFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* FAQ 項目展開動畫 */
.faq-answer {
    animation: expandAnswer 0.3s ease-out;
}

@keyframes expandAnswer {
    from {
        max-height: 0;
        opacity: 0;
    }
    to {
        max-height: 500px;
        opacity: 1;
    }
}

/* FAQ 響應式設計 */
@media (max-width: 768px) {
    .faq-section .section-title {
        font-size: 1.5rem;
        gap: 0.75rem;
    }

    .category-tabs {
        gap: 0.5rem;
        padding: 0 1rem;
        justify-content: flex-start;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
        flex-wrap: nowrap;
    }
    
    .category-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .category-tab {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .category-tab i {
        font-size: 0.9rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .faq-answer {
        padding: 0 1rem 1rem;
    }
    
    .pricing-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
}

@media (max-width: 480px) {
    .faq-section .section-title {
        font-size: 1.3rem;
        gap: 0.5rem;
    }

    .category-tab {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .category-tab i {
        font-size: 0.8rem;
    }
    
    .faq-question {
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 0.75rem 0.75rem;
        font-size: 0.9rem;
    }
}

/* 響應式設計 */
@media (max-width: 1200px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .hourly-pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .hourly-pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hourly-plan {
        padding: 1rem;
    }
    
    .commission-rates {
        gap: 0.5rem;
    }
    
    .commission-rate {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .price-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .price-value {
        margin-left: 0;
    }
    
    .pricing-container {
        padding: 0 1rem;
    }
    
    .hourly-pricing-section {
        padding: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .hourly-pricing-section h4 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }
    
    .hourly-pricing-grid {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hourly-plan {
        padding: 0.5rem;
    }
    
    .plan-duration {
        font-size: 0.75rem;
        margin-bottom: 0.15rem;
    }
    
    .plan-rate {
        font-size: 0.9rem;
    }
    
    .hourly-note {
        font-size: 0.7rem;
        text-align: center;
        margin: 0;
    }
    
    .commission-info {
        padding: 0.75rem;
    }
    
    .fixed-pricing {
        margin-bottom: 1rem;
    }
    
    .additional-note {
        padding: 0.75rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .plan-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .pricing-title {
        font-size: 1.3rem;
    }
    
    .hourly-pricing-section h3 {
        font-size: 1.3rem;
    }
    
    .plan-rate {
        font-size: 1.3rem;
    }
    
    .commission-info {
        padding: 0.75rem;
    }
    
    .fixed-pricing {
        margin-bottom: 1rem;
    }
    
    .additional-note {
        padding: 0.75rem;
    }
}
