/* ==========================================
   MOBILE APP & AI SERVICE - STYLES
   流動應用程式 & AI智能方案 樣式
   ========================================== */

/* Service Detail Content for Mobile/AI */
.service-detail-simple {
    color: var(--text-primary);
}

.simple-header {
    text-align: center;
    margin-bottom: 3.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.simple-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.simple-subtitle {
    font-size: 1.2rem;
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1rem;
}

.simple-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.starting-price-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(139, 92, 246, 0.15));
    border: 2px solid rgba(99, 102, 241, 0.3);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
}

.starting-price-badge strong {
    font-size: 1.75rem;
    font-weight: 900;
    color: #6366f1;
    margin: 0 0.5rem;
}

/* Features Grid */
.features-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    margin: 3rem 0;
}

.feature-card-enhanced {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-card-enhanced:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.15);
}

.feature-icon-enhanced {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
}

.feature-card-enhanced h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #fff;
}

.feature-card-enhanced p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing Comparison */
.pricing-comparison {
    margin: 3rem 0;
}

.pricing-cards-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card-enhanced {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 2.5rem 2rem;
    transition: all 0.3s;
    position: relative;
}

.price-card-enhanced:hover {
    border-color: rgba(99, 102, 241, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(99, 102, 241, 0.2);
}

.price-card-enhanced.highlighted {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
    border-color: rgba(99, 102, 241, 0.5);
    border-width: 2px;
}

.price-badge-top {
    position: absolute;
    top: -14px;
    right: 24px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4);
}

.price-card-name {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price-big {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.best-for-badge {
    background: rgba(99, 102, 241, 0.15);
    color: #6366f1;
    padding: 0.65rem 1.25rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.features-list-enhanced {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list-enhanced li {
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.features-list-enhanced li:last-child {
    border-bottom: none;
}

.check-icon-enhanced {
    color: #10b981;
    font-size: 1.2rem;
    font-weight: 900;
}

.select-package-btn {
    width: 100%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    border: none;
    padding: 1.25rem;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.select-package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(99, 102, 241, 0.5);
}

/* Mobile Responsive */
@media (max-width: 1023px) {
    .features-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-cards-enhanced {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 767px) {
    .simple-title {
        font-size: 2rem;
    }
    
    .simple-subtitle {
        font-size: 1.05rem;
    }
    
    .simple-description {
        font-size: 1rem;
    }
    
    .starting-price-badge {
        padding: 0.65rem 1.5rem;
        font-size: 1rem;
    }
    
    .starting-price-badge strong {
        font-size: 1.5rem;
    }
    
    .features-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .feature-card-enhanced {
        padding: 1.75rem 1.25rem;
    }
    
    .feature-icon-enhanced {
        font-size: 2.5rem;
    }
    
    .price-big {
        font-size: 2.75rem;
    }
    
    .price-card-enhanced {
        padding: 2rem 1.5rem;
    }
}

