/* ========================================
   サービスページ専用スタイル
   ======================================== */

.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 150px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.page-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.95);
}

/* サービス詳細 */
.service-detail-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
}

.service-detail-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    font-size: 40px;
    color: white;
    flex-shrink: 0;
}

.service-detail-header h2 {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.section-light .service-detail-header h2 {
    color: var(--text-primary);
}

.service-detail-subtitle {
    font-family: var(--font-secondary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.service-detail-description {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.service-features {
    margin-bottom: 40px;
}

.service-features h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.service-features ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.service-features ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: var(--text-primary);
    padding: 15px;
    background-color: var(--gray-100);
    border-radius: 8px;
    transition: var(--transition-base);
}

.section-light .service-features ul li {
    background-color: white;
    box-shadow: var(--shadow-sm);
}

.service-features ul li:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.service-features ul li i {
    color: var(--secondary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.tech-stack h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-badge {
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.tech-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .page-description {
        font-size: 16px;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-detail-header h2 {
        font-size: 28px;
    }
    
    .service-features ul {
        grid-template-columns: 1fr;
    }
    
    .tech-badges {
        justify-content: center;
    }
}