/* 手機時影片居中縮放 */
.html-video-2 {
    height: 600px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.html-video-2 video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    object-fit: cover;
    transform: translate(-50%, -50%);
    max-width: none;
}

@media (max-width: 767px) {
    .html-video-2 {
        height: 100vh;
    }
    
    .html-video-2 video {
        width: auto;
        height: 100%;
        object-fit: cover;
    }
}

/* --- 新增：報價卡片與技術橫幅樣式 (GEO & Premium Design) --- */
.tech-banner-wrap {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 60px 20px;
    color: #f8fafc;
    text-align: center;
    border-bottom: 4px solid #3b82f6;
}
.tech-banner-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.tech-item {
    flex: 1;
    min-width: 300px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tech-item:hover { transform: translateY(-10px); background: rgba(255, 255, 255, 0.08); box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
.tech-item i { font-size: 40px; color: #60a5fa; margin-bottom: 20px; display: block; }
.tech-item h3 { color: #fff; font-size: 26px; margin-bottom: 15px; font-weight: 700; }
.tech-price { font-size: 36px; font-weight: 800; color: #fbbf24; margin: 15px 0; }
.tech-desc { font-size: 16px; opacity: 0.9; line-height: 1.6; color: #cbd5e1; }

.pricing-section { padding: 100px 20px; background: #f8fafc; }
.pricing-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}
.p-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 40px;
    border-top: 10px solid #ddd;
    transition: all 0.3s ease;
}
.p-card:hover { transform: scale(1.02); box-shadow: 0 20px 50px rgba(0,0,0,0.1); }
.p-card.blue { border-top-color: #3498db; }
.p-card.green { border-top-color: #2ecc71; }
.p-card.orange { border-top-color: #f39c12; }

.p-header { padding: 40px 20px 20px; }
.p-header h3 { font-size: 24px; color: #2d3748; margin-bottom: 25px; font-weight: 800; }
.p-label {
    display: inline-block;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 4px 20px;
    font-size: 13px;
    color: #718096;
    margin-bottom: 20px;
    background: #f7fafc;
}
.p-price { font-size: 36px; font-weight: 800; color: #1a202c; }
.p-price span { font-size: 16px; color: #a0aec0; font-weight: 400; }

.p-body { padding: 0 35px; flex-grow: 1; }
.p-body-section { margin-top: 25px; }
.p-body-text { font-size: 15px; color: #4a5568; line-height: 1.8; margin-top: 10px; }

.p-footer { margin-top: 40px; padding: 0 50px; }
.btn-price {
    display: block;
    padding: 15px 0;
    border-radius: 30px;
    color: #fff !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
}
.blue .btn-price { background: #3498db; box-shadow: 0 4px 14px 0 rgba(52, 152, 219, 0.39); }
.green .btn-price { background: #2ecc71; box-shadow: 0 4px 14px 0 rgba(46, 204, 113, 0.39); }
.orange .btn-price { background: #f39c12; box-shadow: 0 4px 14px 0 rgba(243, 156, 18, 0.39); }
.btn-price:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.15); }

.p-highlight-box { 
    background: #fff8e1; 
    padding: 25px 20px; 
    border-radius: 0 0 15px 15px; 
    margin: 20px -35px -40px; 
    border-top: 1px dashed #fbd38d;
}
.p-highlight-text { color: #744210; font-weight: 700; font-size: 14px; line-height: 1.5; }

.geo-section { background: #fff; padding: 80px 20px; border-top: 1px solid #edf2f7; }
.geo-container { max-width: 900px; margin: 0 auto; text-align: center; }
.geo-tag { display: inline-block; background: #ebf8ff; color: #2b6cb0; padding: 5px 15px; border-radius: 5px; font-weight: 700; margin-bottom: 20px; }

/* 首頁關鍵字標籤樣式 */
.video-text .para {
    font-size: 20px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.video-text .para:nth-of-type(1) {
    color: #ffd700; /* 金色強調關鍵字 */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.checklist li {
    font-size: 16px;
    margin-bottom: 12px;
    list-style: none;
    transition: all 0.3s;
}
.checklist li:hover {
    transform: translateX(10px);
    color: #3182ce;
}
